Get Operator Card Information
Query detailed information for a specified item.
API Information
- URL:
POST /v2/items/info - Authentication:Bearer Token
- Encryption:Requests are encrypted using AES-256-GCM; responses are returned as plaintext JSON
request
request Headers
POST /v2/items/info HTTP/1.1
Host: api.example.com
Content-Type: application/json
Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...
x-agentid: integratorNBTest04
x-timestamp: 1769746894501
x-nonce: 56ffd5ecd8a3a4457863a0bd7c298fb2
x-signature: 904e97bee2589b93e9747eed0346c68b23d8ff8b568dabaf4b94a5e89093df67
Request Parameters
Encrypted Request Body
{
"cipherText": "G0ZMDELeJwx+7JcIfIFOLJjkSzANPu6krGM2uw==..."
}
Request Body Before Encryption
{}
Response
Success Response
{
"code": 0,
"message": "No error.",
"data": [
{
"gameCode": "VP_230001_1",
"status": 1,
"cardType": 1,
"round": 1,
"itemMultiple": 1,
"betList": [
0.1,
0.5,
1,
2,
3,
5,
10,
20,
30,
40,
50,
80,
100,
200,
500,
1000
],
"riskRangeInfo": [
{
"lower": 0,
"upper": 200
}
],
"rtp": "96.41"
},
{
"gameCode": "VP_230001_1",
"status": 1,
"cardType": 22,
"round": 1,
"itemMultiple": 1,
"betList": [
0.1,
0.5,
1,
2,
3,
5,
10,
20,
30,
40,
50,
80,
100,
200,
500,
1000
],
"itemContentDataList": [
{
"language": "en",
"content": "Super-Powerful Feature Game"
},
{
"language": "fil",
"content": "Super-Lakas na Libreng Laro"
},
{
"language": "tl",
"content": "Super-Lakas na Libreng Laro"
},
{
"language": "zh-Hans",
"content": "超强力免费游戏"
},
{
"language": "zh-Hant",
"content": "超強力免費遊戲"
}
],
"riskRangeInfo": [
{
"lower": 200,
"upper": 300,
"avgRatio": 246.2
},
{
"lower": 140,
"upper": 430,
"avgRatio": 251.63
},
{
"lower": 100,
"upper": 5000,
"avgRatio": 250.07
}
]
}
],
"logUUID": "24cdc3b9-9fe8-44de-8391-a96863e46954"
}
ResponseFieldDescription
| Field | Type | Description |
|---|---|---|
code | number | Status code |
message | string | Status message |
data | array | Item Configuration List |
data[].gameCode | string | Game Code |
data[].status | number | Operator Card status |
data[].cardType | number | Card Types |
data[].round | number | Spin Rounds |
data[].itemMultiple | number | Operator Card Multiplier Range |
data[].betList | array | Bet List |
data[].rtp | string | Player Return Rate |
data[].riskRangeInfo | array | Risk Multiplier Range |
data[].riskRangeInfo[].lower | number | Winning Points Lower Limit |
data[].riskRangeInfo[].upper | number | Winning Points Upper Limit |
data[].riskRangeInfo[].avgRatio | number | Theoretical Multiplier, This field appears only when cardType is not equal to 1 or 2. |
data[].itemContentDataList | array | Multilingual Content List |
data[].itemContentDataList[].language | string | Language Code |
data[].itemContentDataList[].content | string | Game Content |
logUUID | string | Request tracking ID for troubleshooting and log queries |
Error Response
{
"code": 7,
"message": "Internal server error",
"logUUID": "24cdc3b9-9fe8-44de-8391-a96863e46954"
}
Important Notes
- No Parameters Required: This API does not require any parameters and will return all available item configurations
- Item Type:
cardTyperepresents different types of item cards - Risk Range:
riskRangeInfodefines the risk level range of the item - Multilingual Support:
itemContentDataListprovides item descriptions in multiple languages - Bet List:
betListlists all supported betting amount options for the item