Endpoints for HT/FT odds
Halves-group discovery and odds fetch.
GET /v1/football/events?schedule_date=YYYY-MM-DD&has_odds=true&per_page=10
GET /v1/football/events/EVENT_ID/markets?group=halves
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 HT/FT shape
Half/full combinations with decimal odds.
{
"event_id": "evt_123",
"odds_format": "decimal",
"markets": [
{
"key": "ht_ft",
"name": "Half Time/Full Time",
"outcomes": [
{ "name": "Home/Home", "odds": 3.40, "bookmaker_code": "UO004" },
{ "name": "Draw/Away", "odds": 15.0, "bookmaker_code": "UO022" }
]
}
]
}