Endpoints for cards odds
Discover card markets, then fetch with package=full.
GET /v1/football/events?schedule_date=YYYY-MM-DD&has_odds=true&per_page=10
GET /v1/football/events/EVENT_ID/odds?package=full&odds_format=decimal
GET /v1/football/events/EVENT_ID/markets?group=cards
Replace EVENT_ID with an event_id from the events endpoint.
Example cards market shape
Decimal odds and normalised selections.
{
"event_id": "evt_123",
"odds_format": "decimal",
"markets": [
{
"key": "total_cards",
"name": "Total Cards",
"outcomes": [
{ "name": "Over 3.5", "odds": 1.85, "bookmaker_code": "UO004" },
{ "name": "Under 3.5", "odds": 2.00, "bookmaker_code": "UO022" }
]
}
]
}