3.0 General
Available endpoints:
- 3.1 Account
- 3.1.1 Get account information
- 3.2 Balance
- 3.2.1 Get the account balance
- 3.3 Keep Alive
- 3.3.1 Check the API is alive
- 3.4 Events
- 3.4.1 List events and offers
- 3.5 Bets
- 3.5.1 Place a bet
- 3.5.2 Get a single bet
- 3.5.3 List bets
- 3.6 Price and Stake
- 3.6.1 Get quotes for a selection
- 3.6.2 Returning no prices
3.0.1 Conventions
All endpoints are authenticated with HTTP Basic, return JSON, and use the formats described in Expected formats.
Where a request cannot be served, respond with 400. The specification does not define a body for error
responses, but any detail you can supply is useful when diagnosing an integration.
3.0.2 Pagination
The two list endpoints, GET /events and GET /bets/, share a paginated envelope:
| Field | Type | Description |
|---|---|---|
count | integer | Total number of items. |
next | string | URL of the next batch of results, or null. |
prev | string | URL of the previous batch of results, or null. |
results | array | The items themselves. |
Both accept a limit query parameter controlling how many results are returned per page. It defaults to
1000.