balldontlie_nba_games
Retrieve NBA game schedules and scores by date, season, team, or postseason status, with pagination support for filtering and comparing matchups.
Instructions
NBA games by date, season or team.
Returns: {data:[{id, date, season, status, period, time, postseason, home_team_score, visitor_team_score, home_team:{…}, visitor_team:{…}}], meta:{next_cursor}} — SHAPE FROM VENDOR DOCS. Note the away side is visitor_team, not away_team.
NOTE: this shape is from the vendor's documentation and has NOT been verified against a live response (we hold no key for this provider). Treat it as approximate — inspect the actual payload before relying on a field name.
Example: One date's games {"dates": ["2024-01-15"]}
Auth: needs your own key in BALLDONTLIE_API_KEY.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| dates | No | Specific dates, YYYY-MM-DD. | |
| cursor | No | Cursor from the previous page. | |
| seasons | No | Season START years — the 2023-24 season is 2023. | |
| per_page | No | Page size (max 100). | |
| team_ids | No | Team ids. | |
| postseason | No | true = playoffs only. |