Skip to main content

Query Bet Records (By Time Period)

1. Query Bet Records (By Time Period)

Interface Path

  • Get
  • /api/game/transaction/query

Description

  • The query interface uses a pagination mode. For example, if there are 269 records in the time range 1732589000000 - 1732600000000, set 100 records per page
  • For the first page, set the start-index parameter to 0 and the page-size parameter to 100
  • For the second page, set start-index += 100 to 100, and page-size to 100
  • For the third page, set start-index += 100 to 200, and page-size to 100
  • And so on

Query Time Description

  • Bet records can only be queried for data within the last three months
  • The time span between start_time and end_time should be less than 1 day

Interface Frequency Description

  • The query bet records API can be called at most once every 5 seconds

Request Parameters

ParameterNameTypeRequiredDescription
agent_idMerchant IDstringRequiredMerchant ID
start_timeOrder Update Time, Start Time (inclusive)stringRequiredIn milliseconds
end_timeOrder Update Time, End Time (exclusive)stringRequiredIn milliseconds
start_indexPagination Start IndexstringRequiredPagination Start Index
page_sizePagination Page SizestringRequiredPagination Page Size, value cannot be greater than 5000
timestampCurrent TimestampstringRequiredTimestamp when calling the interface (in milliseconds, valid for ten minutes)
signSignaturestringRequiredSignature algorithm details in the interface description

Response Parameters

ParameterNameTypeDescription
codeResponse CodeintError Code
messageResponse MessagestringError Message
dataResponse DatadictResponse Data Details
--start_indexStart IndexintStart Index
--page_sizeOrders Per PageintOrders Per Page
--totalTotal Bet Orders in Time PeriodintTotal Bet Orders in Time Period
--transactionsBet Order ListListBet Order List
----idOrder IDstringOrder ID
----game_idGame IDstringGame ID, 101: Baccarat
----user_idUser IDstringUser ID
----inst_idTable IDstringTable ID
----shoe_idShoe IDintShoe ID
----round_idRound IDintRound ID
----bet_timeBet TimeintBet Time
----settle_timeSettle TimeintSettle Time
----bet_amountBet AmountstringBet Amount
----real_bet_amountReal Bet AmountstringReal Bet Amount
----win_amountPayout AmountstringPayout Amount
----currencyCurrencystringCurrency
----real_win_amountReal Win AmountstringReal Win Amount = Payout Amount - Bet Amount
----bet_detailBet DetailsdictBet Details, the key is the bet item, the value is the bet amount
----no_commcommission freebooleancommission free
----game_resultGame ResultArrayGame Result
----open_cardsOpen Cardsdictbanker: Banker, player: Player
----create_timeOrder Create TimeintOrder Create Time
----update_timeOrder Update TimeintOrder Update Time
----statusOrder Statusint0- Bet Placed, 1- Settled, 2- User Cancelled, 3- Invalid Order, 4- Settlement Changed to Invalid

Bet Items Description

Bet ItemDescription
TieTie
BankerBanker
PlayerPlayer
BigBig
SmallSmall
PlayerPairPlayer Pair
BankerPairBanker Pair
Super6Super 6
PDragonBonusPlayer Bonus
BDragonBonusBanker Bonus
AnyPairAny Pair
PrefectPairPrefect Pair
PlayerNaturalPlayer Natural
BankerNaturalBanker Natural

Card Face Description

  • The open card face is concatenated into a string in the order of opening
  • For example, if the first card of the player is Hearts A, the second card is Clubs 6, and the third card is Diamonds J, the concatenated string is "HeartsA,Clubs6,DiamondsJ"
SuitDescription
HeartsHearts
DiamondsDiamonds
ClubsClubs
SpadesSpades

Request Example

curl --location 'https://staging.aig1234.com/api/game/transaction/query?agent_id=agent001&start_time=1732589000000&end_time=1732600000000&start_index=0&page_size=100&timestamp=1734417699302&sign=60694d77140617133bb4143311c25e09' \
--header 'Content-Type: application/json'

Response Example

{
"code": 200,
"message": "success",
"data": {
"start_index": 0,
"page_size": 100,
"total": 169,
"transactions": [
{
"id": "67453d0923c36d2571d40815",
"user_id": "7797",
"game_id": "101",
"inst_id": "iN95KcYR",
"shoe_id": 10907,
"round_id": 9,
"bet_time": 1732590857359,
"settle_time": 1732590881164,
"bet_amount": "100",
"real_bet_amount": "100",
"win_amount": "200.00",
"real_win_amount": "100.00",
"currency": "USD",
"bet_detail": {
"Banker": 100
},
"no_comm": true,
"game_result": [
"Banker",
"Big"
],
"open_cards": {
"banker": "Spades9,Hearts5",
"player": "Clubs7,Clubs7,DiamondsA"
},
"create_time": 1732590857359,
"update_time": 1732590857359,
"status": 1
}
]
}
}

Error Codes

200 Success
408000 Request Parameter Error
408003 Whitelist Restriction
408004 API Frequency Limit
600100 Invalid Signature
600101 Invalid Parameter
700101 Merchant Does Not Exist
700401 Query Time Error