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='
{
  "meta": {
    "delta_last_id": "193500000",
    "count": 2,
    "has_more": false
  },
  "deltas": [
    {
      "id": 193499998,
      "event_id": "09bfa53f8484a63e584398545c035932",
      "sport_id": 4,
      "affiliate_id": 19,
      "market_id": 1,
      "market_name": "moneyline",
      "participant_id": 11,
      "participant_type": "TYPE_TEAM",
      "participant_name": "Atlanta Hawks",
      "line": "",
      "price": "-112",
      "previous_price": "-110",
      "change_type": "price_change",
      "updated_at": "2026-02-12T00:10:43Z"
    },
    {
      "id": 193499999,
      "event_id": "09bfa53f8484a63e584398545c035932",
      "sport_id": 4,
      "affiliate_id": 19,
      "market_id": 3,
      "market_name": "totals",
      "participant_id": 1001,
      "participant_type": "TYPE_RESULT",
      "participant_name": "Over",
      "line": "235.5",
      "price": "-110",
      "previous_price": "-108",
      "change_type": "price_change",
      "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. Obtain the initial cursor from the meta.delta_last_id field in the v2 events response. Cursors older than 30 minutes are rejected.

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

Market deltas

meta
object
deltas
object[]