Skip to main content

Schedules API Documentation

Requirement

You need an API key to use OddsBlaze. Request access at www.oddsblaze.com.

Description

This endpoint returns scheduled games.

API Endpoint

https://data.oddsblaze.com/v1/schedules/{league_id}.json

Parameters

key (required)

Your OddsBlaze API key.

id

The game id (e.g. nfl:san_francisco_49ers:seattle_seahawks:2024-regular-season-week-6).

team

The team name or id (e.g. San Francisco 49ers or nfl:san_francisco_49ers).

Example URLs

NBA schedules for all teams:

https://data.oddsblaze.com/v1/schedules/nba.json?key=your_key

NFL schedules for Seattle Seahawks:

https://data.oddsblaze.com/v1/schedules/nfl.json?key=your_key&team=Seattle%20Seahawks

Example Response

{
"games": [
{
"id": "nfl:san_francisco_49ers:seattle_seahawks:2024-regular-season-week-6",
"sport": "Football",
"league": "NFL",
"teams": {
"away": {
"id": "nfl:san_francisco_49ers",
"name": "San Francisco 49ers",
"abbreviation": "SF"
},
"home": {
"id": "nfl:seattle_seahawks",
"name": "Seattle Seahawks",
"abbreviation": "SEA"
}
},
"start": "2024-10-11T00:15:00",
"status": "Scheduled",
"live": false,
"tournament": "Regular Season Week 6",
"season": {
"year": "2024-2025",
"type": "Regular Season",
"week": 6
},
"venue": {
"name": "Lumen Field",
"location": "Seattle, WA"
},
"updated": "2024-10-09T22:13:07"
}
]
}