Endpoints
Copy‑paste these requests.
GET /v1/football/events?schedule_date=YYYY-MM-DD&has_odds=true&per_page=50
GET /v1/football/events/EVENT_ID/odds?package=core&odds_format=decimal
GET /v1/football/events/EVENT_ID/odds/best?odds_format=decimal
Replace EVENT_ID with an event_id returned by the events endpoint.
Sample JSON
A compact odds response (normalised across bookmakers).
{
"event_id": "evt_123",
"odds_format": "decimal",
"markets": [
{
"key": "totals_goals",
"outcomes": [
{ "name": "Over 2.5", "odds": 2.05, "bookmaker_code": "UO004" },
{ "name": "Under 2.5", "odds": 1.82, "bookmaker_code": "UO004" }
]
}
]
}