Get Operator Card Information
Query detailed information of an Operator Card.
Operator Card Features
- Definition: Operator gifts cards to players as a promotional feature, with costs absorbed by the Operator.
- Can only be sent via API. After successful sending, the Player enters the corresponding game, and the Card will be immediately Triggered.
- Classified as Item, transactions use Bet and Bet retry.
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
Decrypted Request
{
"cipherText": "G0ZMDELeJwx+7JcIfIFOLJjkSzANPu6krGM2uw==..."
}
Parameters Before Encryption
info
This API does not require parameters; the parameters before encryption are an empty object.
{}
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 |
|---|---|---|
data[].gameCode | string | Game Code |
data[].status | number | Operator Card Open Status (default is 1 for open) |
data[].cardType | number | Card Type |
data[].round | number | Spin Round |
data[].itemMultiple | number | Operator Card Multiplier Range |
data[].betList | array | Available Bet Amount List |
data[].rtp | string | Return to Player (RTP) |
data[].riskRangeInfo | array | Risk Multiplier Range, there will be 1~3 Range options depending on the combination |
data[].riskRangeInfo[].lower | number | Win Amount Lower Limit |
data[].riskRangeInfo[].upper | number | Win Amount Upper Limit |
data[].riskRangeInfo[].avgRatio | number | Theoretical Multiplier, only appears when Card Type parameter is not equal to 1 or 2 |
data[].itemContentDataList | array | Multi-language Content List (optional) |
data[].itemContentDataList[].language | string | Language Code |
data[].itemContentDataList[].content | string | Game Description |
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 returns all available Operator Card configurations
- Operator Card Type:cardType represents different types of Operator Card
- Risk Range:riskRangeInfo defines the risk level range for Operator Cards
- Multi-language Support:itemContentDataList provides multi-language Operator Card descriptions
- BetList:betList lists all bet amount options supported by this Operator Card