{"id":15149148,"url":"https://github.com/jr1221/tba_api_dart_dio_client","last_synced_at":"2025-10-24T05:31:18.926Z","repository":{"id":50717471,"uuid":"357733479","full_name":"jr1221/tba_api_dart_dio_client","owner":"jr1221","description":"A The Blue Alliance API Client for dart or flutter applications.  Built using openapi dart dio generator with null safety and up to date dependencies.","archived":false,"fork":false,"pushed_at":"2023-05-14T01:58:17.000Z","size":667,"stargazers_count":5,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-30T23:51:12.440Z","etag":null,"topics":["dart","dart-library","first-robotics-competition","flutter","thebluealliance"],"latest_commit_sha":null,"homepage":"","language":"Dart","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jr1221.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-04-14T01:12:13.000Z","updated_at":"2024-04-15T11:47:53.000Z","dependencies_parsed_at":"2022-09-11T06:20:46.904Z","dependency_job_id":null,"html_url":"https://github.com/jr1221/tba_api_dart_dio_client","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jr1221%2Ftba_api_dart_dio_client","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jr1221%2Ftba_api_dart_dio_client/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jr1221%2Ftba_api_dart_dio_client/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jr1221%2Ftba_api_dart_dio_client/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jr1221","download_url":"https://codeload.github.com/jr1221/tba_api_dart_dio_client/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":237918710,"owners_count":19387305,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["dart","dart-library","first-robotics-competition","flutter","thebluealliance"],"created_at":"2024-09-26T13:42:14.757Z","updated_at":"2025-10-24T05:31:11.315Z","avatar_url":"https://github.com/jr1221.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"# tba_api_dart_dio_client (EXPERIMENTAL)\n# Overview \n\n Information and statistics about FIRST Robotics Competition teams and events. \n\n# Authentication \n\nAll endpoints require an Auth Key to be passed in the header `X-TBA-Auth-Key`. If you do not have an auth key yet, you can obtain one from your [Account Page](/account).\n\nThis Dart package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:\n\n- API version: 3.8.2\n- Build package: org.openapitools.codegen.languages.DartDioClientCodegen\n\n## Requirements\n\n* Dart 2.15.0+ or Flutter 2.8.0+\n* Dio 5.0.0+ (https://pub.dev/packages/dio)\n\n## Installation \u0026 Usage\n\n### pub.dev\nTo use the package from [pub.dev](https://pub.dev), please include the following in pubspec.yaml\n```yaml\ndependencies:\n  tba_api_dart_dio_client: 0.1.0\n```\n\n### Github\nIf this Dart package is published to Github, please include the following in pubspec.yaml\n```yaml\ndependencies:\n  tba_api_dart_dio_client:\n    git:\n      url: https://github.com/GIT_USER_ID/GIT_REPO_ID.git\n      #ref: main\n```\n\n### Local development\nTo use the package from your local drive, please include the following in pubspec.yaml\n```yaml\ndependencies:\n  tba_api_dart_dio_client:\n    path: /path/to/tba_api_dart_dio_client\n```\n\n## Getting Started\n\nPlease follow the [installation procedure](#installation--usage) and then run the following:\n\n```dart\nimport 'package:tba_api_dart_dio_client/tba_api_dart_dio_client.dart';\n\n\nfinal api = TbaApiDartDioClient().getDistrictApi();\nfinal String districtKey = districtKey_example; // String | TBA District Key, eg `2016fim`\nfinal String ifNoneMatch = ifNoneMatch_example; // String | Value of the `ETag` header in the most recently cached response by the client.\n\ntry {\n    final response = await api.getDistrictEvents(districtKey, ifNoneMatch);\n    print(response);\n} catch on DioError (e) {\n    print(\"Exception when calling DistrictApi-\u003egetDistrictEvents: $e\\n\");\n}\n\n```\n\n## Documentation for API Endpoints\n\nAll URIs are relative to *https://www.thebluealliance.com/api/v3*\n\nClass | Method | HTTP request | Description\n------------ | ------------- | ------------- | -------------\n[*DistrictApi*](doc/DistrictApi.md) | [**getDistrictEvents**](doc/DistrictApi.md#getdistrictevents) | **GET** /district/{district_key}/events | \n[*DistrictApi*](doc/DistrictApi.md) | [**getDistrictEventsKeys**](doc/DistrictApi.md#getdistricteventskeys) | **GET** /district/{district_key}/events/keys | \n[*DistrictApi*](doc/DistrictApi.md) | [**getDistrictEventsSimple**](doc/DistrictApi.md#getdistricteventssimple) | **GET** /district/{district_key}/events/simple | \n[*DistrictApi*](doc/DistrictApi.md) | [**getDistrictRankings**](doc/DistrictApi.md#getdistrictrankings) | **GET** /district/{district_key}/rankings | \n[*DistrictApi*](doc/DistrictApi.md) | [**getDistrictTeams**](doc/DistrictApi.md#getdistrictteams) | **GET** /district/{district_key}/teams | \n[*DistrictApi*](doc/DistrictApi.md) | [**getDistrictTeamsKeys**](doc/DistrictApi.md#getdistrictteamskeys) | **GET** /district/{district_key}/teams/keys | \n[*DistrictApi*](doc/DistrictApi.md) | [**getDistrictTeamsSimple**](doc/DistrictApi.md#getdistrictteamssimple) | **GET** /district/{district_key}/teams/simple | \n[*DistrictApi*](doc/DistrictApi.md) | [**getDistrictsByYear**](doc/DistrictApi.md#getdistrictsbyyear) | **GET** /districts/{year} | \n[*DistrictApi*](doc/DistrictApi.md) | [**getEventDistrictPoints**](doc/DistrictApi.md#geteventdistrictpoints) | **GET** /event/{event_key}/district_points | \n[*DistrictApi*](doc/DistrictApi.md) | [**getTeamDistricts**](doc/DistrictApi.md#getteamdistricts) | **GET** /team/{team_key}/districts | \n[*EventApi*](doc/EventApi.md) | [**getDistrictEvents**](doc/EventApi.md#getdistrictevents) | **GET** /district/{district_key}/events | \n[*EventApi*](doc/EventApi.md) | [**getDistrictEventsKeys**](doc/EventApi.md#getdistricteventskeys) | **GET** /district/{district_key}/events/keys | \n[*EventApi*](doc/EventApi.md) | [**getDistrictEventsSimple**](doc/EventApi.md#getdistricteventssimple) | **GET** /district/{district_key}/events/simple | \n[*EventApi*](doc/EventApi.md) | [**getEvent**](doc/EventApi.md#getevent) | **GET** /event/{event_key} | \n[*EventApi*](doc/EventApi.md) | [**getEventAlliances**](doc/EventApi.md#geteventalliances) | **GET** /event/{event_key}/alliances | \n[*EventApi*](doc/EventApi.md) | [**getEventAwards**](doc/EventApi.md#geteventawards) | **GET** /event/{event_key}/awards | \n[*EventApi*](doc/EventApi.md) | [**getEventDistrictPoints**](doc/EventApi.md#geteventdistrictpoints) | **GET** /event/{event_key}/district_points | \n[*EventApi*](doc/EventApi.md) | [**getEventInsights**](doc/EventApi.md#geteventinsights) | **GET** /event/{event_key}/insights | \n[*EventApi*](doc/EventApi.md) | [**getEventMatchTimeseries**](doc/EventApi.md#geteventmatchtimeseries) | **GET** /event/{event_key}/matches/timeseries | \n[*EventApi*](doc/EventApi.md) | [**getEventMatches**](doc/EventApi.md#geteventmatches) | **GET** /event/{event_key}/matches | \n[*EventApi*](doc/EventApi.md) | [**getEventMatchesKeys**](doc/EventApi.md#geteventmatcheskeys) | **GET** /event/{event_key}/matches/keys | \n[*EventApi*](doc/EventApi.md) | [**getEventMatchesSimple**](doc/EventApi.md#geteventmatchessimple) | **GET** /event/{event_key}/matches/simple | \n[*EventApi*](doc/EventApi.md) | [**getEventOPRs**](doc/EventApi.md#geteventoprs) | **GET** /event/{event_key}/oprs | \n[*EventApi*](doc/EventApi.md) | [**getEventPredictions**](doc/EventApi.md#geteventpredictions) | **GET** /event/{event_key}/predictions | \n[*EventApi*](doc/EventApi.md) | [**getEventRankings**](doc/EventApi.md#geteventrankings) | **GET** /event/{event_key}/rankings | \n[*EventApi*](doc/EventApi.md) | [**getEventSimple**](doc/EventApi.md#geteventsimple) | **GET** /event/{event_key}/simple | \n[*EventApi*](doc/EventApi.md) | [**getEventTeams**](doc/EventApi.md#geteventteams) | **GET** /event/{event_key}/teams | \n[*EventApi*](doc/EventApi.md) | [**getEventTeamsKeys**](doc/EventApi.md#geteventteamskeys) | **GET** /event/{event_key}/teams/keys | \n[*EventApi*](doc/EventApi.md) | [**getEventTeamsSimple**](doc/EventApi.md#geteventteamssimple) | **GET** /event/{event_key}/teams/simple | \n[*EventApi*](doc/EventApi.md) | [**getEventTeamsStatuses**](doc/EventApi.md#geteventteamsstatuses) | **GET** /event/{event_key}/teams/statuses | \n[*EventApi*](doc/EventApi.md) | [**getEventsByYear**](doc/EventApi.md#geteventsbyyear) | **GET** /events/{year} | \n[*EventApi*](doc/EventApi.md) | [**getEventsByYearKeys**](doc/EventApi.md#geteventsbyyearkeys) | **GET** /events/{year}/keys | \n[*EventApi*](doc/EventApi.md) | [**getEventsByYearSimple**](doc/EventApi.md#geteventsbyyearsimple) | **GET** /events/{year}/simple | \n[*EventApi*](doc/EventApi.md) | [**getTeamEventAwards**](doc/EventApi.md#getteameventawards) | **GET** /team/{team_key}/event/{event_key}/awards | \n[*EventApi*](doc/EventApi.md) | [**getTeamEventMatches**](doc/EventApi.md#getteameventmatches) | **GET** /team/{team_key}/event/{event_key}/matches | \n[*EventApi*](doc/EventApi.md) | [**getTeamEventMatchesKeys**](doc/EventApi.md#getteameventmatcheskeys) | **GET** /team/{team_key}/event/{event_key}/matches/keys | \n[*EventApi*](doc/EventApi.md) | [**getTeamEventMatchesSimple**](doc/EventApi.md#getteameventmatchessimple) | **GET** /team/{team_key}/event/{event_key}/matches/simple | \n[*EventApi*](doc/EventApi.md) | [**getTeamEventStatus**](doc/EventApi.md#getteameventstatus) | **GET** /team/{team_key}/event/{event_key}/status | \n[*EventApi*](doc/EventApi.md) | [**getTeamEvents**](doc/EventApi.md#getteamevents) | **GET** /team/{team_key}/events | \n[*EventApi*](doc/EventApi.md) | [**getTeamEventsByYear**](doc/EventApi.md#getteameventsbyyear) | **GET** /team/{team_key}/events/{year} | \n[*EventApi*](doc/EventApi.md) | [**getTeamEventsByYearKeys**](doc/EventApi.md#getteameventsbyyearkeys) | **GET** /team/{team_key}/events/{year}/keys | \n[*EventApi*](doc/EventApi.md) | [**getTeamEventsByYearSimple**](doc/EventApi.md#getteameventsbyyearsimple) | **GET** /team/{team_key}/events/{year}/simple | \n[*EventApi*](doc/EventApi.md) | [**getTeamEventsKeys**](doc/EventApi.md#getteameventskeys) | **GET** /team/{team_key}/events/keys | \n[*EventApi*](doc/EventApi.md) | [**getTeamEventsSimple**](doc/EventApi.md#getteameventssimple) | **GET** /team/{team_key}/events/simple | \n[*EventApi*](doc/EventApi.md) | [**getTeamEventsStatusesByYear**](doc/EventApi.md#getteameventsstatusesbyyear) | **GET** /team/{team_key}/events/{year}/statuses | \n[*ListApi*](doc/ListApi.md) | [**getDistrictEvents**](doc/ListApi.md#getdistrictevents) | **GET** /district/{district_key}/events | \n[*ListApi*](doc/ListApi.md) | [**getDistrictEventsKeys**](doc/ListApi.md#getdistricteventskeys) | **GET** /district/{district_key}/events/keys | \n[*ListApi*](doc/ListApi.md) | [**getDistrictEventsSimple**](doc/ListApi.md#getdistricteventssimple) | **GET** /district/{district_key}/events/simple | \n[*ListApi*](doc/ListApi.md) | [**getDistrictRankings**](doc/ListApi.md#getdistrictrankings) | **GET** /district/{district_key}/rankings | \n[*ListApi*](doc/ListApi.md) | [**getDistrictTeams**](doc/ListApi.md#getdistrictteams) | **GET** /district/{district_key}/teams | \n[*ListApi*](doc/ListApi.md) | [**getDistrictTeamsKeys**](doc/ListApi.md#getdistrictteamskeys) | **GET** /district/{district_key}/teams/keys | \n[*ListApi*](doc/ListApi.md) | [**getDistrictTeamsSimple**](doc/ListApi.md#getdistrictteamssimple) | **GET** /district/{district_key}/teams/simple | \n[*ListApi*](doc/ListApi.md) | [**getEventTeams**](doc/ListApi.md#geteventteams) | **GET** /event/{event_key}/teams | \n[*ListApi*](doc/ListApi.md) | [**getEventTeamsKeys**](doc/ListApi.md#geteventteamskeys) | **GET** /event/{event_key}/teams/keys | \n[*ListApi*](doc/ListApi.md) | [**getEventTeamsSimple**](doc/ListApi.md#geteventteamssimple) | **GET** /event/{event_key}/teams/simple | \n[*ListApi*](doc/ListApi.md) | [**getEventTeamsStatuses**](doc/ListApi.md#geteventteamsstatuses) | **GET** /event/{event_key}/teams/statuses | \n[*ListApi*](doc/ListApi.md) | [**getEventsByYear**](doc/ListApi.md#geteventsbyyear) | **GET** /events/{year} | \n[*ListApi*](doc/ListApi.md) | [**getEventsByYearKeys**](doc/ListApi.md#geteventsbyyearkeys) | **GET** /events/{year}/keys | \n[*ListApi*](doc/ListApi.md) | [**getEventsByYearSimple**](doc/ListApi.md#geteventsbyyearsimple) | **GET** /events/{year}/simple | \n[*ListApi*](doc/ListApi.md) | [**getTeamEventsStatusesByYear**](doc/ListApi.md#getteameventsstatusesbyyear) | **GET** /team/{team_key}/events/{year}/statuses | \n[*ListApi*](doc/ListApi.md) | [**getTeams**](doc/ListApi.md#getteams) | **GET** /teams/{page_num} | \n[*ListApi*](doc/ListApi.md) | [**getTeamsByYear**](doc/ListApi.md#getteamsbyyear) | **GET** /teams/{year}/{page_num} | \n[*ListApi*](doc/ListApi.md) | [**getTeamsByYearKeys**](doc/ListApi.md#getteamsbyyearkeys) | **GET** /teams/{year}/{page_num}/keys | \n[*ListApi*](doc/ListApi.md) | [**getTeamsByYearSimple**](doc/ListApi.md#getteamsbyyearsimple) | **GET** /teams/{year}/{page_num}/simple | \n[*ListApi*](doc/ListApi.md) | [**getTeamsKeys**](doc/ListApi.md#getteamskeys) | **GET** /teams/{page_num}/keys | \n[*ListApi*](doc/ListApi.md) | [**getTeamsSimple**](doc/ListApi.md#getteamssimple) | **GET** /teams/{page_num}/simple | \n[*MatchApi*](doc/MatchApi.md) | [**getEventMatchTimeseries**](doc/MatchApi.md#geteventmatchtimeseries) | **GET** /event/{event_key}/matches/timeseries | \n[*MatchApi*](doc/MatchApi.md) | [**getEventMatches**](doc/MatchApi.md#geteventmatches) | **GET** /event/{event_key}/matches | \n[*MatchApi*](doc/MatchApi.md) | [**getEventMatchesKeys**](doc/MatchApi.md#geteventmatcheskeys) | **GET** /event/{event_key}/matches/keys | \n[*MatchApi*](doc/MatchApi.md) | [**getEventMatchesSimple**](doc/MatchApi.md#geteventmatchessimple) | **GET** /event/{event_key}/matches/simple | \n[*MatchApi*](doc/MatchApi.md) | [**getMatch**](doc/MatchApi.md#getmatch) | **GET** /match/{match_key} | \n[*MatchApi*](doc/MatchApi.md) | [**getMatchSimple**](doc/MatchApi.md#getmatchsimple) | **GET** /match/{match_key}/simple | \n[*MatchApi*](doc/MatchApi.md) | [**getMatchTimeseries**](doc/MatchApi.md#getmatchtimeseries) | **GET** /match/{match_key}/timeseries | \n[*MatchApi*](doc/MatchApi.md) | [**getMatchZebra**](doc/MatchApi.md#getmatchzebra) | **GET** /match/{match_key}/zebra_motionworks | \n[*MatchApi*](doc/MatchApi.md) | [**getTeamEventMatches**](doc/MatchApi.md#getteameventmatches) | **GET** /team/{team_key}/event/{event_key}/matches | \n[*MatchApi*](doc/MatchApi.md) | [**getTeamEventMatchesKeys**](doc/MatchApi.md#getteameventmatcheskeys) | **GET** /team/{team_key}/event/{event_key}/matches/keys | \n[*MatchApi*](doc/MatchApi.md) | [**getTeamEventMatchesSimple**](doc/MatchApi.md#getteameventmatchessimple) | **GET** /team/{team_key}/event/{event_key}/matches/simple | \n[*MatchApi*](doc/MatchApi.md) | [**getTeamMatchesByYear**](doc/MatchApi.md#getteammatchesbyyear) | **GET** /team/{team_key}/matches/{year} | \n[*MatchApi*](doc/MatchApi.md) | [**getTeamMatchesByYearKeys**](doc/MatchApi.md#getteammatchesbyyearkeys) | **GET** /team/{team_key}/matches/{year}/keys | \n[*MatchApi*](doc/MatchApi.md) | [**getTeamMatchesByYearSimple**](doc/MatchApi.md#getteammatchesbyyearsimple) | **GET** /team/{team_key}/matches/{year}/simple | \n[*TBAApi*](doc/TBAApi.md) | [**getStatus**](doc/TBAApi.md#getstatus) | **GET** /status | \n[*TeamApi*](doc/TeamApi.md) | [**getDistrictRankings**](doc/TeamApi.md#getdistrictrankings) | **GET** /district/{district_key}/rankings | \n[*TeamApi*](doc/TeamApi.md) | [**getDistrictTeams**](doc/TeamApi.md#getdistrictteams) | **GET** /district/{district_key}/teams | \n[*TeamApi*](doc/TeamApi.md) | [**getDistrictTeamsKeys**](doc/TeamApi.md#getdistrictteamskeys) | **GET** /district/{district_key}/teams/keys | \n[*TeamApi*](doc/TeamApi.md) | [**getDistrictTeamsSimple**](doc/TeamApi.md#getdistrictteamssimple) | **GET** /district/{district_key}/teams/simple | \n[*TeamApi*](doc/TeamApi.md) | [**getEventTeams**](doc/TeamApi.md#geteventteams) | **GET** /event/{event_key}/teams | \n[*TeamApi*](doc/TeamApi.md) | [**getEventTeamsKeys**](doc/TeamApi.md#geteventteamskeys) | **GET** /event/{event_key}/teams/keys | \n[*TeamApi*](doc/TeamApi.md) | [**getEventTeamsSimple**](doc/TeamApi.md#geteventteamssimple) | **GET** /event/{event_key}/teams/simple | \n[*TeamApi*](doc/TeamApi.md) | [**getEventTeamsStatuses**](doc/TeamApi.md#geteventteamsstatuses) | **GET** /event/{event_key}/teams/statuses | \n[*TeamApi*](doc/TeamApi.md) | [**getTeam**](doc/TeamApi.md#getteam) | **GET** /team/{team_key} | \n[*TeamApi*](doc/TeamApi.md) | [**getTeamAwards**](doc/TeamApi.md#getteamawards) | **GET** /team/{team_key}/awards | \n[*TeamApi*](doc/TeamApi.md) | [**getTeamAwardsByYear**](doc/TeamApi.md#getteamawardsbyyear) | **GET** /team/{team_key}/awards/{year} | \n[*TeamApi*](doc/TeamApi.md) | [**getTeamDistricts**](doc/TeamApi.md#getteamdistricts) | **GET** /team/{team_key}/districts | \n[*TeamApi*](doc/TeamApi.md) | [**getTeamEventAwards**](doc/TeamApi.md#getteameventawards) | **GET** /team/{team_key}/event/{event_key}/awards | \n[*TeamApi*](doc/TeamApi.md) | [**getTeamEventMatches**](doc/TeamApi.md#getteameventmatches) | **GET** /team/{team_key}/event/{event_key}/matches | \n[*TeamApi*](doc/TeamApi.md) | [**getTeamEventMatchesKeys**](doc/TeamApi.md#getteameventmatcheskeys) | **GET** /team/{team_key}/event/{event_key}/matches/keys | \n[*TeamApi*](doc/TeamApi.md) | [**getTeamEventMatchesSimple**](doc/TeamApi.md#getteameventmatchessimple) | **GET** /team/{team_key}/event/{event_key}/matches/simple | \n[*TeamApi*](doc/TeamApi.md) | [**getTeamEventStatus**](doc/TeamApi.md#getteameventstatus) | **GET** /team/{team_key}/event/{event_key}/status | \n[*TeamApi*](doc/TeamApi.md) | [**getTeamEvents**](doc/TeamApi.md#getteamevents) | **GET** /team/{team_key}/events | \n[*TeamApi*](doc/TeamApi.md) | [**getTeamEventsByYear**](doc/TeamApi.md#getteameventsbyyear) | **GET** /team/{team_key}/events/{year} | \n[*TeamApi*](doc/TeamApi.md) | [**getTeamEventsByYearKeys**](doc/TeamApi.md#getteameventsbyyearkeys) | **GET** /team/{team_key}/events/{year}/keys | \n[*TeamApi*](doc/TeamApi.md) | [**getTeamEventsByYearSimple**](doc/TeamApi.md#getteameventsbyyearsimple) | **GET** /team/{team_key}/events/{year}/simple | \n[*TeamApi*](doc/TeamApi.md) | [**getTeamEventsKeys**](doc/TeamApi.md#getteameventskeys) | **GET** /team/{team_key}/events/keys | \n[*TeamApi*](doc/TeamApi.md) | [**getTeamEventsSimple**](doc/TeamApi.md#getteameventssimple) | **GET** /team/{team_key}/events/simple | \n[*TeamApi*](doc/TeamApi.md) | [**getTeamEventsStatusesByYear**](doc/TeamApi.md#getteameventsstatusesbyyear) | **GET** /team/{team_key}/events/{year}/statuses | \n[*TeamApi*](doc/TeamApi.md) | [**getTeamMatchesByYear**](doc/TeamApi.md#getteammatchesbyyear) | **GET** /team/{team_key}/matches/{year} | \n[*TeamApi*](doc/TeamApi.md) | [**getTeamMatchesByYearKeys**](doc/TeamApi.md#getteammatchesbyyearkeys) | **GET** /team/{team_key}/matches/{year}/keys | \n[*TeamApi*](doc/TeamApi.md) | [**getTeamMatchesByYearSimple**](doc/TeamApi.md#getteammatchesbyyearsimple) | **GET** /team/{team_key}/matches/{year}/simple | \n[*TeamApi*](doc/TeamApi.md) | [**getTeamMediaByTag**](doc/TeamApi.md#getteammediabytag) | **GET** /team/{team_key}/media/tag/{media_tag} | \n[*TeamApi*](doc/TeamApi.md) | [**getTeamMediaByTagYear**](doc/TeamApi.md#getteammediabytagyear) | **GET** /team/{team_key}/media/tag/{media_tag}/{year} | \n[*TeamApi*](doc/TeamApi.md) | [**getTeamMediaByYear**](doc/TeamApi.md#getteammediabyyear) | **GET** /team/{team_key}/media/{year} | \n[*TeamApi*](doc/TeamApi.md) | [**getTeamRobots**](doc/TeamApi.md#getteamrobots) | **GET** /team/{team_key}/robots | \n[*TeamApi*](doc/TeamApi.md) | [**getTeamSimple**](doc/TeamApi.md#getteamsimple) | **GET** /team/{team_key}/simple | \n[*TeamApi*](doc/TeamApi.md) | [**getTeamSocialMedia**](doc/TeamApi.md#getteamsocialmedia) | **GET** /team/{team_key}/social_media | \n[*TeamApi*](doc/TeamApi.md) | [**getTeamYearsParticipated**](doc/TeamApi.md#getteamyearsparticipated) | **GET** /team/{team_key}/years_participated | \n[*TeamApi*](doc/TeamApi.md) | [**getTeams**](doc/TeamApi.md#getteams) | **GET** /teams/{page_num} | \n[*TeamApi*](doc/TeamApi.md) | [**getTeamsByYear**](doc/TeamApi.md#getteamsbyyear) | **GET** /teams/{year}/{page_num} | \n[*TeamApi*](doc/TeamApi.md) | [**getTeamsByYearKeys**](doc/TeamApi.md#getteamsbyyearkeys) | **GET** /teams/{year}/{page_num}/keys | \n[*TeamApi*](doc/TeamApi.md) | [**getTeamsByYearSimple**](doc/TeamApi.md#getteamsbyyearsimple) | **GET** /teams/{year}/{page_num}/simple | \n[*TeamApi*](doc/TeamApi.md) | [**getTeamsKeys**](doc/TeamApi.md#getteamskeys) | **GET** /teams/{page_num}/keys | \n[*TeamApi*](doc/TeamApi.md) | [**getTeamsSimple**](doc/TeamApi.md#getteamssimple) | **GET** /teams/{page_num}/simple | \n\n\n## Documentation For Models\n\n - [APIStatus](doc/APIStatus.md)\n - [APIStatusAppVersion](doc/APIStatusAppVersion.md)\n - [Award](doc/Award.md)\n - [AwardRecipient](doc/AwardRecipient.md)\n - [DistrictList](doc/DistrictList.md)\n - [DistrictRanking](doc/DistrictRanking.md)\n - [DistrictRankingEventPointsInner](doc/DistrictRankingEventPointsInner.md)\n - [EliminationAlliance](doc/EliminationAlliance.md)\n - [EliminationAllianceBackup](doc/EliminationAllianceBackup.md)\n - [EliminationAllianceStatus](doc/EliminationAllianceStatus.md)\n - [Event](doc/Event.md)\n - [EventDistrictPoints](doc/EventDistrictPoints.md)\n - [EventDistrictPointsPointsValue](doc/EventDistrictPointsPointsValue.md)\n - [EventDistrictPointsTiebreakersValue](doc/EventDistrictPointsTiebreakersValue.md)\n - [EventInsights](doc/EventInsights.md)\n - [EventInsights2016](doc/EventInsights2016.md)\n - [EventInsights2017](doc/EventInsights2017.md)\n - [EventInsights2018](doc/EventInsights2018.md)\n - [EventOPRs](doc/EventOPRs.md)\n - [EventRanking](doc/EventRanking.md)\n - [EventRankingExtraStatsInfoInner](doc/EventRankingExtraStatsInfoInner.md)\n - [EventRankingRankingsInner](doc/EventRankingRankingsInner.md)\n - [EventRankingSortOrderInfoInner](doc/EventRankingSortOrderInfoInner.md)\n - [EventSimple](doc/EventSimple.md)\n - [Match](doc/Match.md)\n - [MatchAlliance](doc/MatchAlliance.md)\n - [MatchScoreBreakdown2015](doc/MatchScoreBreakdown2015.md)\n - [MatchScoreBreakdown2015Alliance](doc/MatchScoreBreakdown2015Alliance.md)\n - [MatchScoreBreakdown2016](doc/MatchScoreBreakdown2016.md)\n - [MatchScoreBreakdown2016Alliance](doc/MatchScoreBreakdown2016Alliance.md)\n - [MatchScoreBreakdown2017](doc/MatchScoreBreakdown2017.md)\n - [MatchScoreBreakdown2017Alliance](doc/MatchScoreBreakdown2017Alliance.md)\n - [MatchScoreBreakdown2018](doc/MatchScoreBreakdown2018.md)\n - [MatchScoreBreakdown2018Alliance](doc/MatchScoreBreakdown2018Alliance.md)\n - [MatchScoreBreakdown2019](doc/MatchScoreBreakdown2019.md)\n - [MatchScoreBreakdown2019Alliance](doc/MatchScoreBreakdown2019Alliance.md)\n - [MatchScoreBreakdown2020](doc/MatchScoreBreakdown2020.md)\n - [MatchScoreBreakdown2020Alliance](doc/MatchScoreBreakdown2020Alliance.md)\n - [MatchScoreBreakdown2022](doc/MatchScoreBreakdown2022.md)\n - [MatchScoreBreakdown2022Alliance](doc/MatchScoreBreakdown2022Alliance.md)\n - [MatchScoreBreakdown2023](doc/MatchScoreBreakdown2023.md)\n - [MatchScoreBreakdown2023Alliance](doc/MatchScoreBreakdown2023Alliance.md)\n - [MatchScoreBreakdown2023AllianceAutoCommunity](doc/MatchScoreBreakdown2023AllianceAutoCommunity.md)\n - [MatchScoreBreakdown2023AllianceLinksInner](doc/MatchScoreBreakdown2023AllianceLinksInner.md)\n - [MatchSimple](doc/MatchSimple.md)\n - [MatchSimpleAlliances](doc/MatchSimpleAlliances.md)\n - [MatchTimeseries2018](doc/MatchTimeseries2018.md)\n - [MatchVideosInner](doc/MatchVideosInner.md)\n - [Media](doc/Media.md)\n - [Team](doc/Team.md)\n - [TeamEventStatus](doc/TeamEventStatus.md)\n - [TeamEventStatusAlliance](doc/TeamEventStatusAlliance.md)\n - [TeamEventStatusAllianceBackup](doc/TeamEventStatusAllianceBackup.md)\n - [TeamEventStatusPlayoff](doc/TeamEventStatusPlayoff.md)\n - [TeamEventStatusRank](doc/TeamEventStatusRank.md)\n - [TeamEventStatusRankRanking](doc/TeamEventStatusRankRanking.md)\n - [TeamEventStatusRankSortOrderInfoInner](doc/TeamEventStatusRankSortOrderInfoInner.md)\n - [TeamRobot](doc/TeamRobot.md)\n - [TeamSimple](doc/TeamSimple.md)\n - [WLTRecord](doc/WLTRecord.md)\n - [Webcast](doc/Webcast.md)\n - [Zebra](doc/Zebra.md)\n - [ZebraAlliances](doc/ZebraAlliances.md)\n - [ZebraTeam](doc/ZebraTeam.md)\n\n\n## Documentation For Authorization\n\n\n## apiKey\n\n- **Type**: API key\n- **API key parameter name**: X-TBA-Auth-Key\n- **Location**: HTTP header\n\n\n## Author\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjr1221%2Ftba_api_dart_dio_client","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjr1221%2Ftba_api_dart_dio_client","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjr1221%2Ftba_api_dart_dio_client/lists"}