Endpoints
Copy‑paste these requests.
GET /v1/football/events?schedule_date=YYYY-MM-DD&has_odds=true&per_page=10
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 typical best-odds response (used for comparison tables).
{
"event_id": "evt_123",
"odds_format": "decimal",
"markets": [
{
"key": "1x2",
"best": [
{ "name": "Home", "odds": 2.02, "bookmaker_code": "UO004" },
{ "name": "Draw", "odds": 3.45, "bookmaker_code": "UO018" },
{ "name": "Away", "odds": 3.78, "bookmaker_code": "UO006" }
]
}
]
}