Skip to main content
GET
/
api
/
v1
/
sports
/
{sportID}
/
dates
Get available dates for a sport
curl --request GET \
  --url 'https://therundown.io/api/v1/sports/{sportID}/dates?key='
{
  "dates": [
    "2026-02-13T00:30:00+0000",
    "2026-02-14T00:00:00+0000",
    "2026-02-15T00:00:00+0000"
  ]
}

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

Query Parameters

offset
integer
default:0

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

format
enum<string>
default:iso8601

Date format — iso8601 returns date strings, epoch returns Unix timestamps

Available options:
iso8601,
epoch

Response

200 - application/json

Dates

dates
string[]