mysportsfeeds_games
Retrieve games for a league season, including scores and venue details. Supports filtering by date, team, or play status.
Instructions
Games for a season in one league, with scores and venue.
Returns: {lastUpdatedOn, games:[{schedule:{id, week, startTime, awayTeam:{id, abbreviation}, homeTeam:{…}, venue, playedStatus}, score:{awayScoreTotal, homeScoreTotal, quarters|periods|innings:[…], currentQuarter, currentIntermission}}]} — SHAPE FROM VENDOR DOCS. NOTE identity lives under schedule and the result under score: a game is TWO nested objects, not one flat one.
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: This NFL season's games {"league": "nfl", "season": "current"}
Auth: needs your own key in MYSPORTSFEEDS_API_KEY.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| date | No | Filter, e.g. '20240115' or 'from-20240101-to-20240131'. | |
| team | No | Team abbreviations. | |
| league | Yes | League. One of: nfl, nba, mlb, nhl. Required — part of the URL path. | |
| season | Yes | 'current', 'latest', or explicit: NFL/MLB use '2023-regular', NBA/NHL use '2023-2024-regular'. Required — part of the URL path. | |
| status | No | unplayed, in-progress, final. |