Schedule API Documentation
You need an API key to use OddsBlaze. Get access at www.oddsblaze.com.
Description
This endpoint returns upcoming and live events.
API Endpoint
https://api.oddsblaze.com/v2/schedule/{league_id}.json
Parameters
key
(required)
Your OddsBlaze API key.
id
The event id (e.g. 693aca18-dd5c-5593-bd31-746fd8c65e9f
). Separate multiple ids with a comma (e.g. 693aca18-dd5c-5593-bd31-746fd8c65e9f,4c236889-5654-559b-8b16-134ca3bfd640
).
team
The away or home team id, name, or abbreviation (e.g. 8154910f-5350-51eb-8057-8ff763174ea8
, Kansas City Chiefs
, or KC
). Separate multiple teams with a comma (e.g. Kansas City Chiefs,New England Patriots
).
date
The event date in PT (e.g. YYYY-MM-DD
). Separate multiple dates with a comma (e.g. 2025-09-05,2025-09-07,2025-09-08
). Separate date ranges with a hyphen (e.g. 2025-09-05-2025-09-08
).
live
Include only live events (true
) or only pre-match events (false
).
Example URLs
NFL schedule:
https://api.oddsblaze.com/v2/schedule/nfl.json?key=your_key
NCAAF schedule, month of September:
https://api.oddsblaze.com/v2/schedule/ncaaf.json?key=your_key&date=2025-09-01-2025-09-30
England Premier League schedule:
https://api.oddsblaze.com/v2/schedule/england-premier-league.json?key=your_key
Example Response
{
"updated": "2025-08-11T21:14:52.449Z",
"league": {
"id": "nfl",
"name": "NFL",
"sport": "Football"
},
"events": [
{
"id": "d1c35f49-f041-5c35-bd67-e781c6c2e094",
"teams": {
"away": {
"id": "8154910f-5350-51eb-8057-8ff763174ea8",
"name": "Kansas City Chiefs",
"abbreviation": "KC"
},
"home": {
"id": "dbf4f729-f06a-5366-b3ce-28618006c506",
"name": "Los Angeles Chargers",
"abbreviation": "LAC"
}
},
"date": "2025-09-06T00:00:00.000Z",
"live": false
},
{
"id": "9674b96e-fb05-54fd-bd62-1569b53b51a8",
"teams": {
"away": {
"id": "b0f5c688-d9ad-50f8-8b87-ec225f14ea02",
"name": "Las Vegas Raiders",
"abbreviation": "LV"
},
"home": {
"id": "11768bf3-8e8e-53d3-b4ca-a895d14a2371",
"name": "New England Patriots",
"abbreviation": "NE"
}
},
"date": "2025-09-07T17:00:00.000Z",
"live": false
}
]
}