PandaScore REST API for All Videogames
Introduction
Whether you're looking to build an official Pandascore integration for your service, or you just want to build something awesome, .
The API works over the HTTPS protocol, and is accessed from the api.pandascore.co domain.
- The current endpoint is .
- All data is sent and received as JSON by default.
- Blank fields are included with
nullvalues instead of being omitted. - All timestamps are returned in ISO-8601 format
About this documentation
Clicking on a query parameter like filter or search will show you the available options:

You can also click on a response to see the detailed response schema:

Events hierarchy
The PandaScore API allows you to access data about eSports events by using a certain structure detailed below.
Leagues
Leagues are the top level events. They don't have a date and represent a regular competition. A League is composed of one or several series.
Some League of Legends leagues are: EU LCS, NA LCS, LCK, etc.
Some Dota 2 leagues are: ESL One, GESC, The International, PGL, etc.
Series
A Serie represents an occurrence of a league event.
The EU LCS league has two series per year: spring 2017, summer 2017, spring 2016, summer 2016 etc.
Some Dota2 Series examples would be: Changsha Major, Open Bucharest, Frankfurt, i-League Invitational etc.
Tournaments
Tournaments groups all the matches of a serie under "stages" and "groups".
The tournaments of the EU LCS of summer 2017 are: Group A, Group B, Playoffs, etc.
Some Dota 2 tournaments are: Group A, Group B, Playoffs, etc.
Matches
Finally we have matches which have two players or teams (depending on the played videogame) and several games (the rounds of the match).
Matches of the group A in the EU LCS of summer 2017 are: G2 vs FNC, MSF vs NIP, etc.
Matches of the group A in the ESL One, Genting tournamnet are: Lower Round 1, Quarterfinal, Upper Final, etc.
Please note that some matches may be listed as "TBD vs TBD" if the matchup is not announced yet, for example the date of the Final match is known but the quarterfinal is still being played.

Formats
<!-- The API currently supports the JSON format by default, as well as the XML format. Add the desired extension to your request URL in order to get that format. --> The API currently supports the JSON format by default.
Other formats may be added depending on user needs.
Pagination
The Pandascore API paginates all resources on the index method.
Requests that return multiple items will be paginated to 50 items by default. You can specify further pages with the page[number] parameter. You can also set a custom page size (up to 100) with the page[size] parameter.
The Link HTTP response header contains pagination data with first, previous, next and last raw page links when available, under the format
There is also:
- A
X-Pageheader field, which contains the current page. - A
X-Per-Pageheader field, which contains the current pagination length. - A
X-Totalheader field, which contains the total count of items across all pages.
Filtering
The filter query parameter can be used to filter a collection by one or several fields for one or several values. The filter parameter takes the field to filter as a key, and the values to filter as the value. Multiples values must be comma-separated (,).
For example, the following is a request for all the champions with a name matching Twitch or Brand exactly, but only with 21 armor:
Range
The range parameter is a hash that allows filtering fields by an interval.
Only values between the given two comma-separated bounds will be returned. The bounds are inclusive.
For example, the following is a request for all the champions with hp within 500 and 1000:
Search
The search parameter is a bit like the filter parameter, but it will return all results where the values contain the given parameter.
Note: this only works on strings.
Searching with integer values is not supported and filter or range parameters may be better suited for your needs here.
For example, to get all the champions with a name containing "twi":
Sorting
All index endpoints support multiple sort fields with comma-separation (,); the fields are applied in the order specified.
The sort order for each field is ascending unless it is prefixed with a minus (U+002D HYPHEN-MINUS, “-“), in which case it is descending.
For example, GET /lol/champions?sort=attackdamage,-name&token=YOUR_ACCESS_TOKEN will return all the champions sorted by attack damage.
Any champions with the same attack damage will then be sorted by their names in descending alphabetical order.
Rate limiting
Depending on your current plan, you will have a different rate limit. Your plan and your current request count .
With the free plan, you have a limit of 1000 requests per hour, others plans have a limit of 4000 requests per hour. The number of remaining requests is available in the X-Rate-Limit-Remaining response header.
Your API key is included in all the examples on this page, so you can test any example right away. Only you can see this value.
Authentication
The authentication on the Pandascore API works with access tokens.
All developers need to before getting started, in order to get an access token. The access token should not be shared.
Your token can be found and regenerated from .
The access token can be passed in the URL with the token query string parameter, or in the Authorization: Bearer header field.
<!-- ReDoc-Inject: <security-definitions> -->
Link: <https://api.pandascore.co/{Resource}?page=X+1>; rel="next", <https://api.pandascore.co/{Resource}?page=X-1>; rel="prev", <https://api.pandascore.co/{Resource}?page=1>; rel="first", <https://api.pandascore.co/{Resource}?page=X+n>; rel="last"GET /lol/champions?filter[name]=Brand,Twitch&filter[armor]=21&token=YOUR_ACCESS_TOKENGET /lol/champions?range[hp]=500,1000&token=YOUR_ACCESS_TOKEN$ curl -sg -H 'Authorization: Bearer YOUR_ACCESS_TOKEN' 'https://api.pandascore.co/lol/champions?search[name]=twi' | jq -S '.[].name'"Twitch""Twisted Fate"- Homepage
- https://api.apis.guru/v2/specs/pandascore.co/2.23.1.json
- Provider
- pandascore.co
- OpenAPI version
- 3.0.0
- Spec (JSON)
- https://api.apis.guru/v2/specs/pandascore.co/2.23.1/openapi.json
- Spec (YAML)
- https://api.apis.guru/v2/specs/pandascore.co/2.23.1/openapi.yaml
Tools (58)
Extracted live via the executor SDK.
-
incidents.getAdditionsGet the latest additions.
This endpoint only shows unchanged objects.
-
incidents.getChangesGet the latest updates.
This endpoint only provides the latest change for an object. It does not keep track of previous changes.
-
incidents.getDeletionsGet the latest deleted documents
-
incidents.getIncidentsGet the latest updates and additions.
This endpoint only provides the latest incident for an object. It does not keep track of previous incidents.
-
leagues.getLeaguesList leagues
-
leagues.getLeaguesLeagueIdOrSlugGet a single league by ID or by slug
-
leagues.getLeaguesLeagueIdOrSlugMatchesList matches of the given league
-
leagues.getLeaguesLeagueIdOrSlugMatchesPastList past matches for the given league
-
leagues.getLeaguesLeagueIdOrSlugMatchesRunningList currently running matches for the given league
-
leagues.getLeaguesLeagueIdOrSlugMatchesUpcomingList upcoming matches for the given league
-
leagues.getLeaguesLeagueIdOrSlugSeriesList series for the given league
-
leagues.getLeaguesLeagueIdOrSlugTournamentsList tournaments of the given league
-
matches.getLivesList currently running live matches, available from pandascore with live websocket data.
-
matches.getMatchesList matches
-
matches.getMatchesMatchIdOrSlugGet a single match by ID or by slug
-
matches.getMatchesMatchIdOrSlugOpponentsList opponents (player or teams) for the given match
-
matches.getMatchesPastList past matches
-
matches.getMatchesRunningList currently running matches
-
matches.getMatchesUpcomingList upcoming matches
-
players.getPlayersList players
-
players.getPlayersPlayerIdOrSlugGet a single player by ID or by slug
-
players.getPlayersPlayerIdOrSlugMatchesList matches for the given player. Only matches with detailed stats. Available with the plan Historical data.
-
series.getSeriesList series
-
series.getSeriesPastList past series
-
series.getSeriesRunningList currently running series
-
series.getSeriesSerieIdOrSlugGet a single serie by ID or by slug
-
series.getSeriesSerieIdOrSlugMatchesList matches of the given serie
-
series.getSeriesSerieIdOrSlugMatchesPastList past matches for the given serie
-
series.getSeriesSerieIdOrSlugMatchesRunningList currently running matches for the given serie
-
series.getSeriesSerieIdOrSlugMatchesUpcomingList upcoming matches for the given serie
-
series.getSeriesSerieIdOrSlugPlayersList players for the given serie
-
series.getSeriesSerieIdOrSlugTournamentsList tournaments of the given serie
-
series.getSeriesUpcomingList upcoming series
-
teams.getTeamsList teams
-
teams.getTeamsTeamIdOrSlugGet a single team by ID or by slug
-
teams.getTeamsTeamIdOrSlugLeaguesList leagues in which the given team was part of
-
teams.getTeamsTeamIdOrSlugMatchesList matches for the given team
-
teams.getTeamsTeamIdOrSlugSeriesList series in which the given team was part of
-
teams.getTeamsTeamIdOrSlugTournamentsList tournaments in which the given team was part of
-
tournaments.getTournamentsList tournaments
-
tournaments.getTournamentsPastList past tournaments
-
tournaments.getTournamentsRunningList currently running tournaments
-
tournaments.getTournamentsTournamentIdOrSlugGet a single tournament by ID or by slug
-
tournaments.getTournamentsTournamentIdOrSlugBracketsGet the brackets of the given tournament
-
tournaments.getTournamentsTournamentIdOrSlugMatchesList matches for the given tournament
-
tournaments.getTournamentsTournamentIdOrSlugPlayersList players for the given tournament
-
tournaments.getTournamentsTournamentIdOrSlugRostersList participants (player or team) for a given tournament.
-
tournaments.getTournamentsTournamentIdOrSlugStandingsGet the current standings for a given tournament
-
tournaments.getTournamentsTournamentIdOrSlugTeamsList teams for the given tournament
-
tournaments.getTournamentsUpcomingList upcoming tournaments
-
videogames.getVideogamesList videogames
-
videogames.getVideogamesVideogameIdOrSlugGet a single videogame by ID or by slug
-
videogames.getVideogamesVideogameIdOrSlugLeaguesGET /videogames/{videogame_id_or_slug}/leagues
-
videogames.getVideogamesVideogameIdOrSlugSeriesList series for the given videogame
-
videogames.getVideogamesVideogameIdOrSlugTournamentsList tournaments of the given videogame
-
videogames.getVideogamesVideogameIdOrSlugVersionsList available versions for a given videogame
-
openapi.previewSpecPreview an OpenAPI document before adding it as a source
-
openapi.addSourceAdd an OpenAPI source and register its operations as tools