Skip to main content

GET /api/odds

Returns current bookmaker odds — one row per (event × bookmaker × market_type × period) combination. The odds field is an object keyed by selection text, making it easy to compare prices across bookmakers for the same market. For the full market breakdown of a single event (all bookmakers, all markets, grouped), use GET /api/events/{id} instead.

Query Parameters

Response

Response Fields

odds Object Format

The odds field groups all selections for this (bookmaker, event, market, period) combination into a single object. Selection texts vary by market type:

GET /api/odds/live

Same as GET /api/odds but returns only in-play events. Requires Pro+ Live plan.

Query Parameters

Identical to GET /api/odds (same filters, same limit).

Notes

  • Live odds update every 5–10 seconds. Poll accordingly.
  • Bookmakers with live coverage: Betclic, Winamax (selected events), Unibet.fr (selected events).

GET /api/odds/

Returns all current odds for a specific bookmaker. Equivalent to GET /api/odds?bookmaker={bookmaker} but slightly more efficient.

Path Parameter

Query Parameters

Response

Same format as GET /api/odds.

Code Examples