Skip to main content

Query Bet Records (Fetch Latest)

1. Query Bet Records (Fetch Latest)

Interface Path

  • Get
  • /api/game/transaction/latest

Description

  • Fetch the latest bet orders by the last time
  • A maximum of 1000 records can be fetched at a time
  • Bet orders are sorted by "update time"
  • Please use the "update time" of the last record from the previous fetch as the starting time for the next search
  • Note: If no orders are fetched in a certain fetch, set the next fetch time to one minute before the current time

Interface Frequency Description

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

Request Parameters

ParameterNameTypeRequiredDescription
agent_idMerchant IDstringRequiredMerchant ID
last_timeLast TimestringRequiredIn milliseconds
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
--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
----real_win_amountReal Win AmountstringReal Win Amount = Payout Amount - Bet Amount
----currencyCurrencystringCurrency
----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/latest?agent_id=agent001&last_time=1732589000000&timestamp=1734417236278&sign=a35d62ad03c7048e14151673182a8163' \
--header 'Content-Type: application/json'

Response Example

{
"code": 200,
"message": "success",
"data": {
"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",
"currency": "USD",
"real_win_amount": "100.00",
"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
700101 Merchant Does Not Exist