Skip to main content

Find Game API Documentation

Requirement

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

Description

This endpoint can be used to match game ID's from other data providers.

API Endpoint

https://api.oddsblaze.com/v1/find_game

Parameters

key (required)

Your OddsBlaze API key.

league (required)

The league name (e.g. NFL).

away (required)

The away team (e.g. Denver Broncos).

home (required)

The home team (e.g. Tampa Bay Buccaneers).

date (required)

The start date in UTC (e.g. 2024-09-22T17:00:00).

Example URL

https://api.oddsblaze.com/v1/find_game?key=your_key&league=NFL&away=Denver%20Broncos&home=Tampa%20Bay%20Buccaneers&date=2024-09-22T17:00:00

Example Response

{
"id": "nfl:denver_broncos:tampa_bay_buccaneers:2024-regular-season-week-3",
"sport": "NFL",
"league": "Football",
"teams": {
"away": {
"id": "nfl:denver_broncos",
"name": "Denver Broncos",
"abbreviation": "DEN"
},
"home": {
"id": "nfl:tampa_bay_buccaneers",
"name": "Tampa Bay Buccaneers",
"abbreviation": "TB"
}
},
"start": "2024-09-22T17:00:00",
"status": "Scheduled",
"live": false,
"tournament": "Regular Season Week 3"
}