espn_scoreboard
Retrieve game schedules, live scores, clocks, and statuses for any league on a given date. Input sport and league slugs to get event IDs needed for detailed game summaries or core API data.
Instructions
Scoreboard for one league: today's (or a given date's) games with status,
clock, live scores and event ids. The fastest way to get the event ids that
espn_game_summary / espn_core_call (event_*) need. sport+league are slugs, e.g.
football/nfl, basketball/nba, soccer/eng.1.
Returns: {leagues:[...], events:[{id, name, status, competitions:[{competitors:[{team, score}]}]}]}
Example: Today's NFL scoreboard. {"sport": "football", "league": "nfl"}
Auth: none needed.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| week | No | Week number (NFL/college football). | |
| dates | No | Date filter YYYYMMDD (or a range YYYYMMDD-YYYYMMDD); omit for today. | |
| sport | Yes | Sport slug, e.g. football, basketball, baseball, hockey, soccer. Required — part of the URL path. | |
| league | Yes | League slug, e.g. nfl, nba, mlb, nhl, eng.1. Required — part of the URL path. | |
| seasontype | No | Season phase: 1=pre, 2=regular, 3=post, 4=off. |