Endpoints for BTTS odds
Fixtures, goals-group discovery, then odds.
GET /v1/football/events?schedule_date=YYYY-MM-DD&has_odds=true&per_page=10
GET /v1/football/events/EVENT_ID/markets?group=goals
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 from the events response.
Example BTTS market shape
Yes/No selections with bookmaker codes.
{
"event_id": "evt_123",
"odds_format": "decimal",
"markets": [
{
"key": "btts",
"name": "Both Teams To Score",
"outcomes": [
{ "name": "Yes", "odds": 1.80, "bookmaker_code": "UO004" },
{ "name": "No", "odds": 2.05, "bookmaker_code": "UO022" }
]
}
]
}