Skip to main content

Odds Status API Documentation

Requirement

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

Description

This endpoint returns the current status of odds feeds.

API Endpoint

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

Parameters

key (required)

Your OddsBlaze API key.

Example URLs

NFL odds status:

https://data.oddsblaze.com/v1/status/odds/nfl.json?key=your_key

NBA odds status:

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

Example Response

{
"leagues": [
{
"id": "nfl",
"name": "NFL",
"sport": "Football",
"updated": "2024-10-30T23:51:13",
"sportsbooks": [
{
"id": "bally_bet",
"name": "Bally Bet",
"link": "https://data.oddsblaze.com/v1/odds/bally_bet_nfl.json",
"odds": true
},
{
"id": "betmgm",
"name": "BetMGM",
"link": "https://data.oddsblaze.com/v1/odds/betmgm_nfl.json",
"odds": true
},
{
"id": "betonline",
"name": "BetOnline",
"link": "https://data.oddsblaze.com/v1/odds/betonline_nfl.json",
"odds": true
}
]
}
]
}