Skip to main content
GET
/
api
/
v2
/
markets
/
delta
Get market price changes since a given ID
curl --request GET \
  --url 'https://therundown.io/api/v2/markets/delta?key='
{
  "last_id": 193500000,
  "deltas": [
    {
      "id": 193499998,
      "event_id": "09bfa53f8484a63e584398545c035932",
      "market_id": 1,
      "affiliate_id": 19,
      "participant_name": "Atlanta Hawks",
      "line_value": "0",
      "price": -112,
      "previous_price": -110,
      "is_main_line": true,
      "updated_at": "2026-02-12T00:10:43Z"
    },
    {
      "id": 193499999,
      "event_id": "09bfa53f8484a63e584398545c035932",
      "market_id": 3,
      "affiliate_id": 19,
      "participant_name": "Over",
      "line_value": "235.5",
      "price": -110,
      "previous_price": -108,
      "is_main_line": true,
      "updated_at": "2026-02-12T00:10:43Z"
    }
  ]
}

Authorizations

key
string
query
required

API key as query parameter

Query Parameters

last_id
integer<int64>
required

Return changes with ID greater than this value. Use 0 for initial fetch.

sport_id
integer

Filter by sport ID

affiliate_ids
string

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

market_ids
string

Comma-separated market IDs to filter

event_id
string

Filter by event ID

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

Response

200 - application/json

Market deltas

meta
object
deltas
object[]