mysportsfeeds_player_gamelogs
Retrieve per-game player statistics for a season across NFL, NBA, MLB, or NHL. Filter by team, player, or date to analyze individual performance in each game.
Instructions
Per-game statistics for players across a season — the cleanest surface this API has.
Returns: {gamelogs:[{game:{id, startTime, awayTeamAbbreviation, homeTeamAbbreviation}, player:{id, firstName, lastName, position, jerseyNumber}, team:{id, abbreviation}, stats:{…sport-specific groups…}}]} — SHAPE FROM VENDOR DOCS. stats groups differ per sport (passing/rushing for NFL, offense/rebounds for NBA).
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: A team's player game logs {"league": "nba", "season": "current", "team": ["LAL"]}
Auth: needs your own key in MYSPORTSFEEDS_API_KEY.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| date | No | Date filter. | |
| team | No | Team abbreviations. | |
| league | Yes | League. One of: nfl, nba, mlb, nhl. Required — part of the URL path. | |
| player | No | Player ids or 'firstname-lastname' slugs. | |
| season | Yes | Season string. Required — part of the URL path. |