get_team_matches
Retrieve per-team match contributions across FRC matches. Filter by team, year, event, or week to build scouting timelines, compare alliance partners, or compute per-team averages.
Instructions
List per-team match contributions across many FIRST Robotics Competition (FRC) matches. Each row is one team's involvement in one match (alliance, pre-match EPA, predicted contribution, outcome). Filter by team (one team's entire match log), year, event, week (0-8), match (a single match key - returns one row per team in that match), and elim (true for elimination matches only). Sort with metric/ascending and paginate with limit/offset. Use this to build a scouting timeline ("every match team 254 played in 2024 with their EPA contribution"), compare alliance partners, or compute per-team averages over a range of matches.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| team | No | Team number (no prefix), e.g. 86 | |
| year | No | Four-digit year (2002 onwards) | |
| event | No | Event key, e.g. 2024flor | |
| week | No | Week of the competition season. 8 is CMP. | |
| match | No | Match key, e.g. 2024flor_qm20 | |
| elim | No | Whether the match is an elimination match. | |
| metric | No | How to sort the returned values. Any column in the table is valid. | |
| ascending | No | Whether to sort in ascending order. Default is ascending. | |
| limit | No | Maximum number of results to return (1-1000). Default is 1000. | |
| offset | No | Offset from the first result to return. |