Skip to main content

Query Daily Report

Query operational statistical reports for a specified date.

API Information

  • URL: POST /v2/report
  • Authentication: Bearer Token
  • Encryption: Requests are encrypted using AES-256-GCM; responses are returned as plaintext JSON

Request

Request Headers

POST /v2/report HTTP/1.1
Host: api.example.com
Content-Type: application/json
Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...
x-agentid: integratorNBTest04
x-timestamp: 1769746894501
x-nonce: 4ff08bc2a45c6b38068dbcd24296a25b
x-signature: c25f8d23704373e8776cce6d9b10f1fde091c34db80d60523c7e04ff30e54633

Request Parameters

Parameters Before Encryption

{
"startDate": "2026-01-21T07:00:00.000Z",
"endDate": "2026-01-21T07:30:00.000Z",
"agentId": "integratorNBTest04",
"betSource": 1,
"featureMode": 1,
"gameKind": 1
}

Encrypted Request Body

{
"cipherText": "G0ZMDELeJwx+7JcIfIFOLJjkSzANPu6krGM2uw==..."
}
FieldTypeRequiredDescription
startDatestringYesStart time (ISO 8601 format)
endDatestringYesEnd time (ISO 8601 format)
agentIdstringYesAgent ID (must be the same as the agentId used for /v2/auth verification)
betSourcenumberNoFilter type, default is 1, 1: Regular bets and items, 2: Operator Cards, 3: All
featureModenumberNoFeature Mode
gameKindnumberNoGame Kind

Response

Success Response

{
"code": 0,
"message": "No error.",
"data": {
"count": 96,
"actualBetAmt": "48",
"validBetAmt": "48",
"winAmt": "44.9",
"ggr": "3.1",
"jackpotWin": "0",
"jackpotContribute": "0",
"lastStatisticsTime": "2026-02-02T23:19:34.856Z"
},
"logUUID": "0a4503a6-c652-4ad2-a80f-8e0c4ed42a60"
}
FieldTypeDescription
data.countnumberNumber of bets
data.actualBetAmtstringActual bet amount
data.validBetAmtstringValid bet amount
data.winAmtstringWin amount
data.ggrstringGames' netwin
data.jackpotWinstringJackpot win amount
data.jackpotContributestringJackpot contribution amount
data.lastStatisticsTimestringLast statistics time

Error Response

{
"code": 11,
"message": "Parameters error.",
"logUUID": "6589bf8d-fe74-48bd-841a-71bf8f848f86"
}

Important Notes

  1. Time range: To ensure data consistency, the query time range can only be between 90 days before the current time and 2 hours before the current time.
  2. Time Range: The time Range set between startDate and endDate cannot exceed 7 days.
  3. Call frequency: The call frequency for each agentId is a maximum of once per second.
  4. Time segmentation: Queries can only be hourly. If not met, a parameter error will be returned (code: 11), EX: 04:00~04:01(x) vs 04:00~05:00(o)
  5. jackpotWin: Reserved Field, current value is fixed at 0