Get Popular Game List
Query the current popular game list.
API Information
- URL:
POST /v2/games/popular - Authentication:Bearer Token
- Encryption:Requests are encrypted using AES-256-GCM; responses are returned as plaintext JSON
request
request Headers
POST /v2/games/popular 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": [
{
"currency": "AUD",
"gameType": 1,
"gameCode": "VP_230015_1",
"gameName": {
"en": "Super Crown",
"zh-Hans": "超级皇冠"
},
"rank": 1
},
{
"currency": "AUD",
"gameType": 1,
"gameCode": "VP_230003_1",
"gameName": {
"en": "King Royale",
"zh-Hans": "皇室大作战"
},
"rank": 2
}
],
"logUUID": "88825f91-719d-495f-b7a0-58c442d8e985"
}
| Field | Type | Description |
|---|---|---|
data | array | Popular Game List |
data[].currency | string | Currency |
data[].gameType | number | Game Type |
data[].gameCode | string | Game Code |
data[].gameName | object | Game's name for different language, at least will provide english |
data[].gameName.en | string | Game en name |
data[].gameName.zh-Hans | string | Game zh-Hans name |
data[].rank | number | Popularity Sort |
logUUID | string | Request tracking ID for troubleshooting and log queries |
Popularity Calculation
The Popular Games ranking is based on the following factor, a smaller rank number indicates higher popularity:
- Last month’s betting amount
Important Notes
- Update Frequency:The popular list is updated monthly.