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"
                    }
                  }
                }
              ]
            }
          ]
        }
      ]
    }
  ]
}

Authorizations

key
string
query
required

API key as query parameter

Path Parameters

eventID
string
required

Event ID (UUID format)

Query Parameters

market_ids
string
default:1,2,3

Comma-separated market IDs (max 24). Defaults to 1,2,3 (Moneyline, Spread, Total). 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.

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[]