Skip to main content
GET
/
api
/
v2
/
sports
/
{sportID}
/
openers
/
{date}
Get opening lines for a sport and date
curl --request GET \
  --url 'https://therundown.io/api/v2/sports/{sportID}/openers/{date}?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": -105,
                      "is_main_line": true,
                      "updated_at": "2026-02-11T22:00:00Z"
                    }
                  }
                }
              ]
            }
          ]
        }
      ]
    }
  ]
}

Authorizations

key
string
query
required

API key as query parameter

Path Parameters

sportID
integer
required

Sport ID. Common values: 1=NCAAF, 2=NFL, 3=MLB, 4=NBA, 5=NCAAB, 6=NHL, 7=UFC, 8=WNBA, 9=CFL, 10=MLS, 11=EPL, 16=UEFA Champions League

date
string<date>
required

Query Parameters

offset
integer
default:0

Timezone offset in hours from UTC (e.g., -5 for EST)

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>

Hide closed lines

Available options:
true,
false

Response

200 - application/json

Events with opening market prices

meta
object
events
object[]