Skip to main content

Same Game Parlay BlazeBuilder API Documentation

Requirement

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

Description

BlazeBuilder provides real-time Same Game Parlay (SGP) pricing.

API Endpoint

https://{sportsbook_id}.sgp.oddsblaze.com/

Parameters

key (required)

Your OddsBlaze API key.

price

The price format: american (default), decimal, fractional, probability, malaysian, indonesian, or hong_kong.

custom

Supply custom prices (true or false).

POST Body

Send a JSON array in the request body, using the sgp value from each odds object.

[
"AXO8bKgfGRc9MusGAkXJRPdODA6_MCkarrZNY69HNsk=",
"UcFTPZsGI7jvJRjmFHd7sXkg_-tLNYWizd09B5uEVZk="
]

By including the price with each sgp value, you can require the prices of each leg to match the current sportsbook prices, or supply your own prices.

[
{
"sgp": "AXO8bKgfGRc9MusGAkXJRPdODA6_MCkarrZNY69HNsk=",
"price": "-105"
},
{
"sgp": "UcFTPZsGI7jvJRjmFHd7sXkg_-tLNYWizd09B5uEVZk=",
"price": "+152"
}
]

Example curl Commands

3-leg same game parlay:

curl -X POST "https://betmgm.sgp.oddsblaze.com/?key=your_key" \
-H "Content-Type: application/json" \
-d '[
"AXO8bKgfGRc9MusGAkXJRPdODA6_MCkarrZNY69HNsk=",
"UcFTPZsGI7jvJRjmFHd7sXkg_-tLNYWizd09B5uEVZk=",
"ZXsWuMuEJghWTchrNlHB659lXD4cPz7U82kz1REeO60="
]'

2-leg same game parlay, with price match check:

curl -X POST "https://fanduel.sgp.oddsblaze.com/?key=your_key" \
-H "Content-Type: application/json" \
-d '[
{
"sgp": "EUALh8ZIcJaMdBP7Yp8bQlwwCtcbcIOgr8O-T73FvwM_L98aIc841zWtt4bKbnddYFd9715GugaNQmqGRDXAfapoKsuBCAZlDe8GKb3dFsLh2r6pH48K5t42yw51RA0P",
"price": "-105"
},
{
"sgp": "EUALh8ZIcJaMdBP7Yp8bQtOy3nZtcKnptshxr5X97wazt82Ny4msoQiiccEe7tsT6PqGqaxGvj6QFlXQ9mB9xWn7U6dkQlhYHpFSiY257O2hT_kSQ0zOolxbO30Ebm3g",
"price": "+152"
}
]'

2-leg same game parlay, with custom prices:

curl -X POST "https://fanduel.sgp.oddsblaze.com/?key=your_key&custom=true" \
-H "Content-Type: application/json" \
-d '[
{
"sgp": "EUALh8ZIcJaMdBP7Yp8bQlwwCtcbcIOgr8O-T73FvwM_L98aIc841zWtt4bKbnddYFd9715GugaNQmqGRDXAfapoKsuBCAZlDe8GKb3dFsLh2r6pH48K5t42yw51RA0P",
"price": "+100"
},
{
"sgp": "EUALh8ZIcJaMdBP7Yp8bQtOy3nZtcKnptshxr5X97wazt82Ny4msoQiiccEe7tsT6PqGqaxGvj6QFlXQ9mB9xWn7U6dkQlhYHpFSiY257O2hT_kSQ0zOolxbO30Ebm3g",
"price": "+160"
}
]'

Example Responses

Price found:

{
"price": "+425"
}

Price found, with custom prices:

{
"price": "+425",
"correlation": 13.5633
}

Price found, with deep links:

{
"price": "+155",
"links": {
"desktop": "https://app.hardrock.bet/?deep_link_value=betslip/1944182123661099341,1697951214789722358",
"mobile": "hardrock://betslip/1944182123661099341,1697951214789722358"
}
}

Prices don't match:

{
"message": "Prices don't match"
}

Price not found:

{
"message": "Price not found"
}

Cannot be combined:

{
"message": "Cannot be combined"
}