Skip to main content

3.0 General

Available endpoints:

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:

FieldTypeDescription
countintegerTotal number of items.
nextstringURL of the next batch of results, or null.
prevstringURL of the previous batch of results, or null.
resultsarrayThe items themselves.

Both accept a limit query parameter controlling how many results are returned per page. It defaults to 1000.