Skip to main content

Historical SGPs API Documentation

Requirement

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

Description

This endpoint returns historical Same Game Parlays (SGPs), including CLV, OLV, and full line movement history.

API Endpoint

https://historical.sgp.oddsblaze.com/

Parameters

key (required)

Your OddsBlaze API key.

id (required)

The odds ids separated by a comma (e.g. BetMGM#69d0f154-485d-559f-b2cb-661ddd40022b#Moneyline#Atlanta Braves,BetMGM#69d0f154-485d-559f-b2cb-661ddd40022b#Total Runs#Over 4).

price

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

time_series

Include line movement history (&time_series).

locked

Include locked odds in time series (&locked).

Example URLs

Historical SGPs, CLV and OLV:

https://historical.sgp.oddsblaze.com/?key=your_key&id=BetMGM%2369d0f154-485d-559f-b2cb-661ddd40022b%23Total%20Runs%23Over%204,BetMGM%2369d0f154-485d-559f-b2cb-661ddd40022b%23Moneyline%23Atlanta%20Braves

Historical SGPs, CLV and OLV, line movement history:

https://historical.sgp.oddsblaze.com/?key=your_key&id=BetMGM%2369d0f154-485d-559f-b2cb-661ddd40022b%23Total%20Runs%23Over%204,BetMGM%2369d0f154-485d-559f-b2cb-661ddd40022b%23Moneyline%23Atlanta%20Braves&time_series

Historical SGPs, CLV and OLV, line movement history, locked odds included:

https://historical.sgp.oddsblaze.com/?key=your_key&id=BetMGM%2369d0f154-485d-559f-b2cb-661ddd40022b%23Total%20Runs%23Over%204,BetMGM%2369d0f154-485d-559f-b2cb-661ddd40022b%23Moneyline%23Atlanta%20Braves&time_series&locked

Example Response

{
"updated": "2026-05-29T19:07:32.931Z",
"id": [
"BetMGM#69d0f154-485d-559f-b2cb-661ddd40022b#Moneyline#Atlanta Braves",
"BetMGM#69d0f154-485d-559f-b2cb-661ddd40022b#Total Runs#Over 4"
],
"olv": {
"price": "-125",
"timestamp": 1780081307863
},
"clv": {
"price": "-130",
"timestamp": 1780081652931
},
"entries": [
{
"price": "-125",
"locked": false,
"timestamp": 1780081307863
},
{
"price": "-130",
"locked": false,
"timestamp": 1780081652931
}
]
}