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.
POST Body
Send a JSON array in the request body, using the sgp value from each odds object.
[
"AXO8bKgfGRc9MusGAkXJRPdODA6_MCkarrZNY69HNsk=",
"UcFTPZsGI7jvJRjmFHd7sXkg_-tLNYWizd09B5uEVZk=",
"ZXsWuMuEJghWTchrNlHB659lXD4cPz7U82kz1REeO60="
]
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="
]'
4-leg same game parlay:
curl -X POST "https://draftkings.sgp.oddsblaze.com/?key=your_key" \
-H "Content-Type: application/json" \
-d '[
"q6L477iWkDeGigKwbVEi8g4m0zBXzTsieuqm-PJOHq8%3D",
"rzBoSqXyWFvFSieI3pK6SFF02flulbe48LrhRkiZp9s%3D",
"XQmaxSkQ23FIm1bBOoSMcA%3D%3D",
"x7VfpgubqqOGJM80cqsEUA%3D%3D"
]'
Example Responses
Price found:
{
"price": "+425"
}
Price found, with deep links:
{
"price": "+155",
"links": {
"desktop": "https://app.hardrock.bet/?deep_link_value=betslip/1944182123661099341,1697951214789722358",
"mobile": "hardrock://betslip/1944182123661099341,1697951214789722358"
}
}
Price not found:
{
"message": "Price not found"
}
Cannot be combined:
{
"message": "Cannot be combined"
}