Get specific betting account
GET /bookieaccount/{id}/
Operation ID: bookieaccount_read
Retrieve detailed information for a specific bookie account by its ID.
Path Parameters
id
integer
Yes
A unique integer value identifying this bookie account
Response
Success Response (200)
Returns a BookieAccount
object:
Response Fields
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
login_status
string
Current login status
last_login_attempt
datetime
Timestamp of last login attempt
login_error
string
Last login error message (null if no error)
session_details
object
Detailed session information
account_settings
object
Account configuration settings
performance_stats
object
Daily performance statistics
Error Responses
401 Invalid credentials - Authentication token is invalid or missing
404 Not Found - Bookie account with specified ID not found
500 Internal server error - Server encountered an error processing the request
Usage
Potential Use Cases
Detailed Account Analysis: Get comprehensive information about a specific account's performance
Troubleshooting: Diagnose issues with specific accounts including login problems
Performance Monitoring: Track detailed performance metrics for individual accounts
Session Management: Monitor session status and activity for specific accounts
Account Optimization: Analyze account settings and performance to optimize configuration
Bot Monitoring: Check detailed bot status and performance for specific accounts
Balance Verification: Verify current balance and bonus information for specific accounts
Audit Trail: Maintain detailed records of account activity and status
Authentication
This endpoint requires authentication. Include your token in the Authorization header:
Notes
This endpoint provides more detailed information than the account list endpoint
Performance statistics are typically calculated for the current day
Session details help monitor the health of automated betting operations
Use this endpoint when you need comprehensive information about a specific account
Last updated