commit a5d93f0c42f8f2054994d143cdeca6eba03fb7a2 Author: Julien Lengrand-Lambert Date: Thu Feb 2 10:01:08 2023 +0100 Adds client diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f5af940 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +.openapi-generator +.openapi-generator-ignore diff --git a/Apis/BenchmarksApi.http b/Apis/BenchmarksApi.http new file mode 100644 index 0000000..eb13f6f --- /dev/null +++ b/Apis/BenchmarksApi.http @@ -0,0 +1,5 @@ +## BenchmarksApi + +### GET /benchmarks +# @name benchmarksGet +GET http://api.opendota.com/api/benchmarks diff --git a/Apis/ConstantsApi.http b/Apis/ConstantsApi.http new file mode 100644 index 0000000..b36b845 --- /dev/null +++ b/Apis/ConstantsApi.http @@ -0,0 +1,9 @@ +## ConstantsApi + +### GET /constants +# @name constantsGet +GET http://api.opendota.com/api/constants + +### GET /constants +# @name constantsResourceGet +GET http://api.opendota.com/api/constants/{{resource}} diff --git a/Apis/DistributionsApi.http b/Apis/DistributionsApi.http new file mode 100644 index 0000000..48d2172 --- /dev/null +++ b/Apis/DistributionsApi.http @@ -0,0 +1,5 @@ +## DistributionsApi + +### GET /distributions +# @name distributionsGet +GET http://api.opendota.com/api/distributions diff --git a/Apis/ExplorerApi.http b/Apis/ExplorerApi.http new file mode 100644 index 0000000..8572dba --- /dev/null +++ b/Apis/ExplorerApi.http @@ -0,0 +1,5 @@ +## ExplorerApi + +### GET /explorer +# @name explorerGet +GET http://api.opendota.com/api/explorer diff --git a/Apis/FindMatchesApi.http b/Apis/FindMatchesApi.http new file mode 100644 index 0000000..26fc9f5 --- /dev/null +++ b/Apis/FindMatchesApi.http @@ -0,0 +1,5 @@ +## FindMatchesApi + +### GET / +# @name findMatchesGet +GET http://api.opendota.com/api/findMatches diff --git a/Apis/HealthApi.http b/Apis/HealthApi.http new file mode 100644 index 0000000..a4a027e --- /dev/null +++ b/Apis/HealthApi.http @@ -0,0 +1,5 @@ +## HealthApi + +### GET /health +# @name healthGet +GET http://api.opendota.com/api/health diff --git a/Apis/HeroStatsApi.http b/Apis/HeroStatsApi.http new file mode 100644 index 0000000..3178866 --- /dev/null +++ b/Apis/HeroStatsApi.http @@ -0,0 +1,5 @@ +## HeroStatsApi + +### GET /heroStats +# @name heroStatsGet +GET http://api.opendota.com/api/heroStats diff --git a/Apis/HeroesApi.http b/Apis/HeroesApi.http new file mode 100644 index 0000000..2ad229d --- /dev/null +++ b/Apis/HeroesApi.http @@ -0,0 +1,25 @@ +## HeroesApi + +### GET /heroes +# @name heroesGet +GET http://api.opendota.com/api/heroes + +### GET /heroes/{hero_id}/durations +# @name heroesHeroIdDurationsGet +GET http://api.opendota.com/api/heroes/{{hero_id}}/durations + +### GET /heroes/{hero_id}/itemPopularity +# @name heroesHeroIdItemPopularityGet +GET http://api.opendota.com/api/heroes/{{hero_id}}/itemPopularity + +### GET /heroes/{hero_id}/matches +# @name heroesHeroIdMatchesGet +GET http://api.opendota.com/api/heroes/{{hero_id}}/matches + +### GET /heroes/{hero_id}/matchups +# @name heroesHeroIdMatchupsGet +GET http://api.opendota.com/api/heroes/{{hero_id}}/matchups + +### GET /heroes/{hero_id}/players +# @name heroesHeroIdPlayersGet +GET http://api.opendota.com/api/heroes/{{hero_id}}/players diff --git a/Apis/LeaguesApi.http b/Apis/LeaguesApi.http new file mode 100644 index 0000000..385e82a --- /dev/null +++ b/Apis/LeaguesApi.http @@ -0,0 +1,17 @@ +## LeaguesApi + +### GET /leagues +# @name leaguesGet +GET http://api.opendota.com/api/leagues + +### GET /leagues/{league_id} +# @name leaguesLeagueIdGet +GET http://api.opendota.com/api/leagues/{{league_id}} + +### GET /leagues/{league_id}/matches +# @name leaguesLeagueIdMatchesGet +GET http://api.opendota.com/api/leagues/{{league_id}}/matches + +### GET /leagues/{league_id}/teams +# @name leaguesLeagueIdTeamsGet +GET http://api.opendota.com/api/leagues/{{league_id}}/teams diff --git a/Apis/LiveApi.http b/Apis/LiveApi.http new file mode 100644 index 0000000..2ac3203 --- /dev/null +++ b/Apis/LiveApi.http @@ -0,0 +1,5 @@ +## LiveApi + +### GET /live +# @name liveGet +GET http://api.opendota.com/api/live diff --git a/Apis/MatchesApi.http b/Apis/MatchesApi.http new file mode 100644 index 0000000..b28a3e2 --- /dev/null +++ b/Apis/MatchesApi.http @@ -0,0 +1,5 @@ +## MatchesApi + +### GET /matches/{match_id} +# @name matchesMatchIdGet +GET http://api.opendota.com/api/matches/{{match_id}} diff --git a/Apis/MetadataApi.http b/Apis/MetadataApi.http new file mode 100644 index 0000000..dfa6c35 --- /dev/null +++ b/Apis/MetadataApi.http @@ -0,0 +1,5 @@ +## MetadataApi + +### GET /metadata +# @name metadataGet +GET http://api.opendota.com/api/metadata diff --git a/Apis/ParsedMatchesApi.http b/Apis/ParsedMatchesApi.http new file mode 100644 index 0000000..8255203 --- /dev/null +++ b/Apis/ParsedMatchesApi.http @@ -0,0 +1,5 @@ +## ParsedMatchesApi + +### GET /parsedMatches +# @name parsedMatchesGet +GET http://api.opendota.com/api/parsedMatches diff --git a/Apis/PlayersApi.http b/Apis/PlayersApi.http new file mode 100644 index 0000000..82195b5 --- /dev/null +++ b/Apis/PlayersApi.http @@ -0,0 +1,61 @@ +## PlayersApi + +### GET /players/{account_id}/counts +# @name playersAccountIdCountsGet +GET http://api.opendota.com/api/players/{{account_id}}/counts + +### GET /players/{account_id} +# @name playersAccountIdGet +GET http://api.opendota.com/api/players/{{account_id}} + +### GET /players/{account_id}/heroes +# @name playersAccountIdHeroesGet +GET http://api.opendota.com/api/players/{{account_id}}/heroes + +### GET /players/{account_id}/histograms +# @name playersAccountIdHistogramsFieldGet +GET http://api.opendota.com/api/players/{{account_id}}/histograms/{{field}} + +### GET /players/{account_id}/matches +# @name playersAccountIdMatchesGet +GET http://api.opendota.com/api/players/{{account_id}}/matches + +### GET /players/{account_id}/peers +# @name playersAccountIdPeersGet +GET http://api.opendota.com/api/players/{{account_id}}/peers + +### GET /players/{account_id}/pros +# @name playersAccountIdProsGet +GET http://api.opendota.com/api/players/{{account_id}}/pros + +### GET /players/{account_id}/rankings +# @name playersAccountIdRankingsGet +GET http://api.opendota.com/api/players/{{account_id}}/rankings + +### GET /players/{account_id}/ratings +# @name playersAccountIdRatingsGet +GET http://api.opendota.com/api/players/{{account_id}}/ratings + +### GET /players/{account_id}/recentMatches +# @name playersAccountIdRecentMatchesGet +GET http://api.opendota.com/api/players/{{account_id}}/recentMatches + +### POST /players/{account_id}/refresh +# @name playersAccountIdRefreshPost +POST http://api.opendota.com/api/players/{{account_id}}/refresh + +### GET /players/{account_id}/totals +# @name playersAccountIdTotalsGet +GET http://api.opendota.com/api/players/{{account_id}}/totals + +### GET /players/{account_id}/wardmap +# @name playersAccountIdWardmapGet +GET http://api.opendota.com/api/players/{{account_id}}/wardmap + +### GET /players/{account_id}/wl +# @name playersAccountIdWlGet +GET http://api.opendota.com/api/players/{{account_id}}/wl + +### GET /players/{account_id}/wordcloud +# @name playersAccountIdWordcloudGet +GET http://api.opendota.com/api/players/{{account_id}}/wordcloud diff --git a/Apis/PlayersByRankApi.http b/Apis/PlayersByRankApi.http new file mode 100644 index 0000000..3234c8c --- /dev/null +++ b/Apis/PlayersByRankApi.http @@ -0,0 +1,5 @@ +## PlayersByRankApi + +### GET /playersByRank +# @name playersByRankGet +GET http://api.opendota.com/api/playersByRank diff --git a/Apis/ProMatchesApi.http b/Apis/ProMatchesApi.http new file mode 100644 index 0000000..006e596 --- /dev/null +++ b/Apis/ProMatchesApi.http @@ -0,0 +1,5 @@ +## ProMatchesApi + +### GET /proMatches +# @name proMatchesGet +GET http://api.opendota.com/api/proMatches diff --git a/Apis/ProPlayersApi.http b/Apis/ProPlayersApi.http new file mode 100644 index 0000000..d849643 --- /dev/null +++ b/Apis/ProPlayersApi.http @@ -0,0 +1,5 @@ +## ProPlayersApi + +### GET /proPlayers +# @name proPlayersGet +GET http://api.opendota.com/api/proPlayers diff --git a/Apis/PublicMatchesApi.http b/Apis/PublicMatchesApi.http new file mode 100644 index 0000000..c587b4a --- /dev/null +++ b/Apis/PublicMatchesApi.http @@ -0,0 +1,5 @@ +## PublicMatchesApi + +### GET /publicMatches +# @name publicMatchesGet +GET http://api.opendota.com/api/publicMatches diff --git a/Apis/RankingsApi.http b/Apis/RankingsApi.http new file mode 100644 index 0000000..0f744c5 --- /dev/null +++ b/Apis/RankingsApi.http @@ -0,0 +1,5 @@ +## RankingsApi + +### GET /rankings +# @name rankingsGet +GET http://api.opendota.com/api/rankings diff --git a/Apis/RecordsApi.http b/Apis/RecordsApi.http new file mode 100644 index 0000000..5f125c2 --- /dev/null +++ b/Apis/RecordsApi.http @@ -0,0 +1,5 @@ +## RecordsApi + +### GET /records/{field} +# @name recordsFieldGet +GET http://api.opendota.com/api/records/{{field}} diff --git a/Apis/ReplaysApi.http b/Apis/ReplaysApi.http new file mode 100644 index 0000000..86d1a6d --- /dev/null +++ b/Apis/ReplaysApi.http @@ -0,0 +1,5 @@ +## ReplaysApi + +### GET /replays +# @name replaysGet +GET http://api.opendota.com/api/replays diff --git a/Apis/RequestApi.http b/Apis/RequestApi.http new file mode 100644 index 0000000..ccf0b2e --- /dev/null +++ b/Apis/RequestApi.http @@ -0,0 +1,9 @@ +## RequestApi + +### GET /request/{jobId} +# @name requestJobIdGet +GET http://api.opendota.com/api/request/{{jobId}} + +### POST /request/{match_id} +# @name requestMatchIdPost +POST http://api.opendota.com/api/request/{{match_id}} diff --git a/Apis/ScenariosApi.http b/Apis/ScenariosApi.http new file mode 100644 index 0000000..c197ab0 --- /dev/null +++ b/Apis/ScenariosApi.http @@ -0,0 +1,13 @@ +## ScenariosApi + +### GET /scenarios/itemTimings +# @name scenariosItemTimingsGet +GET http://api.opendota.com/api/scenarios/itemTimings + +### GET /scenarios/laneRoles +# @name scenariosLaneRolesGet +GET http://api.opendota.com/api/scenarios/laneRoles + +### GET /scenarios/misc +# @name scenariosMiscGet +GET http://api.opendota.com/api/scenarios/misc diff --git a/Apis/SchemaApi.http b/Apis/SchemaApi.http new file mode 100644 index 0000000..093da14 --- /dev/null +++ b/Apis/SchemaApi.http @@ -0,0 +1,5 @@ +## SchemaApi + +### GET /schema +# @name schemaGet +GET http://api.opendota.com/api/schema diff --git a/Apis/SearchApi.http b/Apis/SearchApi.http new file mode 100644 index 0000000..54750be --- /dev/null +++ b/Apis/SearchApi.http @@ -0,0 +1,5 @@ +## SearchApi + +### GET /search +# @name searchGet +GET http://api.opendota.com/api/search diff --git a/Apis/StatusApi.http b/Apis/StatusApi.http new file mode 100644 index 0000000..4a3bbb8 --- /dev/null +++ b/Apis/StatusApi.http @@ -0,0 +1,5 @@ +## StatusApi + +### GET /status +# @name statusGet +GET http://api.opendota.com/api/status diff --git a/Apis/TeamsApi.http b/Apis/TeamsApi.http new file mode 100644 index 0000000..2708895 --- /dev/null +++ b/Apis/TeamsApi.http @@ -0,0 +1,21 @@ +## TeamsApi + +### GET /teams +# @name teamsGet +GET http://api.opendota.com/api/teams + +### GET /teams/{team_id} +# @name teamsTeamIdGet +GET http://api.opendota.com/api/teams/{{team_id}} + +### GET /teams/{team_id}/heroes +# @name teamsTeamIdHeroesGet +GET http://api.opendota.com/api/teams/{{team_id}}/heroes + +### GET /teams/{team_id}/matches +# @name teamsTeamIdMatchesGet +GET http://api.opendota.com/api/teams/{{team_id}}/matches + +### GET /teams/{team_id}/players +# @name teamsTeamIdPlayersGet +GET http://api.opendota.com/api/teams/{{team_id}}/players diff --git a/README.md b/README.md new file mode 100644 index 0000000..036885b --- /dev/null +++ b/README.md @@ -0,0 +1,76 @@ +# OpenDota API - Jetbrains API Client + +## OpenAPI File description + +# Introduction The OpenDota API provides Dota 2 related data including advanced match data extracted from match replays. You can find data that can be used to convert hero and ability IDs and other information provided by the API from the [dotaconstants](https://github.com/odota/dotaconstants) repository. **Beginning 2018-04-22, the OpenDota API is limited to 50,000 free calls per month and 60 requests/minute** We offer a Premium Tier with unlimited API calls and higher rate limits. Check out the [API page](https://www.opendota.com/api-keys) to learn more. + +* API basepath : [http://api.opendota.com/api](http://api.opendota.com/api) +* Version : 19.0.0 + +## Documentation for API Endpoints + +All URIs are relative to *http://api.opendota.com/api*, but will link to the `.http` file that contains the endpoint definition + +Class | Method | HTTP request | Description +------------ | ------------- | ------------- | ------------- +*BenchmarksApi* | [**benchmarksGet**](Apis/BenchmarksApi.http#benchmarksget) | **GET** /benchmarks | GET /benchmarks +*ConstantsApi* | [**constantsGet**](Apis/ConstantsApi.http#constantsget) | **GET** /constants | GET /constants +*ConstantsApi* | [**constantsResourceGet**](Apis/ConstantsApi.http#constantsresourceget) | **GET** /constants/{resource} | GET /constants +*DistributionsApi* | [**distributionsGet**](Apis/DistributionsApi.http#distributionsget) | **GET** /distributions | GET /distributions +*ExplorerApi* | [**explorerGet**](Apis/ExplorerApi.http#explorerget) | **GET** /explorer | GET /explorer +*FindMatchesApi* | [**findMatchesGet**](Apis/FindMatchesApi.http#findmatchesget) | **GET** /findMatches | GET / +*HealthApi* | [**healthGet**](Apis/HealthApi.http#healthget) | **GET** /health | GET /health +*HeroStatsApi* | [**heroStatsGet**](Apis/HeroStatsApi.http#herostatsget) | **GET** /heroStats | GET /heroStats +*HeroesApi* | [**heroesGet**](Apis/HeroesApi.http#heroesget) | **GET** /heroes | GET /heroes +*HeroesApi* | [**heroesHeroIdDurationsGet**](Apis/HeroesApi.http#heroesheroiddurationsget) | **GET** /heroes/{hero_id}/durations | GET /heroes/{hero_id}/durations +*HeroesApi* | [**heroesHeroIdItemPopularityGet**](Apis/HeroesApi.http#heroesheroiditempopularityget) | **GET** /heroes/{hero_id}/itemPopularity | GET /heroes/{hero_id}/itemPopularity +*HeroesApi* | [**heroesHeroIdMatchesGet**](Apis/HeroesApi.http#heroesheroidmatchesget) | **GET** /heroes/{hero_id}/matches | GET /heroes/{hero_id}/matches +*HeroesApi* | [**heroesHeroIdMatchupsGet**](Apis/HeroesApi.http#heroesheroidmatchupsget) | **GET** /heroes/{hero_id}/matchups | GET /heroes/{hero_id}/matchups +*HeroesApi* | [**heroesHeroIdPlayersGet**](Apis/HeroesApi.http#heroesheroidplayersget) | **GET** /heroes/{hero_id}/players | GET /heroes/{hero_id}/players +*LeaguesApi* | [**leaguesGet**](Apis/LeaguesApi.http#leaguesget) | **GET** /leagues | GET /leagues +*LeaguesApi* | [**leaguesLeagueIdGet**](Apis/LeaguesApi.http#leaguesleagueidget) | **GET** /leagues/{league_id} | GET /leagues/{league_id} +*LeaguesApi* | [**leaguesLeagueIdMatchesGet**](Apis/LeaguesApi.http#leaguesleagueidmatchesget) | **GET** /leagues/{league_id}/matches | GET /leagues/{league_id}/matches +*LeaguesApi* | [**leaguesLeagueIdTeamsGet**](Apis/LeaguesApi.http#leaguesleagueidteamsget) | **GET** /leagues/{league_id}/teams | GET /leagues/{league_id}/teams +*LiveApi* | [**liveGet**](Apis/LiveApi.http#liveget) | **GET** /live | GET /live +*MatchesApi* | [**matchesMatchIdGet**](Apis/MatchesApi.http#matchesmatchidget) | **GET** /matches/{match_id} | GET /matches/{match_id} +*MetadataApi* | [**metadataGet**](Apis/MetadataApi.http#metadataget) | **GET** /metadata | GET /metadata +*ParsedMatchesApi* | [**parsedMatchesGet**](Apis/ParsedMatchesApi.http#parsedmatchesget) | **GET** /parsedMatches | GET /parsedMatches +*PlayersApi* | [**playersAccountIdCountsGet**](Apis/PlayersApi.http#playersaccountidcountsget) | **GET** /players/{account_id}/counts | GET /players/{account_id}/counts +*PlayersApi* | [**playersAccountIdGet**](Apis/PlayersApi.http#playersaccountidget) | **GET** /players/{account_id} | GET /players/{account_id} +*PlayersApi* | [**playersAccountIdHeroesGet**](Apis/PlayersApi.http#playersaccountidheroesget) | **GET** /players/{account_id}/heroes | GET /players/{account_id}/heroes +*PlayersApi* | [**playersAccountIdHistogramsFieldGet**](Apis/PlayersApi.http#playersaccountidhistogramsfieldget) | **GET** /players/{account_id}/histograms/{field} | GET /players/{account_id}/histograms +*PlayersApi* | [**playersAccountIdMatchesGet**](Apis/PlayersApi.http#playersaccountidmatchesget) | **GET** /players/{account_id}/matches | GET /players/{account_id}/matches +*PlayersApi* | [**playersAccountIdPeersGet**](Apis/PlayersApi.http#playersaccountidpeersget) | **GET** /players/{account_id}/peers | GET /players/{account_id}/peers +*PlayersApi* | [**playersAccountIdProsGet**](Apis/PlayersApi.http#playersaccountidprosget) | **GET** /players/{account_id}/pros | GET /players/{account_id}/pros +*PlayersApi* | [**playersAccountIdRankingsGet**](Apis/PlayersApi.http#playersaccountidrankingsget) | **GET** /players/{account_id}/rankings | GET /players/{account_id}/rankings +*PlayersApi* | [**playersAccountIdRatingsGet**](Apis/PlayersApi.http#playersaccountidratingsget) | **GET** /players/{account_id}/ratings | GET /players/{account_id}/ratings +*PlayersApi* | [**playersAccountIdRecentMatchesGet**](Apis/PlayersApi.http#playersaccountidrecentmatchesget) | **GET** /players/{account_id}/recentMatches | GET /players/{account_id}/recentMatches +*PlayersApi* | [**playersAccountIdRefreshPost**](Apis/PlayersApi.http#playersaccountidrefreshpost) | **POST** /players/{account_id}/refresh | POST /players/{account_id}/refresh +*PlayersApi* | [**playersAccountIdTotalsGet**](Apis/PlayersApi.http#playersaccountidtotalsget) | **GET** /players/{account_id}/totals | GET /players/{account_id}/totals +*PlayersApi* | [**playersAccountIdWardmapGet**](Apis/PlayersApi.http#playersaccountidwardmapget) | **GET** /players/{account_id}/wardmap | GET /players/{account_id}/wardmap +*PlayersApi* | [**playersAccountIdWlGet**](Apis/PlayersApi.http#playersaccountidwlget) | **GET** /players/{account_id}/wl | GET /players/{account_id}/wl +*PlayersApi* | [**playersAccountIdWordcloudGet**](Apis/PlayersApi.http#playersaccountidwordcloudget) | **GET** /players/{account_id}/wordcloud | GET /players/{account_id}/wordcloud +*PlayersByRankApi* | [**playersByRankGet**](Apis/PlayersByRankApi.http#playersbyrankget) | **GET** /playersByRank | GET /playersByRank +*ProMatchesApi* | [**proMatchesGet**](Apis/ProMatchesApi.http#promatchesget) | **GET** /proMatches | GET /proMatches +*ProPlayersApi* | [**proPlayersGet**](Apis/ProPlayersApi.http#proplayersget) | **GET** /proPlayers | GET /proPlayers +*PublicMatchesApi* | [**publicMatchesGet**](Apis/PublicMatchesApi.http#publicmatchesget) | **GET** /publicMatches | GET /publicMatches +*RankingsApi* | [**rankingsGet**](Apis/RankingsApi.http#rankingsget) | **GET** /rankings | GET /rankings +*RecordsApi* | [**recordsFieldGet**](Apis/RecordsApi.http#recordsfieldget) | **GET** /records/{field} | GET /records/{field} +*ReplaysApi* | [**replaysGet**](Apis/ReplaysApi.http#replaysget) | **GET** /replays | GET /replays +*RequestApi* | [**requestJobIdGet**](Apis/RequestApi.http#requestjobidget) | **GET** /request/{jobId} | GET /request/{jobId} +*RequestApi* | [**requestMatchIdPost**](Apis/RequestApi.http#requestmatchidpost) | **POST** /request/{match_id} | POST /request/{match_id} +*ScenariosApi* | [**scenariosItemTimingsGet**](Apis/ScenariosApi.http#scenariositemtimingsget) | **GET** /scenarios/itemTimings | GET /scenarios/itemTimings +*ScenariosApi* | [**scenariosLaneRolesGet**](Apis/ScenariosApi.http#scenarioslanerolesget) | **GET** /scenarios/laneRoles | GET /scenarios/laneRoles +*ScenariosApi* | [**scenariosMiscGet**](Apis/ScenariosApi.http#scenariosmiscget) | **GET** /scenarios/misc | GET /scenarios/misc +*SchemaApi* | [**schemaGet**](Apis/SchemaApi.http#schemaget) | **GET** /schema | GET /schema +*SearchApi* | [**searchGet**](Apis/SearchApi.http#searchget) | **GET** /search | GET /search +*StatusApi* | [**statusGet**](Apis/StatusApi.http#statusget) | **GET** /status | GET /status +*TeamsApi* | [**teamsGet**](Apis/TeamsApi.http#teamsget) | **GET** /teams | GET /teams +*TeamsApi* | [**teamsTeamIdGet**](Apis/TeamsApi.http#teamsteamidget) | **GET** /teams/{team_id} | GET /teams/{team_id} +*TeamsApi* | [**teamsTeamIdHeroesGet**](Apis/TeamsApi.http#teamsteamidheroesget) | **GET** /teams/{team_id}/heroes | GET /teams/{team_id}/heroes +*TeamsApi* | [**teamsTeamIdMatchesGet**](Apis/TeamsApi.http#teamsteamidmatchesget) | **GET** /teams/{team_id}/matches | GET /teams/{team_id}/matches +*TeamsApi* | [**teamsTeamIdPlayersGet**](Apis/TeamsApi.http#teamsteamidplayersget) | **GET** /teams/{team_id}/players | GET /teams/{team_id}/players + + + +_This client was generated by the jetbrains-http-client of OpenAPI Generator_ \ No newline at end of file