Skip to main content
GET
/
api
/
v2
/
events
/
{eventID}
/
openers
Get opening prices for an event
curl --request GET \
  --url 'https://therundown.io/api/v2/events/{eventID}/openers?key='
{
  "meta": null,
  "events": [
    {
      "event_id": "09bfa53f8484a63e584398545c035932",
      "sport_id": 4,
      "event_date": "2026-02-12T00:00:00Z",
      "teams": [
        {
          "team_id": 11,
          "name": "Atlanta",
          "mascot": "Hawks",
          "abbreviation": "ATL",
          "is_away": true,
          "is_home": false
        },
        {
          "team_id": 12,
          "name": "Charlotte",
          "mascot": "Hornets",
          "abbreviation": "CHA",
          "is_away": false,
          "is_home": true
        }
      ],
      "markets": [
        {
          "market_id": 1,
          "name": "moneyline",
          "participants": [
            {
              "name": "Atlanta Hawks",
              "type": "TYPE_TEAM",
              "lines": [
                {
                  "value": "0",
                  "prices": {
                    "19": {
                      "price": -120,
                      "is_main_line": true,
                      "updated_at": "2026-02-10T15:00:00Z"
                    }
                  }
                }
              ]
            }
          ]
        }
      ]
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.therundown.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

key
string
query
required

API key as query parameter

Path Parameters

eventID
string
required

Canonical V2 event ID from the event_id field returned by event endpoints

Query Parameters

market_ids
string
default:1,2,3

Comma-separated market IDs. Defaults to 1,2,3 (Moneyline, Spread, Total). Limit: 12 market IDs per request. IDs beyond the 12th are silently ignored. Common IDs: 1=Moneyline, 2=Spread, 3=Total, 29=Player Points, 35=Player Rebounds, 38=Three Pointers, 39=Player Assists, 93=Player PRA, 94=Team Totals. Live variants: 41=Live ML, 42=Live Spread, 43=Live Total. If you need more than 12 markets, make multiple requests.

affiliate_ids
string

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

main_line
enum<string>
default:false

Only return main lines (primary odds, not alternates)

Available options:
true,
false
hide_closed
enum<string>
Available options:
true,
false

Response

200 - application/json

Event with opening prices

meta
object
events
object[]