Get betting accounts
GET /bookieaccount/
Operation ID: get_bookie_account_list
Retrieve the user's bookie account list with session and bot status information.
Parameters
No parameters required.
Response
Success Response (200)
Returns an array of BookieAccountList
objects:
Response Fields
id
integer
Unique identifier for the bookie account
bookie
string
Name of the bookmaker
display_name
string
User-friendly name for the account
balance
number
Current account balance
bonus_balance
number
Current bonus balance available
update_time
datetime
Last time account information was updated
bot_ip
string
IP address of the bot managing this account
bot_id
string
Identifier of the bot managing this account
bot_running
boolean
Whether the bot is currently running
running_sessions
integer
Number of active sessions for this account
Usage
Error Responses
401 Invalid credentials - Authentication token is invalid or missing
500 Internal server error - Server encountered an error processing the request
Potential Use Cases
Account Monitoring: Monitor all bookie accounts and their current status
Balance Tracking: Track balances across all connected bookmaker accounts
Bot Management: Monitor which bots are running and managing accounts
Session Monitoring: Track active betting sessions across accounts
System Health: Check the health and status of automated betting infrastructure
Load Balancing: Distribute betting load based on running sessions
Troubleshooting: Identify accounts with bot or session issues
Performance Optimization: Optimize bot allocation and session management
Authentication
This endpoint requires authentication. Include your token in the Authorization header:
Notes
This endpoint provides operational status information not available in the basic bookie account list
Bot and session information is crucial for managing automated betting operations
Balance information is updated periodically and may not reflect real-time values
Use this endpoint to monitor the health of your automated betting infrastructure
Last updated