get_player_game_logs
Retrieve bulk per-game player stat rows filtered by player, team, or event. Provides raw game log data for model training, with cursor-based pagination.
Instructions
Bulk per-game player stat rows (game logs) filtered by player, team, or event — the model-training data feed. At least one of player_id / team_id / event_id is required. Each row is one player-game with the raw stat JSON. Paginate with cursor.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max rows to return (page size). Default 50, server caps apply. | |
| cursor | No | Opaque pagination cursor. Pass the `nextCursor` from a previous response to fetch the next page. | |
| team_id | No | Team UUID (from list_teams). | |
| event_id | No | Event UUID (from list_events). | |
| player_id | No | Player UUID (from list_players). |