Skip to main content
GET
/
api
/
v1
/
sports
/
{sportID}
/
openers
/
{date}
Get opening lines for a sport and date
curl --request GET \
  --url 'https://therundown.io/api/v1/sports/{sportID}/openers/{date}?key='
{
  "events": [
    {
      "event_id": "09bfa53f8484a63e584398545c035932",
      "sport_id": 4,
      "event_date": "2026-02-12T00:00:00Z",
      "teams_normalized": [
        {
          "team_id": 11,
          "name": "Atlanta",
          "mascot": "Hawks",
          "abbreviation": "ATL",
          "is_away": true,
          "is_home": false
        }
      ],
      "lines": {
        "4": {
          "moneyline": {
            "moneyline_away": -120,
            "moneyline_home": 100
          }
        }
      }
    }
  ]
}

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)

conference_id
integer
division_id
integer
affiliate_ids
string

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

exclude_status
string
include
enum<string>
Available options:
all_periods

Response

200 - application/json

Events with opening lines

meta
object
events
object[]