Version: 1.0.0
/api/v1/schedules/{date} - All sports schedules/api/v1/schedule/{sport}/{date} - Single sport schedule
/curl/v1/schedules/{date} - All sports schedules/curl/v1/schedule/{sport}/{date} - Single sport schedule
/api/v1/scores/{date} - All sports scores/api/v1/scores/{sport}/{date} - Single sport scores
/curl/v1/scores/{date} - All sports scores/curl/v1/scores/{sport}/{date} - Single sport scores
/api/v1/standings/{sport} - Single sport standings
/curl/v1/standings/{sport} - Single sport standings
/api/v1/season-info/{league} - Season phase dates for a league
mlb nba nfl nhl wnba ipl mlc all
Note: Use all as the sport parameter to get data for all sports combined.
IPL and MLC data is provided by CricketPuff.
The {date} parameter accepts:
today - Today's datetomorrow - Tomorrow's dateyesterday - Yesterday's dateYYYY-MM-DD - ISO format (e.g., 2025-01-15)YYYYMMDD - Compact format (e.g., 20250115)M/D/YYYY - US format (e.g., 1/15/2025)MM/DD/YYYY - US format with leading zeros (e.g., 01/15/2025)Change timezone using the tz query parameter: ?tz=<timezone>
| Parameter | Description |
|---|---|
?tz=et |
Eastern Time |
?tz=pt |
Pacific Time |
?tz=ct |
Central Time |
?tz=mt |
Mountain Time |
?tz=America/New_York |
Full timezone name |
?tz=Europe/London |
International timezone |
| Aliases | Timezone |
|---|---|
et, est, edt, eastern |
US/Eastern |
pt, pst, pdt, pacific |
US/Pacific |
ct, cst, cdt, central |
US/Central |
mt, mst, mdt, mountain |
US/Mountain |
akst, akdt, alaska, ak |
US/Alaska |
hst, hawaii, hi |
US/Hawaii |
Default: US/Pacific (Pacific Time)
/api/help or /api/v1/help - JSON formatted help/curl/help or /curl/v1/help - Plain text help/help - HTML formatted help (this page)# Get today's NBA schedule (JSON) curl http://localhost:34180/api/v1/schedule/nba/today # Get today's MLB scores (cURL format, Eastern Time) curl http://localhost:34180/curl/v1/scores/mlb/today?tz=et # Get NBA standings (JSON) curl http://localhost:34180/api/v1/standings/nba # Get MLB season info curl http://localhost:34180/api/v1/season-info/mlb # Get IPL schedule (cricket) curl http://localhost:34180/curl/v1/schedule/ipl/today