Search bet history
POST /bet/search/
Operation ID: search_bets
Filter and search bet history using multiple criteria by providing specific bet IDs.
Request Body
Parameters
ids
array[integer]
No
List of bet IDs to retrieve
Response
Success Response (200)
Returns an array of BetHistorySimple
objects:
Error Responses
500 Internal server error - Server encountered an error processing the request
Usage
Search for Specific Bets:
Search for Single Bet:
Potential Use Cases
Specific Bet Analysis: Retrieve detailed information for particular bets of interest
Batch Bet Retrieval: Get multiple specific bets in a single API call for efficiency
Bet Verification: Verify specific bet details for reconciliation purposes
Performance Analysis: Analyze specific bets that performed well or poorly
Reporting: Generate reports for specific sets of bets
Audit Purposes: Retrieve specific bets for compliance or audit requirements
Customer Support: Look up specific bet details for customer inquiries
Data Export: Extract specific bet data for external analysis tools
Authentication
This endpoint requires authentication. Include your token in the Authorization header:
Response Schema
Status Code 200
id
integer
Bet History Id used in this system
display_name
string
name of session which placed bet
amount
integer
actual amount that placed, this can be different from notification amount.
current_odds
string
odds that actually applied
created_at
string(date-time)
Time when History is created
market
string
finally placed market
submit_time
string or null
bet slip submit clicked time
result_time
string or null
bet slip submit result time
submit_result
string
result of bet Success or Error or In Review
submit_error
string
If success Accepted, else error string from the bookie
profit
integer
profit obtained from right bet
used_boost
boolean
if this bet is boosted one
used_spg
boolean
if spg is used
used_bonus
boolean
if bonus money is used
transaction_id
integer
to be used to update the accepted amount and odds later
bot_id
string
Id of bot notification sent to
is_deleted
boolean
if bet history is deleted
notified
boolean
if this bet is notified via socket
reported_usage
integer
reported turnover of this bet
sports
string
Type of Sport
owner
integer
users id who placed this bet
bookie
integer
bookie id on whom bet is placed
notification
integer
notification id used in system
Last updated