Skip to main content

Same Game Parlay API Documentation

Requirement

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

Description

This endpoint returns real-time same game parlay prices from sportsbooks.

API Endpoint

https://sgp.oddsblaze.com/v1/

Parameters

key (required)

Your OddsBlaze API key.

sportsbook (required)

The sportsbook id or name (e.g. draftkings or DraftKings). The Same Game Parlay API supports the following sportsbooks:

  • Bally Bet
  • Bally Bet (Colorado)
  • BetOnline (Prop Builder)
  • BetRivers
  • BetRivers (Colorado)
  • BetRivers (Ontario)
  • Betsafe (Ontario)
  • Bodog
  • Bodog (Prop Builder)
  • Bovada
  • Bovada (Prop Builder)
  • Casumo (Ontario)
  • DraftKings
  • DraftKings (Ontario)
  • FanDuel
  • FanDuel (Ontario)
  • Hard Rock Bet
  • Hard Rock Bet (New Jersey)
  • Ladbrokes (Australia)
  • NorthStar Bets (Ontario)
  • PointsBet
  • PointsBet (Ontario)
  • PrizePicks
  • PrizePicks (Demons)
  • PrizePicks (Goblins)
  • TAB (Australia)
  • theScore Bet (Ontario)
  • Unibet (United Kingdom)

sgp

The sgp fields from the odds. Separate sgp fields with a comma (e.g. R3dwVGxSc200RkNmd24vUVd3ODdlY0srVDYrbXlLUlFDdlFCaDZSMHdhbz0=,R3dwVGxSc200RkNmd24vUVd3ODdlZGxrelgySHZhRTVpUVhOTVNaaWNyOD0=).

price

The same game parlay price format (american or decimal).

POST Body

odds

If preferred, you have the option to include the sgp fields within the POST body instead of by URL parameter. Include only the sgp field from the odds:

{
"odds": [
{
"sgp": "bWhoT1hKUTlIRG4xTlRQbmhEZ3ZJaHdIZHhITnlwZVBLby8wb0xocnZuUFNPMFJwZ1V2MGk0NDI4SGNxK05FUg=="
},
{
"sgp": "MkhPRGgxRXFsd25jZ0dVZ3diTmoyUGRRblBEL0ordGNVaFlpZ1hWTDkreWJEL1Z0YXQ0TDN1UDUvTFp2a1NxQw=="
}
]
}

Example URL

https://sgp.oddsblaze.com/v1/?key=your_key&sportsbook=draftkings&sgp=bWhoT1hKUTlIRG4xTlRQbmhEZ3ZJaHdIZHhITnlwZVBLby8wb0xocnZuUFNPMFJwZ1V2MGk0NDI4SGNxK05FUg==,MkhPRGgxRXFsd25jZ0dVZ3diTmoyUGRRblBEL0ordGNVaFlpZ1hWTDkreWJEL1Z0YXQ0TDN1UDUvTFp2a1NxQw==

Example cURL Request

curl --location 'https://sgp.oddsblaze.com/v1/?key=your_key&sportsbook=draftkings' \
--data '{
"odds": [
{
"sgp": "bWhoT1hKUTlIRG4xTlRQbmhEZ3ZJaHdIZHhITnlwZVBLby8wb0xocnZuUFNPMFJwZ1V2MGk0NDI4SGNxK05FUg=="
},
{
"sgp": "MkhPRGgxRXFsd25jZ0dVZ3diTmoyUGRRblBEL0ordGNVaFlpZ1hWTDkreWJEL1Z0YXQ0TDN1UDUvTFp2a1NxQw=="
}
]
}'

Example Responses

Price found:

{
"price": "+850"
}

Price not found:

{
"price": null
}