Odds API Documentation
You need an API key to use OddsBlaze. Get access at www.oddsblaze.com.
Description
This endpoint returns real-time odds data.
API Endpoint
https://api.oddsblaze.com/v2/odds/{sportsbook_id}/{league_id}.json
Parameters
key
(required)
Your OddsBlaze API key.
market
The market name (e.g. Moneyline
or Point Spread
). Separate multiple markets with a comma (e.g. Moneyline,Point Spread,Total Points
).
market_contains
The market name contains (e.g. Moneyline
or Point Spread
). Separate multiple markets with a comma (e.g. Moneyline,Point Spread,Total Points
).
price
The price format: american
(default), decimal
, fractional
, probability
, malaysian
, indonesian
, or hong_kong
event
The event id (e.g. b3d1e36e-81cb-5ba1-bb31-7fac32ccde86
). Separate multiple events with a comma (e.g. b3d1e36e-81cb-5ba1-bb31-7fac32ccde86,6016f8f9-ab7e-5b6c-82a3-6ff8a5308170
).
main
Include only main lines (true
) or only alternate lines (false
).
live
Include only live events (true
) or only pre-match events (false
).
Example URLs
DraftKings MLB odds:
https://api.oddsblaze.com/v2/odds/draftkings/mlb.json?key=your_key
Hard Rock NFL odds, Moneyline market, only pre-match events:
https://api.oddsblaze.com/v2/odds/hard-rock/nfl.json?key=your_key&market=Moneyline&live=false
Example Response
{
"updated": "2025-09-09T17:18:52.521Z",
"league": {
"id": "nfl",
"name": "NFL",
"sport": "Football"
},
"sportsbook": {
"id": "draftkings",
"name": "DraftKings"
},
"events": [
{
"id": "543e2c71-dd0a-53b6-b6a8-07395ca23ed0",
"teams": {
"away": {
"id": "657995cc-1a57-5119-8d94-fafb109f5620",
"name": "Washington Commanders",
"abbreviation": "WAS"
},
"home": {
"id": "ca8f9a6b-cdb1-5359-8296-7def7a580fcf",
"name": "Green Bay Packers",
"abbreviation": "GB"
}
},
"date": "2025-09-12T00:15:00.000Z",
"live": false,
"odds": [
{
"id": "DraftKings#543e2c71-dd0a-53b6-b6a8-07395ca23ed0#Player Passing Yards#Jordan Love Over 229.5#44bb1975-6273-5bea-8d37-e9784ac51803",
"market": "Player Passing Yards",
"name": "Jordan Love Over 229.5",
"price": "-111",
"main": true,
"links": {
"desktop": "https://sportsbook.draftkings.com/event/32225594?outcomes=0QA270134733%23335135717_13L88808Q11199577314Q20",
"mobile": "dksb://sb/addselection_name/0QA270134733%23335135717_13L88808Q11199577314Q20"
},
"sgp": "Omd_b3H6g5wc3kcl_YUeUuJwqs1HvWwHnZRTxIxzkkcHcAQ2YOZeenGDr6ksSzf8",
"selection": {
"name": "Jordan Love",
"side": "Over",
"line": 229.5
},
"player": {
"id": "44bb1975-6273-5bea-8d37-e9784ac51803",
"name": "Jordan Love",
"position": "QB",
"number": "10",
"team": {
"id": "ca8f9a6b-cdb1-5359-8296-7def7a580fcf",
"name": "Green Bay Packers",
"abbreviation": "GB"
}
}
},
{
"id": "DraftKings#543e2c71-dd0a-53b6-b6a8-07395ca23ed0#Player Passing Yards#Jordan Love Under 229.5#44bb1975-6273-5bea-8d37-e9784ac51803",
"market": "Player Passing Yards",
"name": "Jordan Love Under 229.5",
"price": "-113",
"main": true,
"links": {
"desktop": "https://sportsbook.draftkings.com/event/32225594?outcomes=0QA270134733%23335135718_13L88808Q11191651869Q20",
"mobile": "dksb://sb/addselection_name/0QA270134733%23335135718_13L88808Q11191651869Q20"
},
"sgp": "Omd_b3H6g5wc3kcl_YUeUjfFc_qGAwPQ4IG6uhIxsTtFIi_0WGVgg1eAHLNE1agG",
"selection": {
"name": "Jordan Love",
"side": "Under",
"line": 229.5
},
"player": {
"id": "44bb1975-6273-5bea-8d37-e9784ac51803",
"name": "Jordan Love",
"position": "QB",
"number": "10",
"team": {
"id": "ca8f9a6b-cdb1-5359-8296-7def7a580fcf",
"name": "Green Bay Packers",
"abbreviation": "GB"
}
}
}
]
}
]
}