Query Game List
Query the list of all available games.
API Information
- URL:
POST /v2/games - Authentication:Bearer Token
- Encryption:Requests are encrypted using AES-256-GCM; responses are returned as plaintext JSON
request
Request Headers
POST /v2/games HTTP/1.1
Host: api.example.com
Content-Type: application/json
Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...
x-agentid: integratorNBTest04
x-timestamp: 1769679554283
x-nonce: 0ad1517f698c1da84e315cffd4f61b7f
x-signature: 904e97bee2589b93e9747eed0346c68b23d8ff8b568dabaf4b94a5e89093df67
Request Parameters
Parameters Before Encryption
{}
Encrypted Request Body
{
"cipherText": "G0ZMDELeJwx+7JcIfIFOLJjkSzANPu6krGM2uw==..."
}
Response
Success Response
{
"code": 0,
"message": "No error.",
"data": [
{
"gameCode": "VP_230001_1",
"brand": "VP",
"lastModifyTime": "2025-12-30T09:04:40.603444000Z",
"status": 1,
"demo": 1,
"device": 2,
"memo": "SLOT",
"name": {
"en": "Golden Mahjong",
"zh-Hans": "金喜麻将"
},
"imagePath": {
"en": "https://gas.xprogame.com/dev/VPGameList.VP_230001_1_en_500x300",
"zh-Hans": "https://gas.xprogame.com/dev/VPGameList.VP_230001_1_zh_500x300"
}
}
],
"logUUID": "24cdc3b9-9fe8-44de-8391-a96863e46954"
}
Response Field Description
| Field | Type | Description |
|---|---|---|
data[].gameCode | string | Game Code |
data[].brand | string | Brand, fixed as 'VP' |
data[].lastModifyTime | string | Last modified time (ISO 8601 format) |
data[].status | number | Status (1 = enabled, 0 = disabled) |
data[].demo | number | Whether demo play is supported (1 = Yes, 0 = No) |
data[].device | number | Supported devices (0 = PC, 1 = Mobile, 2 = All) |
data[].memo | string | Game type remarks |
data[].name | object | Multi-language game name |
data[].name.en | string | English name |
data[].name.zh-Hans | string | Simplified Chinese name |
data[].imagePath | object | Multi-language game image path |
data[].imagePath.en | string | English image URL |
data[].imagePath.zh-Hans | string | Simplified Chinese image URL |
Error Response
{
"code": 12,
"message": "Authorization error",
"logUUID": "47948893-52f8-4b96-9d5f-4a585af8c9f5"
}
Important Notes
- Image Resources: Thumbnail URLs can be used directly; caching is recommended
- Game Status: Games in maintenance status cannot be opened temporarily
- RTP Display: The return rate is for reference only; the actual value may vary depending on the game configuration