Skip to main content

Grader API Documentation

Requirement

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

Description

This endpoint returns bet results: Win, Lose, or Push.

API Endpoint

https://grader.oddsblaze.com/

Parameters

key (required)

Your OddsBlaze API key.

id (required)

The odds id (e.g. DraftKings#b5190884-dcd5-5da7-af1f-aca5fd00b7ba#Player Points + Rebounds + Assists#Devin Booker Over 39.5#db073dcd-2355-5633-9f56-13daf84eab8a).

live

Grade bets while the event is still in progress (&live).

Example URLs

Grade bet:

https://grader.oddsblaze.com/?key=your_key&id=DraftKings%23b5190884-dcd5-5da7-af1f-aca5fd00b7ba%23Player%20Points%20%2B%20Rebounds%20%2B%20Assists%23Devin%20Booker%20Over%2039.5%23db073dcd-2355-5633-9f56-13daf84eab8a

Grade live bet:

https://grader.oddsblaze.com/?key=your_key&id=DraftKings%2346acbcf0-bf48-5cf5-afc3-a0be95205c6b%23Total%20Points%23Over%20129.5&live

Example Responses

{
"id": "DraftKings#b5190884-dcd5-5da7-af1f-aca5fd00b7ba#Player Points + Rebounds + Assists#Devin Booker Over 39.5#db073dcd-2355-5633-9f56-13daf84eab8a",
"event": {
"id": "b5190884-dcd5-5da7-af1f-aca5fd00b7ba",
"teams": {
"away": {
"name": "Phoenix Suns",
"score": 111
},
"home": {
"name": "Denver Nuggets",
"score": 133
}
},
"status": "Final"
},
"market": "Player Points + Rebounds + Assists",
"name": "Devin Booker Over 39.5",
"selection": {
"name": "Devin Booker",
"side": "Over",
"line": 39.5
},
"player": {
"id": "db073dcd-2355-5633-9f56-13daf84eab8a",
"score": 41
},
"result": "Win"
}
{
"id": "DraftKings#46acbcf0-bf48-5cf5-afc3-a0be95205c6b#Total Points#Over 129.5",
"event": {
"id": "46acbcf0-bf48-5cf5-afc3-a0be95205c6b",
"teams": {
"away": {
"name": "SIU Edwardsville Cougars",
"score": 77
},
"home": {
"name": "Texas San Antonio Roadrunners",
"score": 60
}
},
"status": "Live"
},
"market": "Total Points",
"name": "Over 129.5",
"selection": {
"side": "Over",
"line": 129.5
},
"result": "Win"
}

Messages

{"message": "Invalid market"}
{"message": "Event not found"}
{"message": "Player not found"}