get_game_stats
Retrieve per-game player statistics (goals, assists, shots, saves, faceoffs, turnovers) for a specified game. Identify the game by opponent name, date, or index.
Instructions
Get per-game player statistics for a single specified game: goals, assists, shots, saves, faceoffs, and turnovers for every player, filtered to that one game only. Use the game parameter to identify which game: "latest" returns the most recent game, an opponent name (e.g. "Beaverton") returns the most recent game vs that opponent, a date string (e.g. "May 18") targets that specific game, or a numeric index (0 = most recent, 1 = second most recent, etc.) selects by position. If an opponent was played multiple times in the season, a warning is logged and the most recent match is returned — use a date or index to select a specific game.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| game | No | Game identifier: "latest" (default), opponent name, date (e.g. "May 18"), or 0-based index newest-first. Use a date when the same opponent appears multiple times. | |
| season | No | Season identifier. Defaults to current season. | |
| refresh | No | Set true to bypass cache and re-fetch from Hudl. |