Skip to main content

Get Game List

Get all game lists and status information

API Information

  • URLPOST /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

Request Body 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"
}
FieldTypeDescription
dataarrayGame List
data[].gameCodestringGame Code
data[].brandstringGame Brand
data[].lastModifyTimestringLast Modified Time
data[].statusnumberstatus
data[].demonumberSupports Demo Play (1 = Yes, 0 = No)
data[].devicenumberThe specified device type that can be used to launch this game.
data[].memostringMemo for game description
data[].nameobjectGame's name for different language, at least will provide english
data[].name.enstringGame en name
data[].name.zh-HansstringGame zh-Hans name
data[].imagePathobjectMultilingual Game Image Path
data[].imagePath.enstringEnglish Image URL
data[].imagePath.zh-HansstringSimplified Chinese Image URL

Error Response

{
"code": 12,
"message": "Authorization error",
"logUUID": "47948893-52f8-4b96-9d5f-4a585af8c9f5"
}

Important Notes

  1. Image Assets: Thumbnail URLs can be used directly and are recommended to be cached
  2. Game Status: Games in maintenance status are temporarily unavailable
  3. RTP Display: The return-to-player rate is for reference only and may vary based on game configuration

相關 API