Skip to main content

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

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

FieldTypeDescription
data[].gameCodestringGame Code
data[].statusnumberOperator Card Open Status (default is 1 for open)
data[].cardTypenumberCard Type
data[].roundnumberSpin Round
data[].itemMultiplenumberOperator Card Multiplier Range
data[].betListarrayAvailable Bet Amount List
data[].rtpstringReturn to Player (RTP)
data[].riskRangeInfoarrayRisk Multiplier Range, there will be 1~3 Range options depending on the combination
data[].riskRangeInfo[].lowernumberWin Amount Lower Limit
data[].riskRangeInfo[].uppernumberWin Amount Upper Limit
data[].riskRangeInfo[].avgRationumberTheoretical Multiplier, only appears when Card Type parameter is not equal to 1 or 2
data[].itemContentDataListarrayMulti-language Content List (optional)
data[].itemContentDataList[].languagestringLanguage Code
data[].itemContentDataList[].contentstringGame Description

Error Response

{
"code": 7,
"message": "Internal server error",
"logUUID": "24cdc3b9-9fe8-44de-8391-a96863e46954"
}

Important Notes

  1. No Parameters Required:This API does not require any parameters and returns all available Operator Card configurations
  2. Operator Card Type:cardType represents different types of Operator Card
  3. Risk Range:riskRangeInfo defines the risk level range for Operator Cards
  4. Multi-language Support:itemContentDataList provides multi-language Operator Card descriptions
  5. BetList:betList lists all bet amount options supported by this Operator Card