Get bet list
GET /notification/
Operation ID: notification_list
Fetch the user's notification list with optional filtering and pagination.
Query Parameters
search
string
No
A search term
ordering
string
No
Which field to use when ordering the results
page
integer
No
A page number within the paginated result set
Response
Success Response (200)
Returns a PagedNotification
object:
Response Fields
count
integer
Total number of notifications
total_pages
integer
Total number of pages
next
string
URL for next page (null if last page)
previous
string
URL for previous page (null if first page)
results
array[Notification]
Array of notification objects
Usage
Basic Request:
With Search and Pagination:
Filter by Status:
Potential Use Cases
Bet Management: View and manage all created notifications/bets
Performance Monitoring: Track the status and results of automated betting strategies
Bot Monitoring: Monitor automated betting bot activities and configurations
Notification Object Fields
Each notification in the results array contains comprehensive bet information including:
Basic Information: ID, type, stake, target profit, total wager
Odds Management: Check odds, max odds, boost availability, SPG availability
Account Settings: Bonus availability, total wager enforcement, double bets allowance
Timing: Creation time, trigger time, scheduling options
Target Configuration: Market, bet type, session, bot targeting
Status Tracking: Draft, canceled, deleted, scheduled states
Group Betting: Group bot settings, delays, pre-alerts
Advanced Options: Profit targets, minimum odds, delay configurations
Example
With Search Parameters:
Authentication
This endpoint requires authentication. Include your token in the Authorization header:
Last updated