Skip to main content

Get Popular Game List

Query the current popular game list.

API Information

  • URLPOST /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"
}
FieldTypeDescription
dataarrayPopular Game List
data[].currencystringCurrency
data[].gameTypenumberGame Type
data[].gameCodestringGame Code
data[].gameNameobjectGame's name for different language, at least will provide english
data[].gameName.enstringGame en name
data[].gameName.zh-HansstringGame zh-Hans name
data[].ranknumberPopularity Sort
logUUIDstringRequest 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

  1. Update Frequency:The popular list is updated monthly.