Game List
Returns a list of all online games available on the gaming platform.
Request URL
POST {API_URL_ROOT}/game/getList
Request Parameters
| Parameter |
Required |
Type |
Description |
| sign |
Yes |
string |
Signature, calculated using Signing Algorithm |
| timestamp |
Yes |
int |
UTC timestamp in seconds, seconds elapsed from January 1, 1970 to now, e.g.: 1741837297 |
| Accept-Language |
Yes |
string |
Accepted language code, refer to Language List, e.g.: zh,en, to provide corresponding language error messages when errors occur. |
| Content-Type |
Yes |
string |
"application/json; charset=utf-8" |
BODY Content
| Parameter |
Type |
Description |
| tenantId |
int |
Current merchant ID, unique integer assigned by the platform |
Response Parameters
| Parameter |
Type |
Description |
| gameId |
int |
Game ID |
| gameName |
string |
Game name |
| gameType |
int |
Game category, enumeration values listed below |
| gameBrand |
int |
Game brand, enumeration values listed below |
| icon |
string |
Game icon URL |
| homeUrl |
string |
Game homepage URL |
Example
{
"isSuccess": true,
"code": 0,
"data": [
{
"gameId": 1,
"gameName": "1",
"gameType": 1,
"gameBrand": 1,
"icon": "http://xxx/xxx",
"homeUrl": "http://xxx/xxx"
}
]
}
gameType Game Category Values
| Value |
Description |
| 1 |
Slot Games |
| 2 |
Mini Games |
gameBrand Game Brand Values
| Value |
Description |
| 1 |
GameBox Games |
| 2 |
SPRIBE Games |
| 4 |
PG Games |
| 5 |
PP Games |
| 6 |
JILI Games |
| 7 |
TADA Games |
| 8 |
InOut Games |