Skip to main content
GET
/
api
/
v2
/
events
/
{eventID}
/
markets
/
history
Get market price history for an event
curl --request GET \
  --url 'https://therundown.io/api/v2/events/{eventID}/markets/history?key='
{
  "history": [
    {
      "market_line_price_id": "192868821",
      "market_id": 1,
      "affiliate_id": 19,
      "participant_name": "Atlanta Hawks",
      "line_value": "0",
      "price": -105,
      "is_main_line": true,
      "updated_at": "2026-02-10T14:00:00Z"
    },
    {
      "market_line_price_id": "192868822",
      "market_id": 1,
      "affiliate_id": 19,
      "participant_name": "Atlanta Hawks",
      "line_value": "0",
      "price": -110,
      "is_main_line": true,
      "updated_at": "2026-02-11T09:30:00Z"
    }
  ]
}

Authorizations

key
string
query
required

API key as query parameter

Path Parameters

eventID
string
required

Event ID (UUID format)

Query Parameters

market_ids
string

Comma-separated market IDs to filter

affiliate_ids
string

Comma-separated sportsbook/affiliate IDs to filter. Common values include DraftKings (19), FanDuel (23), BetMGM (22), Bovada (2), Pinnacle (3).

from
string<date-time>

Start time (RFC3339)

to
string<date-time>

End time (RFC3339)

limit
integer
default:1000
Required range: x <= 5000

Response

200 - application/json

Market price history

meta
object
history
object[]