Skip to main content
GET
/
api
/
v2
/
sports
/
{sportID}
/
dates
Get available dates for a sport
curl --request GET \
  --url 'https://therundown.io/api/v2/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

UTC offset in minutes for the date boundary. Use 300 for US Central, 240 for Eastern, 360 for Mountain, 420 for Pacific. Without this, the API day boundary is midnight UTC.

Example:

300

format
enum<string>
default:iso8601

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

Available options:
iso8601,
epoch

Response

200 - application/json

List of dates

dates
string<date>[]