---
name: frc-events
description: "FRC Events API skill. Use when working with FRC Events for v3.0. Covers 19 endpoints."
version: 1.0.0
generator: lapsh
---

# FRC Events

## Auth
Basic

## Base URL
https://frc-api.firstinspires.org/v3.0

## Setup
1. Configure auth: Basic
2. GET /v3.0/ -- root level call with no parameters
3. Explore available endpoints below

## Endpoints
19 endpoints across 1 group. See references/api-spec.lap for full details.

### V3.0
| Method | Path | Description |
|--------|------|-------------|
| GET | /v3.0/ | Root level call with no parameters |
| GET | /v3.0/:season | The season summary API returns a high level glance of a particular FRC season |
| GET | /v3.0/:season/events | The event listings API returns all FRC official district and regional events in a particular season |
| GET | /v3.0/:season/districts | The district listings API returns all FRC official districts of a particular season |
| GET | /v3.0/:season/teams | The team listings API returns all FRC official teams in a particular season |
| GET | /v3.0/:season/avatars | This endpoint applies only to the 2018 or later seasons |
| GET | /v3.0/:season/awards/event/:eventCode | The event awards API returns details about awards presented at a particular event in a particular season |
| GET | /v3.0/:season/awards/list | The award listings API returns a listing of the various awards that can be distributed in the requested season |
| GET | /v3.0/:season/awards/team/:teamNumber | The team awards API returns details about awards presented for a particular team in a particular season |
| GET | /v3.0/:season/awards/eventteam/:eventCode/:teamNumber | The event team awards API returns details about awards presented at a particular event in a particular season for a particular team |
| GET | /v3.0/:season/scores/:eventCode/:tournamentLevel | The score details API returns the score detail for all matches of a particular event in a particular season and a particular tournament level |
| GET | /v3.0/:season/matches/:eventCode | The match results API returns the match results for all matches of a particular event in a particular season |
| GET | /v3.0/:season/rankings/district/qualPerformanceCalculation | Qual Performance Points is one of three endpoints to assist teams in figuring out how to improve their performance to achieve the desired district ranking placement |
| GET | /v3.0/:season/rankings/district/allianceSelectionCalculation | Alliance Selection Points is one of three endpoints to assist teams in figuring out how to improve their performance to achieve the desired district ranking placement |
| GET | /v3.0/:season/rankings/district/playoffAdvancementCalculation | Playoff Advancement Points is one of three endpoints to assist teams in figuring out how to improve their performance to achieve the desired district ranking placement |
| GET | /v3.0/:season/rankings/:eventCode | The rankings API returns team ranking detail from a particular event in a particular season |
| GET | /v3.0/:season/rankings/district | The district rankings API returns team ranking detail from a particular team in a particular season |
| GET | /v3.0/:season/schedule/:eventCode | The schedule API returns the match schedule for the desired tournament level of a particular event in a particular season |
| GET | /v3.0/:season/alliances/:eventCode | The alliances API returns details about alliance selection at a particular event in a particular season |

## Common Questions
Match user requests to endpoints in references/api-spec.lap. Key patterns:
- "List all v3.0?" -> GET /v3.0/
- "List all :season?" -> GET /v3.0/:season
- "List all events?" -> GET /v3.0/:season/events
- "List all districts?" -> GET /v3.0/:season/districts
- "List all teams?" -> GET /v3.0/:season/teams
- "List all avatars?" -> GET /v3.0/:season/avatars
- "List all :eventCode?" -> GET /v3.0/:season/awards/event/:eventCode
- "List all list?" -> GET /v3.0/:season/awards/list
- "List all :teamNumber?" -> GET /v3.0/:season/awards/team/:teamNumber
- "List all :tournamentLevel?" -> GET /v3.0/:season/scores/:eventCode/:tournamentLevel
- "List all qualPerformanceCalculation?" -> GET /v3.0/:season/rankings/district/qualPerformanceCalculation
- "List all allianceSelectionCalculation?" -> GET /v3.0/:season/rankings/district/allianceSelectionCalculation
- "List all playoffAdvancementCalculation?" -> GET /v3.0/:season/rankings/district/playoffAdvancementCalculation
- "List all district?" -> GET /v3.0/:season/rankings/district
- "How to authenticate?" -> See Auth section above

## Response Tips
- Check response schemas in references/api-spec.lap for field details

## References
- Full spec: See references/api-spec.lap for complete endpoint details, parameter tables, and response schemas

> Generated from the official API spec by [LAP](https://lap.sh)
