PandaScore REST API for All Videogames
Introduction
COMMUNITYBEARER0 INSTALLS
OpenAPI Specificationv3.0
{
"openapi": "3.0.0",
"servers": [
{
"url": "https://api.pandascore.co/",
"variables": {}
}
],
"info": {
"description": "\n# Introduction\n\nWhether you're looking to build an official Pandascore integration for your service, or you just want to build something awesome, [we can help you get started](/home).\n\nThe API works over the HTTPS protocol, and is accessed from the `api.pandascore.co` domain.\n\n- The current endpoint is [https://api.pandascore.co](https://api.pandascore.co).\n- All data is sent and received as JSON by default.\n- Blank fields are included with `null` values instead of being omitted.\n- All timestamps are returned in ISO-8601 format\n\n### About this documentation\n\nClicking on a query parameter like `filter` or `search` will show you the available options: \n\nYou can also click on a response to see the detailed response schema: \n\n## Events hierarchy\n\nThe PandaScore API allows you to access data about eSports events by using a certain structure detailed below.\n\n**Leagues**\n\nLeagues 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. \nSome League of Legends leagues are: _EU LCS, NA LCS, LCK, etc._ \nSome Dota 2 leagues are: _ESL One, GESC, The International, PGL, etc._\n\n**Series**\n\nA Serie represents an occurrence of a league event. \nThe EU LCS league has two series per year: _spring 2017, summer 2017, spring 2016, summer 2016 etc._ \nSome Dota2 Series examples would be: _Changsha Major, Open Bucharest, Frankfurt, i-League Invitational etc._\n\n**Tournaments**\n\nTournaments groups all the matches of a serie under \"stages\" and \"groups\". \nThe tournaments of the EU LCS of summer 2017 are: _Group A, Group B, Playoffs, etc._ \nSome Dota 2 tournaments are: _Group A, Group B, Playoffs, etc._\n\n**Matches**\n\nFinally we have matches which have two players or teams (depending on the played videogame) and several games (the rounds of the match). \nMatches of the group A in the EU LCS of summer 2017 are: _G2 vs FNC, MSF vs NIP, etc._ \nMatches of the group A in the ESL One, Genting tournamnet are: _Lower Round 1, Quarterfinal, Upper Final, etc._ \n\n**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.** \n\n\n## Formats\n\n<!-- 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. -->\nThe API currently supports the JSON format by default.\n\nOther formats may be added depending on user needs.\n\n## Pagination\n\nThe Pandascore API paginates all resources on the index method.\n\nRequests 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.\n\nThe `Link` HTTP response header contains pagination data with `first`, `previous`, `next` and `last` raw page links when available, under the format\n\n```\nLink: <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\"\n```\n\nThere is also:\n\n* A `X-Page` header field, which contains the current page.\n* A `X-Per-Page` header field, which contains the current pagination length.\n* A `X-Total` header field, which contains the total count of items across all pages.\n\n## Filtering\n\nThe `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 (`,`).\n\nFor example, the following is a request for all the champions with a name matching Twitch or Brand exactly, but only with 21 armor:\n\n```\nGET /lol/champions?filter[name]=Brand,Twitch&filter[armor]=21&token=YOUR_ACCESS_TOKEN\n```\n\n## Range\n\nThe `range` parameter is a hash that allows filtering fields by an interval.\nOnly values between the given two comma-separated bounds will be returned. The bounds are inclusive.\n\nFor example, the following is a request for all the champions with `hp` within 500 and 1000:\n\n```\nGET /lol/champions?range[hp]=500,1000&token=YOUR_ACCESS_TOKEN\n```\n\n## Search\n\nThe `search` parameter is a bit like the `filter` parameter, but it will return all results where the values **contain** the given parameter.\n\nNote: this only works on strings.\nSearching with integer values is not supported and `filter` or `range` parameters may be better suited for your needs here.\n\nFor example, to get all the champions with a name containing `\"twi\"`:\n\n```\n$ curl -sg -H 'Authorization: Bearer YOUR_ACCESS_TOKEN' 'https://api.pandascore.co/lol/champions?search[name]=twi' | jq -S '.[].name'\n\"Twitch\"\n\"Twisted Fate\"\n```\n\n## Sorting\n\nAll index endpoints support multiple sort fields with comma-separation (`,`); the fields are applied in the order specified.\n\nThe sort order for each field is ascending unless it is prefixed with a minus (U+002D HYPHEN-MINUS, “-“), in which case it is descending.\n\nFor example, `GET /lol/champions?sort=attackdamage,-name&token=YOUR_ACCESS_TOKEN` will return all the champions sorted by attack damage.\nAny champions with the same attack damage will then be sorted by their names in descending alphabetical order.\n\n## Rate limiting\n\nDepending on your current plan, you will have a different rate limit. Your plan and your current request count [are available on your dashboard](https://pandascore.co/settings).\n\nWith 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.\n\nYour 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.**\n\n# Authentication\n\nThe authentication on the Pandascore API works with access tokens.\n\nAll developers need to [create an account](https://pandascore.co/users/sign_in) before getting started, in order to get an access token. The access token should not be shared.\n\n**Your token can be found and regenerated from [your dashboard](https://pandascore.co/settings).**\n\nThe access token can be passed in the URL with the `token` query string parameter, or in the `Authorization: Bearer` header field.\n\n<!-- ReDoc-Inject: <security-definitions> -->\n",
"title": "PandaScore REST API for All Videogames",
"version": "2.23.1",
"x-apisguru-categories": [
"entertainment"
],
"x-logo": {
"url": "https://api.apis.guru/v2/cache/logo/https_pandascore_co_apple-touch-icon.svg"
},
"x-origin": [
{
"format": "openapi",
"url": "blob:https://developers.pandascore.co/blobId",
"version": "3.0"
}
],
"x-providerName": "pandascore.co"
},
"security": [
{
"BearerToken": []
},
{
"QueryToken": []
}
],
"tags": [],
"paths": {
"/additions": {
"get": {
"description": "Get the latest additions.\n\nThis endpoint only shows unchanged objects.",
"operationId": "get_additions",
"parameters": [
{
"$ref": "#/components/parameters/Page"
},
{
"$ref": "#/components/parameters/PerPage"
},
{
"description": "Filter by result type(s)",
"in": "query",
"name": "type",
"required": false,
"schema": {
"$ref": "#/components/schemas/type_over_AdditionIncidents"
}
},
{
"description": "Filter out older results",
"in": "query",
"name": "since",
"required": false,
"schema": {
"$ref": "#/components/schemas/IncidentModifiedAt"
}
},
{
"description": "Filter by videogame(s)",
"in": "query",
"name": "videogame",
"required": false,
"schema": {
"$ref": "#/components/schemas/videogame_over_AdditionIncidents"
}
}
],
"responses": {
"200": {
"$ref": "#/components/responses/AdditionIncidents"
},
"400": {
"$ref": "#/components/responses/Error400"
},
"401": {
"$ref": "#/components/responses/Error401"
},
"403": {
"$ref": "#/components/responses/Error403"
},
"404": {
"$ref": "#/components/responses/Error404"
},
"422": {
"$ref": "#/components/responses/Error422"
}
},
"summary": "List additions",
"tags": [
"Incidents"
]
}
},
"/changes": {
"get": {
"description": "Get the latest updates.\n\nThis endpoint only provides the latest change for an object. It does not keep track of previous changes.",
"operationId": "get_changes",
"parameters": [
{
"$ref": "#/components/parameters/Page"
},
{
"$ref": "#/components/parameters/PerPage"
},
{
"description": "Filter by result type(s)",
"in": "query",
"name": "type",
"required": false,
"schema": {
"$ref": "#/components/schemas/type_over_ChangeIncidents"
}
},
{
"description": "Filter out older results",
"in": "query",
"name": "since",
"required": false,
"schema": {
"$ref": "#/components/schemas/IncidentModifiedAt"
}
},
{
"description": "Filter by videogame(s)",
"in": "query",
"name": "videogame",
"required": false,
"schema": {
"$ref": "#/components/schemas/videogame_over_ChangeIncidents"
}
}
],
"responses": {
"200": {
"$ref": "#/components/responses/ChangeIncidents"
},
"400": {
"$ref": "#/components/responses/Error400"
},
"401": {
"$ref": "#/components/responses/Error401"
},
"403": {
"$ref": "#/components/responses/Error403"
},
"404": {
"$ref": "#/components/responses/Error404"
},
"422": {
"$ref": "#/components/responses/Error422"
}
},
"summary": "List changes",
"tags": [
"Incidents"
]
}
},
"/deletions": {
"get": {
"description": "Get the latest deleted documents",
"operationId": "get_deletions",
"parameters": [
{
"$ref": "#/components/parameters/Page"
},
{
"$ref": "#/components/parameters/PerPage"
},
{
"description": "Filter by result type(s)",
"in": "query",
"name": "type",
"required": false,
"schema": {
"$ref": "#/components/schemas/type_over_DeletionIncidents"
}
},
{
"description": "Filter out older results",
"in": "query",
"name": "since",
"required": false,
"schema": {
"$ref": "#/components/schemas/IncidentModifiedAt"
}
},
{
"description": "Filter by videogame(s)",
"in": "query",
"name": "videogame",
"required": false,
"schema": {
"$ref": "#/components/schemas/videogame_over_DeletionIncidents"
}
}
],
"responses": {
"200": {
"$ref": "#/components/responses/DeletionIncidents"
},
"400": {
"$ref": "#/components/responses/Error400"
},
"401": {
"$ref": "#/components/responses/Error401"
},
"403": {
"$ref": "#/components/responses/Error403"
},
"404": {
"$ref": "#/components/responses/Error404"
},
"422": {
"$ref": "#/components/responses/Error422"
}
},
"summary": "List deletions",
"tags": [
"Incidents"
]
}
},
"/incidents": {
"get": {
"description": " Get the latest updates and additions.\n\nThis endpoint only provides the latest incident for an object. It does not keep track of previous incidents.",
"operationId": "get_incidents",
"parameters": [
{
"$ref": "#/components/parameters/Page"
},
{
"$ref": "#/components/parameters/PerPage"
},
{
"description": "Filter by result type(s)",
"in": "query",
"name": "type",
"required": false,
"schema": {
"$ref": "#/components/schemas/type_over_Incidents"
}
},
{
"description": "Filter out older results",
"in": "query",
"name": "since",
"required": false,
"schema": {
"$ref": "#/components/schemas/IncidentModifiedAt"
}
},
{
"description": "Filter by videogame(s)",
"in": "query",
"name": "videogame",
"required": false,
"schema": {
"$ref": "#/components/schemas/videogame_over_Incidents"
}
}
],
"responses": {
"200": {
"$ref": "#/components/responses/Incidents"
},
"400": {
"$ref": "#/components/responses/Error400"
},
"401": {
"$ref": "#/components/responses/Error401"
},
"403": {
"$ref": "#/components/responses/Error403"
},
"404": {
"$ref": "#/components/responses/Error404"
},
"422": {
"$ref": "#/components/responses/Error422"
}
},
"summary": "List changes, additions and deletions",
"tags": [
"Incidents"
]
}
},
"/leagues": {
"get": {
"description": "List leagues",
"operationId": "get_leagues",
"parameters": [
{
"description": "Options to search results",
"example": {
"name": "Contenders"
},
"explode": true,
"in": "query",
"name": "search",
"required": false,
"schema": {
"$ref": "#/components/schemas/search_over_Leagues"
},
"style": "deepObject"
},
{
"description": "Options to sort results",
"example": [
"name",
"-modified_at"
],
"in": "query",
"name": "sort",
"required": false,
"schema": {
"$ref": "#/components/schemas/sort_over_Leagues"
}
},
{
"description": "Options to select results within ranges",
"example": {
"modified_at": [
"2019-04-08T17:00:00Z",
"2019-10-08T22:00:00Z"
]
},
"explode": true,
"in": "query",
"name": "range",
"required": false,
"schema": {
"$ref": "#/components/schemas/range_over_Leagues"
},
"style": "deepObject"
},
{
"description": "Options to filter results. String fields are case sensitive",
"explode": true,
"in": "query",
"name": "filter",
"required": false,
"schema": {
"$ref": "#/components/schemas/filter_over_Leagues"
},
"style": "deepObject"
},
{
"$ref": "#/components/parameters/Page"
},
{
"$ref": "#/components/parameters/PerPage"
}
],
"responses": {
"200": {
"$ref": "#/components/responses/Leagues"
},
"400": {
"$ref": "#/components/responses/Error400"
},
"401": {
"$ref": "#/components/responses/Error401"
},
"403": {
"$ref": "#/components/responses/Error403"
},
"404": {
"$ref": "#/components/responses/Error404"
},
"422": {
"$ref": "#/components/responses/Error422"
}
},
"summary": "List leagues",
"tags": [
"Leagues"
]
}
},
"/leagues/{league_id_or_slug}": {
"get": {
"description": "Get a single league by ID or by slug",
"operationId": "get_leagues_leagueIdOrSlug",
"parameters": [
{
"description": "A league ID or slug",
"in": "path",
"name": "league_id_or_slug",
"required": true,
"schema": {
"$ref": "#/components/schemas/LeagueIDOrSlug"
}
}
],
"responses": {
"200": {
"$ref": "#/components/responses/League"
},
"400": {
"$ref": "#/components/responses/Error400"
},
"401": {
"$ref": "#/components/responses/Error401"
},
"403": {
"$ref": "#/components/responses/Error403"
},
"404": {
"$ref": "#/components/responses/Error404"
},
"422": {
"$ref": "#/components/responses/Error422"
}
},
"summary": "Get a league",
"tags": [
"Leagues"
]
}
},
"/leagues/{league_id_or_slug}/matches": {
"get": {
"description": "List matches of the given league",
"operationId": "get_leagues_leagueIdOrSlug_matches",
"parameters": [
{
"description": "A league ID or slug",
"in": "path",
"name": "league_id_or_slug",
"required": true,
"schema": {
"$ref": "#/components/schemas/LeagueIDOrSlug"
}
},
{
"description": "Options to filter results. String fields are case sensitive",
"example": {
"detailed_stats": true
},
"explode": true,
"in": "query",
"name": "filter",
"required": false,
"schema": {
"$ref": "#/components/schemas/filter_over_Matches"
},
"style": "deepObject"
},
{
"description": "Options to search results",
"example": {
"name": "Finals"
},
"explode": true,
"in": "query",
"name": "search",
"required": false,
"schema": {
"$ref": "#/components/schemas/search_over_Matches"
},
"style": "deepObject"
},
{
"description": "Options to sort results",
"example": [
"tournament_id",
"scheduled_at"
],
"in": "query",
"name": "sort",
"required": false,
"schema": {
"$ref": "#/components/schemas/sort_over_Matches"
}
},
{
"description": "Options to select results within ranges",
"example": {
"begin_at": [
"2019-04-08T17:00:00Z",
"2019-10-08T22:00:00Z"
]
},
"explode": true,
"in": "query",
"name": "range",
"required": false,
"schema": {
"$ref": "#/components/schemas/range_over_Matches"
},
"style": "deepObject"
},
{
"$ref": "#/components/parameters/Page"
},
{
"$ref": "#/components/parameters/PerPage"
}
],
"responses": {
"200": {
"$ref": "#/components/responses/Matches"
},
"400": {
"$ref": "#/components/responses/Error400"
},
"401": {
"$ref": "#/components/responses/Error401"
},
"403": {
"$ref": "#/components/responses/Error403"
},
"404": {
"$ref": "#/components/responses/Error404"
},
"422": {
"$ref": "#/components/responses/Error422"
}
},
"summary": "Get matches for a league",
"tags": [
"Leagues"
]
}
},
"/leagues/{league_id_or_slug}/matches/past": {
"get": {
"description": "List past matches for the given league",
"operationId": "get_leagues_leagueIdOrSlug_matches_past",
"parameters": [
{
"description": "A league ID or slug",
"in": "path",
"name": "league_id_or_slug",
"required": true,
"schema": {
"$ref": "#/components/schemas/LeagueIDOrSlug"
}
},
{
"description": "Options to filter results. String fields are case sensitive",
"example": {
"detailed_stats": true
},
"explode": true,
"in": "query",
"name": "filter",
"required": false,
"schema": {
"$ref": "#/components/schemas/filter_over_Matches"
},
"style": "deepObject"
},
{
"description": "Options to search results",
"example": {
"name": "Finals"
},
"explode": true,
"in": "query",
"name": "search",
"required": false,
"schema": {
"$ref": "#/components/schemas/search_over_Matches"
},
"style": "deepObject"
},
{
"description": "Options to sort results",
"example": [
"tournament_id",
"scheduled_at"
],
"in": "query",
"name": "sort",
"required": false,
"schema": {
"$ref": "#/components/schemas/sort_over_Matches"
}
},
{
"description": "Options to select results within ranges",
"example": {
"begin_at": [
"2019-04-08T17:00:00Z",
"2019-10-08T22:00:00Z"
]
},
"explode": true,
"in": "query",
"name": "range",
"required": false,
"schema": {
"$ref": "#/components/schemas/range_over_Matches"
},
"style": "deepObject"
},
{
"$ref": "#/components/parameters/Page"
},
{
"$ref": "#/components/parameters/PerPage"
}
],
"responses": {
"200": {
"$ref": "#/components/responses/Matches"
},
"400": {
"$ref": "#/components/responses/Error400"
},
"401": {
"$ref": "#/components/responses/Error401"
},
"403": {
"$ref": "#/components/responses/Error403"
},
"404": {
"$ref": "#/components/responses/Error404"
},
"422": {
"$ref": "#/components/responses/Error422"
}
},
"summary": "Get past matches for league",
"tags": [
"Leagues"
]
}
},
"/leagues/{league_id_or_slug}/matches/running": {
"get": {
"description": "List currently running matches for the given league",
"operationId": "get_leagues_leagueIdOrSlug_matches_running",
"parameters": [
{
"description": "A league ID or slug",
"in": "path",
"name": "league_id_or_slug",
"required": true,
"schema": {
"$ref": "#/components/schemas/LeagueIDOrSlug"
}
},
{
"description": "Options to filter results. String fields are case sensitive",
"example": {
"detailed_stats": true
},
"explode": true,
"in": "query",
"name": "filter",
"required": false,
"schema": {
"$ref": "#/components/schemas/filter_over_Matches"
},
"style": "deepObject"
},
{
"description": "Options to search results",
"example": {
"name": "Finals"
},
"explode": true,
"in": "query",
"name": "search",
"required": false,
"schema": {
"$ref": "#/components/schemas/search_over_Matches"
},
"style": "deepObject"
},
{
"description": "Options to sort results",
"example": [
"tournament_id",
"scheduled_at"
],
"in": "query",
"name": "sort",
"required": false,
"schema": {
"$ref": "#/components/schemas/sort_over_Matches"
}
},
{
"description": "Options to select results within ranges",
"example": {
"begin_at": [
"2019-04-08T17:00:00Z",
"2019-10-08T22:00:00Z"
]
},
"explode": true,
"in": "query",
"name": "range",
"required": false,
"schema": {
"$ref": "#/components/schemas/range_over_Matches"
},
"style": "deepObject"
},
{
"$ref": "#/components/parameters/Page"
},
{
"$ref": "#/components/parameters/PerPage"
}
],
"responses": {
"200": {
"$ref": "#/components/responses/Matches"
},
"400": {
"$ref": "#/components/responses/Error400"
},
"401": {
"$ref": "#/components/responses/Error401"
},
"403": {
"$ref": "#/components/responses/Error403"
},
"404": {
"$ref": "#/components/responses/Error404"
},
"422": {
"$ref": "#/components/responses/Error422"
}
},
"summary": "Get running matches for league",
"tags": [
"Leagues"
]
}
},
"/leagues/{league_id_or_slug}/matches/upcoming": {
"get": {
"description": "List upcoming matches for the given league",
"operationId": "get_leagues_leagueIdOrSlug_matches_upcoming",
"parameters": [
{
"description": "A league ID or slug",
"in": "path",
"name": "league_id_or_slug",
"required": true,
"schema": {
"$ref": "#/components/schemas/LeagueIDOrSlug"
}
},
{
"description": "Options to filter results. String fields are case sensitive",
"example": {
"detailed_stats": true
},
"explode": true,
"in": "query",
"name": "filter",
"required": false,
"schema": {
"$ref": "#/components/schemas/filter_over_Matches"
},
"style": "deepObject"
},
{
"description": "Options to search results",
"example": {
"name": "Finals"
},
"explode": true,
"in": "query",
"name": "search",
"required": false,
"schema": {
"$ref": "#/components/schemas/search_over_Matches"
},
"style": "deepObject"
},
{
"description": "Options to sort results",
"example": [
"tournament_id",
"scheduled_at"
],
"in": "query",
"name": "sort",
"required": false,
"schema": {
"$ref": "#/components/schemas/sort_over_Matches"
}
},
{
"description": "Options to select results within ranges",
"example": {
"begin_at": [
"2019-04-08T17:00:00Z",
"2019-10-08T22:00:00Z"
]
},
"explode": true,
"in": "query",
"name": "range",
"required": false,
"schema": {
"$ref": "#/components/schemas/range_over_Matches"
},
"style": "deepObject"
},
{
"$ref": "#/components/parameters/Page"
},
{
"$ref": "#/components/parameters/PerPage"
}
],
"responses": {
"200": {
"$ref": "#/components/responses/Matches"
},
"400": {
"$ref": "#/components/responses/Error400"
},
"401": {
"$ref": "#/components/responses/Error401"
},
"403": {
"$ref": "#/components/responses/Error403"
},
"404": {
"$ref": "#/components/responses/Error404"
},
"422": {
"$ref": "#/components/responses/Error422"
}
},
"summary": "Get upcoming matches for league",
"tags": [
"Leagues"
]
}
},
"/leagues/{league_id_or_slug}/series": {
"get": {
"description": "List series for the given league",
"operationId": "get_leagues_leagueIdOrSlug_series",
"parameters": [
{
"description": "A league ID or slug",
"in": "path",
"name": "league_id_or_slug",
"required": true,
"schema": {
"$ref": "#/components/schemas/LeagueIDOrSlug"
}
},
{
"description": "Options to filter results. String fields are case sensitive",
"example": {
"winner_id": 390,
"winner_type": "Team"
},
"explode": true,
"in": "query",
"name": "filter",
"required": false,
"schema": {
"$ref": "#/components/schemas/filter_over_Series"
},
"style": "deepObject"
},
{
"description": "Options to search results",
"example": {
"slug": "lck"
},
"explode": true,
"in": "query",
"name": "search",
"required": false,
"schema": {
"$ref": "#/components/schemas/search_over_Series"
},
"style": "deepObject"
},
{
"description": "Options to sort results",
"example": [
"year",
"-modified_at"
],
"in": "query",
"name": "sort",
"required": false,
"schema": {
"$ref": "#/components/schemas/sort_over_Series"
}
},
{
"description": "Options to select results within ranges",
"example": {
"begin_at": [
"2019-04-08T17:00:00Z",
"2019-10-08T22:00:00Z"
]
},
"explode": true,
"in": "query",
"name": "range",
"required": false,
"schema": {
"$ref": "#/components/schemas/range_over_Series"
},
"style": "deepObject"
},
{
"$ref": "#/components/parameters/Page"
},
{
"$ref": "#/components/parameters/PerPage"
}
],
"responses": {
"200": {
"$ref": "#/components/responses/Series"
},
"400": {
"$ref": "#/components/responses/Error400"
},
"401": {
"$ref": "#/components/responses/Error401"
},
"403": {
"$ref": "#/components/responses/Error403"
},
"404": {
"$ref": "#/components/responses/Error404"
},
"422": {
"$ref": "#/components/responses/Error422"
}
},
"summary": "List series of a league",
"tags": [
"Leagues"
]
}
},
"/leagues/{league_id_or_slug}/tournaments": {
"get": {
"description": "List tournaments of the given league",
"operationId": "get_leagues_leagueIdOrSlug_tournaments",
"parameters": [
{
"description": "A league ID or slug",
"in": "path",
"name": "league_id_or_slug",
"required": true,
"schema": {
"$ref": "#/components/schemas/LeagueIDOrSlug"
}
},
{
"description": "Options to filter results. String fields are case sensitive",
"example": {
"serie_id": 1808
},
"explode": true,
"in": "query",
"name": "filter",
"required": false,
"schema": {
"$ref": "#/components/schemas/filter_over_ShortTournaments"
},
"style": "deepObject"
},
{
"description": "Options to search results",
"example": {
"name": "group"
},
"explode": true,
"in": "query",
"name": "search",
"required": false,
"schema": {
"$ref": "#/components/schemas/search_over_ShortTournaments"
},
"style": "deepObject"
},
{
"description": "Options to sort results",
"example": [
"serie_id",
"-begin_at"
],
"in": "query",
"name": "sort",
"required": false,
"schema": {
"$ref": "#/components/schemas/sort_over_ShortTournaments"
}
},
{
"description": "Options to select results within ranges",
"example": {
"begin_at": [
"2019-04-08T17:00:00Z",
"2019-10-08T22:00:00Z"
]
},
"explode": true,
"in": "query",
"name": "range",
"required": false,
"schema": {
"$ref": "#/components/schemas/range_over_ShortTournaments"
},
"style": "deepObject"
},
{
"$ref": "#/components/parameters/Page"
},
{
"$ref": "#/components/parameters/PerPage"
}
],
"responses": {
"200": {
"$ref": "#/components/responses/ShortTournaments"
},
"400": {
"$ref": "#/components/responses/Error400"
},
"401": {
"$ref": "#/components/responses/Error401"
},
"403": {
"$ref": "#/components/responses/Error403"
},
"404": {
"$ref": "#/components/responses/Error404"
},
"422": {
"$ref": "#/components/responses/Error422"
}
},
"summary": "Get tournaments for a league",
"tags": [
"Leagues"
]
}
},
"/lives": {
"get": {
"description": "List currently running live matches, available from pandascore with live websocket data.",
"operationId": "get_lives",
"parameters": [
{
"$ref": "#/components/parameters/Page"
},
{
"$ref": "#/components/parameters/PerPage"
}
],
"responses": {
"200": {
"$ref": "#/components/responses/Lives"
},
"400": {
"$ref": "#/components/responses/Error400"
},
"401": {
"$ref": "#/components/responses/Error401"
},
"403": {
"$ref": "#/components/responses/Error403"
},
"404": {
"$ref": "#/components/responses/Error404"
},
"422": {
"$ref": "#/components/responses/Error422"
}
},
"summary": "List lives matches",
"tags": [
"Matches",
"Lives"
]
}
},
"/matches": {
"get": {
"description": "List matches",
"operationId": "get_matches",
"parameters": [
{
"description": "Options to filter results. String fields are case sensitive",
"example": {
"detailed_stats": true
},
"explode": true,
"in": "query",
"name": "filter",
"required": false,
"schema": {
"$ref": "#/components/schemas/filter_over_Matches"
},
"style": "deepObject"
},
{
"description": "Options to search results",
"example": {
"name": "Finals"
},
"explode": true,
"in": "query",
"name": "search",
"required": false,
"schema": {
"$ref": "#/components/schemas/search_over_Matches"
},
"style": "deepObject"
},
{
"description": "Options to sort results",
"example": [
"tournament_id",
"scheduled_at"
],
"in": "query",
"name": "sort",
"required": false,
"schema": {
"$ref": "#/components/schemas/sort_over_Matches"
}
},
{
"description": "Options to select results within ranges",
"example": {
"begin_at": [
"2019-04-08T17:00:00Z",
"2019-10-08T22:00:00Z"
]
},
"explode": true,
"in": "query",
"name": "range",
"required": false,
"schema": {
"$ref": "#/components/schemas/range_over_Matches"
},
"style": "deepObject"
},
{
"$ref": "#/components/parameters/Page"
},
{
"$ref": "#/components/parameters/PerPage"
}
],
"responses": {
"200": {
"$ref": "#/components/responses/Matches"
},
"400": {
"$ref": "#/components/responses/Error400"
},
"401": {
"$ref": "#/components/responses/Error401"
},
"403": {
"$ref": "#/components/responses/Error403"
},
"404": {
"$ref": "#/components/responses/Error404"
},
"422": {
"$ref": "#/components/responses/Error422"
}
},
"summary": "List matches",
"tags": [
"Matches"
]
}
},
"/matches/past": {
"get": {
"description": "List past matches",
"operationId": "get_matches_past",
"parameters": [
{
"description": "Options to filter results. String fields are case sensitive",
"example": {
"detailed_stats": true
},
"explode": true,
"in": "query",
"name": "filter",
"required": false,
"schema": {
"$ref": "#/components/schemas/filter_over_Matches"
},
"style": "deepObject"
},
{
"description": "Options to search results",
"example": {
"name": "Finals"
},
"explode": true,
"in": "query",
"name": "search",
"required": false,
"schema": {
"$ref": "#/components/schemas/search_over_Matches"
},
"style": "deepObject"
},
{
"description": "Options to sort results",
"example": [
"tournament_id",
"scheduled_at"
],
"in": "query",
"name": "sort",
"required": false,
"schema": {
"$ref": "#/components/schemas/sort_over_Matches"
}
},
{
"description": "Options to select results within ranges",
"example": {
"begin_at": [
"2019-04-08T17:00:00Z",
"2019-10-08T22:00:00Z"
]
},
"explode": true,
"in": "query",
"name": "range",
"required": false,
"schema": {
"$ref": "#/components/schemas/range_over_Matches"
},
"style": "deepObject"
},
{
"$ref": "#/components/parameters/Page"
},
{
"$ref": "#/components/parameters/PerPage"
}
],
"responses": {
"200": {
"$ref": "#/components/responses/Matches"
},
"400": {
"$ref": "#/components/responses/Error400"
},
"401": {
"$ref": "#/components/responses/Error401"
},
"403": {
"$ref": "#/components/responses/Error403"
},
"404": {
"$ref": "#/components/responses/Error404"
},
"422": {
"$ref": "#/components/responses/Error422"
}
},
"summary": "Get past matches",
"tags": [
"Matches"
]
}
},
"/matches/running": {
"get": {
"description": "List currently running matches",
"operationId": "get_matches_running",
"parameters": [
{
"description": "Options to filter results. String fields are case sensitive",
"example": {
"detailed_stats": true
},
"explode": true,
"in": "query",
"name": "filter",
"required": false,
"schema": {
"$ref": "#/components/schemas/filter_over_Matches"
},
"style": "deepObject"
},
{
"description": "Options to search results",
"example": {
"name": "Finals"
},
"explode": true,
"in": "query",
"name": "search",
"required": false,
"schema": {
"$ref": "#/components/schemas/search_over_Matches"
},
"style": "deepObject"
},
{
"description": "Options to sort results",
"example": [
"tournament_id",
"scheduled_at"
],
"in": "query",
"name": "sort",
"required": false,
"schema": {
"$ref": "#/components/schemas/sort_over_Matches"
}
},
{
"description": "Options to select results within ranges",
"example": {
"begin_at": [
"2019-04-08T17:00:00Z",
"2019-10-08T22:00:00Z"
]
},
"explode": true,
"in": "query",
"name": "range",
"required": false,
"schema": {
"$ref": "#/components/schemas/range_over_Matches"
},
"style": "deepObject"
},
{
"$ref": "#/components/parameters/Page"
},
{
"$ref": "#/components/parameters/PerPage"
}
],
"responses": {
"200": {
"$ref": "#/components/responses/Matches"
},
"400": {
"$ref": "#/components/responses/Error400"
},
"401": {
"$ref": "#/components/responses/Error401"
},
"403": {
"$ref": "#/components/responses/Error403"
},
"404": {
"$ref": "#/components/responses/Error404"
},
"422": {
"$ref": "#/components/responses/Error422"
}
},
"summary": "Get running matches",
"tags": [
"Matches"
]
}
},
"/matches/upcoming": {
"get": {
"description": "List upcoming matches",
"operationId": "get_matches_upcoming",
"parameters": [
{
"description": "Options to filter results. String fields are case sensitive",
"example": {
"detailed_stats": true
},
"explode": true,
"in": "query",
"name": "filter",
"required": false,
"schema": {
"$ref": "#/components/schemas/filter_over_Matches"
},
"style": "deepObject"
},
{
"description": "Options to search results",
"example": {
"name": "Finals"
},
"explode": true,
"in": "query",
"name": "search",
"required": false,
"schema": {
"$ref": "#/components/schemas/search_over_Matches"
},
"style": "deepObject"
},
{
"description": "Options to sort results",
"example": [
"tournament_id",
"scheduled_at"
],
"in": "query",
"name": "sort",
"required": false,
"schema": {
"$ref": "#/components/schemas/sort_over_Matches"
}
},
{
"description": "Options to select results within ranges",
"example": {
"begin_at": [
"2019-04-08T17:00:00Z",
"2019-10-08T22:00:00Z"
]
},
"explode": true,
"in": "query",
"name": "range",
"required": false,
"schema": {
"$ref": "#/components/schemas/range_over_Matches"
},
"style": "deepObject"
},
{
"$ref": "#/components/parameters/Page"
},
{
"$ref": "#/components/parameters/PerPage"
}
],
"responses": {
"200": {
"$ref": "#/components/responses/Matches"
},
"400": {
"$ref": "#/components/responses/Error400"
},
"401": {
"$ref": "#/components/responses/Error401"
},
"403": {
"$ref": "#/components/responses/Error403"
},
"404": {
"$ref": "#/components/responses/Error404"
},
"422": {
"$ref": "#/components/responses/Error422"
}
},
"summary": "Get upcoming matches",
"tags": [
"Matches"
]
}
},
"/matches/{match_id_or_slug}": {
"get": {
"description": "Get a single match by ID or by slug",
"operationId": "get_matches_matchIdOrSlug",
"parameters": [
{
"description": "A match ID or slug",
"in": "path",
"name": "match_id_or_slug",
"required": true,
"schema": {
"$ref": "#/components/schemas/MatchIDOrSlug"
}
}
],
"responses": {
"200": {
"$ref": "#/components/responses/Match"
},
"400": {
"$ref": "#/components/responses/Error400"
},
"401": {
"$ref": "#/components/responses/Error401"
},
"403": {
"$ref": "#/components/responses/Error403"
},
"404": {
"$ref": "#/components/responses/Error404"
},
"422": {
"$ref": "#/components/responses/Error422"
}
},
"summary": "Get a match",
"tags": [
"Matches"
]
}
},
"/matches/{match_id_or_slug}/opponents": {
"get": {
"description": "List opponents (player or teams) for the given match",
"operationId": "get_matches_matchIdOrSlug_opponents",
"parameters": [
{
"description": "A match ID or slug",
"in": "path",
"name": "match_id_or_slug",
"required": true,
"schema": {
"$ref": "#/components/schemas/MatchIDOrSlug"
}
}
],
"responses": {
"200": {
"$ref": "#/components/responses/MatchOpponentsObject"
},
"400": {
"$ref": "#/components/responses/Error400"
},
"401": {
"$ref": "#/components/responses/Error401"
},
"403": {
"$ref": "#/components/responses/Error403"
},
"404": {
"$ref": "#/components/responses/Error404"
},
"422": {
"$ref": "#/components/responses/Error422"
}
},
"summary": "Get match's opponents",
"tags": [
"Matches"
]
}
},
"/players": {
"get": {
"description": "List players",
"operationId": "get_players",
"parameters": [
{
"description": "Options to filter results. String fields are case sensitive",
"example": {
"hometown": "France"
},
"explode": true,
"in": "query",
"name": "filter",
"required": false,
"schema": {
"$ref": "#/components/schemas/filter_over_Players"
},
"style": "deepObject"
},
{
"description": "Options to search results",
"example": {
"role": "tank"
},
"explode": true,
"in": "query",
"name": "search",
"required": false,
"schema": {
"$ref": "#/components/schemas/search_over_Players"
},
"style": "deepObject"
},
{
"description": "Options to sort results",
"example": [
"last_name"
],
"in": "query",
"name": "sort",
"required": false,
"schema": {
"$ref": "#/components/schemas/sort_over_Players"
}
},
{
"description": "Options to select results within ranges",
"example": {
"name": [
"f",
"i"
]
},
"explode": true,
"in": "query",
"name": "range",
"required": false,
"schema": {
"$ref": "#/components/schemas/range_over_Players"
},
"style": "deepObject"
},
{
"$ref": "#/components/parameters/Page"
},
{
"$ref": "#/components/parameters/PerPage"
}
],
"responses": {
"200": {
"$ref": "#/components/responses/Players"
},
"400": {
"$ref": "#/components/responses/Error400"
},
"401": {
"$ref": "#/components/responses/Error401"
},
"403": {
"$ref": "#/components/responses/Error403"
},
"404": {
"$ref": "#/components/responses/Error404"
},
"422": {
"$ref": "#/components/responses/Error422"
}
},
"summary": "List players",
"tags": [
"Players"
]
}
},
"/players/{player_id_or_slug}": {
"get": {
"description": "Get a single player by ID or by slug",
"operationId": "get_players_playerIdOrSlug",
"parameters": [
{
"description": "A player ID or slug",
"in": "path",
"name": "player_id_or_slug",
"required": true,
"schema": {
"$ref": "#/components/schemas/PlayerIDOrSlug"
}
}
],
"responses": {
"200": {
"$ref": "#/components/responses/Player"
},
"400": {
"$ref": "#/components/responses/Error400"
},
"401": {
"$ref": "#/components/responses/Error401"
},
"403": {
"$ref": "#/components/responses/Error403"
},
"404": {
"$ref": "#/components/responses/Error404"
},
"422": {
"$ref": "#/components/responses/Error422"
}
},
"summary": "Get a player",
"tags": [
"Players"
]
}
},
"/players/{player_id_or_slug}/matches": {
"get": {
"description": "List matches for the given player. Only matches with detailed stats. Available with the plan _Historical data_.",
"operationId": "get_players_playerIdOrSlug_matches",
"parameters": [
{
"description": "A player ID or slug",
"in": "path",
"name": "player_id_or_slug",
"required": true,
"schema": {
"$ref": "#/components/schemas/PlayerIDOrSlug"
}
},
{
"description": "Options to filter results. String fields are case sensitive",
"example": {
"detailed_stats": true
},
"explode": true,
"in": "query",
"name": "filter",
"required": false,
"schema": {
"$ref": "#/components/schemas/filter_over_Matches"
},
"style": "deepObject"
},
{
"description": "Options to search results",
"example": {
"name": "Finals"
},
"explode": true,
"in": "query",
"name": "search",
"required": false,
"schema": {
"$ref": "#/components/schemas/search_over_Matches"
},
"style": "deepObject"
},
{
"description": "Options to sort results",
"example": [
"tournament_id",
"scheduled_at"
],
"in": "query",
"name": "sort",
"required": false,
"schema": {
"$ref": "#/components/schemas/sort_over_Matches"
}
},
{
"description": "Options to select results within ranges",
"example": {
"begin_at": [
"2019-04-08T17:00:00Z",
"2019-10-08T22:00:00Z"
]
},
"explode": true,
"in": "query",
"name": "range",
"required": false,
"schema": {
"$ref": "#/components/schemas/range_over_Matches"
},
"style": "deepObject"
},
{
"$ref": "#/components/parameters/Page"
},
{
"$ref": "#/components/parameters/PerPage"
}
],
"responses": {
"200": {
"$ref": "#/components/responses/Matches"
},
"400": {
"$ref": "#/components/responses/Error400"
},
"401": {
"$ref": "#/components/responses/Error401"
},
"403": {
"$ref": "#/components/responses/Error403"
},
"404": {
"$ref": "#/components/responses/Error404"
},
"422": {
"$ref": "#/components/responses/Error422"
}
},
"summary": "Get matches for a player",
"tags": [
"Players"
]
}
},
"/series": {
"get": {
"description": "List series",
"operationId": "get_series",
"parameters": [
{
"description": "Options to filter results. String fields are case sensitive",
"example": {
"winner_id": 390,
"winner_type": "Team"
},
"explode": true,
"in": "query",
"name": "filter",
"required": false,
"schema": {
"$ref": "#/components/schemas/filter_over_Series"
},
"style": "deepObject"
},
{
"description": "Options to search results",
"example": {
"slug": "lck"
},
"explode": true,
"in": "query",
"name": "search",
"required": false,
"schema": {
"$ref": "#/components/schemas/search_over_Series"
},
"style": "deepObject"
},
{
"description": "Options to sort results",
"example": [
"year",
"-modified_at"
],
"in": "query",
"name": "sort",
"required": false,
"schema": {
"$ref": "#/components/schemas/sort_over_Series"
}
},
{
"description": "Options to select results within ranges",
"example": {
"begin_at": [
"2019-04-08T17:00:00Z",
"2019-10-08T22:00:00Z"
]
},
"explode": true,
"in": "query",
"name": "range",
"required": false,
"schema": {
"$ref": "#/components/schemas/range_over_Series"
},
"style": "deepObject"
},
{
"$ref": "#/components/parameters/Page"
},
{
"$ref": "#/components/parameters/PerPage"
}
],
"responses": {
"200": {
"$ref": "#/components/responses/Series"
},
"400": {
"$ref": "#/components/responses/Error400"
},
"401": {
"$ref": "#/components/responses/Error401"
},
"403": {
"$ref": "#/components/responses/Error403"
},
"404": {
"$ref": "#/components/responses/Error404"
},
"422": {
"$ref": "#/components/responses/Error422"
}
},
"summary": "List series",
"tags": [
"Series"
]
}
},
"/series/past": {
"get": {
"description": "List past series",
"operationId": "get_series_past",
"parameters": [
{
"description": "Options to filter results. String fields are case sensitive",
"example": {
"winner_id": 390,
"winner_type": "Team"
},
"explode": true,
"in": "query",
"name": "filter",
"required": false,
"schema": {
"$ref": "#/components/schemas/filter_over_Series"
},
"style": "deepObject"
},
{
"description": "Options to search results",
"example": {
"slug": "lck"
},
"explode": true,
"in": "query",
"name": "search",
"required": false,
"schema": {
"$ref": "#/components/schemas/search_over_Series"
},
"style": "deepObject"
},
{
"description": "Options to sort results",
"example": [
"year",
"-modified_at"
],
"in": "query",
"name": "sort",
"required": false,
"schema": {
"$ref": "#/components/schemas/sort_over_Series"
}
},
{
"description": "Options to select results within ranges",
"example": {
"begin_at": [
"2019-04-08T17:00:00Z",
"2019-10-08T22:00:00Z"
]
},
"explode": true,
"in": "query",
"name": "range",
"required": false,
"schema": {
"$ref": "#/components/schemas/range_over_Series"
},
"style": "deepObject"
},
{
"$ref": "#/components/parameters/Page"
},
{
"$ref": "#/components/parameters/PerPage"
}
],
"responses": {
"200": {
"$ref": "#/components/responses/Series"
},
"400": {
"$ref": "#/components/responses/Error400"
},
"401": {
"$ref": "#/components/responses/Error401"
},
"403": {
"$ref": "#/components/responses/Error403"
},
"404": {
"$ref": "#/components/responses/Error404"
},
"422": {
"$ref": "#/components/responses/Error422"
}
},
"summary": "Get past series",
"tags": [
"Series"
]
}
},
"/series/running": {
"get": {
"description": "List currently running series",
"operationId": "get_series_running",
"parameters": [
{
"description": "Options to filter results. String fields are case sensitive",
"example": {
"winner_id": 390,
"winner_type": "Team"
},
"explode": true,
"in": "query",
"name": "filter",
"required": false,
"schema": {
"$ref": "#/components/schemas/filter_over_Series"
},
"style": "deepObject"
},
{
"description": "Options to search results",
"example": {
"slug": "lck"
},
"explode": true,
"in": "query",
"name": "search",
"required": false,
"schema": {
"$ref": "#/components/schemas/search_over_Series"
},
"style": "deepObject"
},
{
"description": "Options to sort results",
"example": [
"year",
"-modified_at"
],
"in": "query",
"name": "sort",
"required": false,
"schema": {
"$ref": "#/components/schemas/sort_over_Series"
}
},
{
"description": "Options to select results within ranges",
"example": {
"begin_at": [
"2019-04-08T17:00:00Z",
"2019-10-08T22:00:00Z"
]
},
"explode": true,
"in": "query",
"name": "range",
"required": false,
"schema": {
"$ref": "#/components/schemas/range_over_Series"
},
"style": "deepObject"
},
{
"$ref": "#/components/parameters/Page"
},
{
"$ref": "#/components/parameters/PerPage"
}
],
"responses": {
"200": {
"$ref": "#/components/responses/Series"
},
"400": {
"$ref": "#/components/responses/Error400"
},
"401": {
"$ref": "#/components/responses/Error401"
},
"403": {
"$ref": "#/components/responses/Error403"
},
"404": {
"$ref": "#/components/responses/Error404"
},
"422": {
"$ref": "#/components/responses/Error422"
}
},
"summary": "Get running series",
"tags": [
"Series"
]
}
},
"/series/upcoming": {
"get": {
"description": "List upcoming series",
"operationId": "get_series_upcoming",
"parameters": [
{
"description": "Options to filter results. String fields are case sensitive",
"example": {
"winner_id": 390,
"winner_type": "Team"
},
"explode": true,
"in": "query",
"name": "filter",
"required": false,
"schema": {
"$ref": "#/components/schemas/filter_over_Series"
},
"style": "deepObject"
},
{
"description": "Options to search results",
"example": {
"slug": "lck"
},
"explode": true,
"in": "query",
"name": "search",
"required": false,
"schema": {
"$ref": "#/components/schemas/search_over_Series"
},
"style": "deepObject"
},
{
"description": "Options to sort results",
"example": [
"year",
"-modified_at"
],
"in": "query",
"name": "sort",
"required": false,
"schema": {
"$ref": "#/components/schemas/sort_over_Series"
}
},
{
"description": "Options to select results within ranges",
"example": {
"begin_at": [
"2019-04-08T17:00:00Z",
"2019-10-08T22:00:00Z"
]
},
"explode": true,
"in": "query",
"name": "range",
"required": false,
"schema": {
"$ref": "#/components/schemas/range_over_Series"
},
"style": "deepObject"
},
{
"$ref": "#/components/parameters/Page"
},
{
"$ref": "#/components/parameters/PerPage"
}
],
"responses": {
"200": {
"$ref": "#/components/responses/Series"
},
"400": {
"$ref": "#/components/responses/Error400"
},
"401": {
"$ref": "#/components/responses/Error401"
},
"403": {
"$ref": "#/components/responses/Error403"
},
"404": {
"$ref": "#/components/responses/Error404"
},
"422": {
"$ref": "#/components/responses/Error422"
}
},
"summary": "Get upcoming series",
"tags": [
"Series"
]
}
},
"/series/{serie_id_or_slug}": {
"get": {
"description": "Get a single serie by ID or by slug",
"operationId": "get_series_serieIdOrSlug",
"parameters": [
{
"description": "A serie ID or slug",
"in": "path",
"name": "serie_id_or_slug",
"required": true,
"schema": {
"$ref": "#/components/schemas/SerieIDOrSlug"
}
}
],
"responses": {
"200": {
"$ref": "#/components/responses/Serie"
},
"400": {
"$ref": "#/components/responses/Error400"
},
"401": {
"$ref": "#/components/responses/Error401"
},
"403": {
"$ref": "#/components/responses/Error403"
},
"404": {
"$ref": "#/components/responses/Error404"
},
"422": {
"$ref": "#/components/responses/Error422"
}
},
"summary": "Get a serie",
"tags": [
"Series"
]
}
},
"/series/{serie_id_or_slug}/matches": {
"get": {
"description": "List matches of the given serie",
"operationId": "get_series_serieIdOrSlug_matches",
"parameters": [
{
"description": "A serie ID or slug",
"in": "path",
"name": "serie_id_or_slug",
"required": true,
"schema": {
"$ref": "#/components/schemas/SerieIDOrSlug"
}
},
{
"description": "Options to filter results. String fields are case sensitive",
"example": {
"detailed_stats": true
},
"explode": true,
"in": "query",
"name": "filter",
"required": false,
"schema": {
"$ref": "#/components/schemas/filter_over_Matches"
},
"style": "deepObject"
},
{
"description": "Options to search results",
"example": {
"name": "Finals"
},
"explode": true,
"in": "query",
"name": "search",
"required": false,
"schema": {
"$ref": "#/components/schemas/search_over_Matches"
},
"style": "deepObject"
},
{
"description": "Options to sort results",
"example": [
"tournament_id",
"scheduled_at"
],
"in": "query",
"name": "sort",
"required": false,
"schema": {
"$ref": "#/components/schemas/sort_over_Matches"
}
},
{
"description": "Options to select results within ranges",
"example": {
"begin_at": [
"2019-04-08T17:00:00Z",
"2019-10-08T22:00:00Z"
]
},
"explode": true,
"in": "query",
"name": "range",
"required": false,
"schema": {
"$ref": "#/components/schemas/range_over_Matches"
},
"style": "deepObject"
},
{
"$ref": "#/components/parameters/Page"
},
{
"$ref": "#/components/parameters/PerPage"
}
],
"responses": {
"200": {
"$ref": "#/components/responses/Matches"
},
"400": {
"$ref": "#/components/responses/Error400"
},
"401": {
"$ref": "#/components/responses/Error401"
},
"403": {
"$ref": "#/components/responses/Error403"
},
"404": {
"$ref": "#/components/responses/Error404"
},
"422": {
"$ref": "#/components/responses/Error422"
}
},
"summary": "Get matches for a serie",
"tags": [
"Series"
]
}
},
"/series/{serie_id_or_slug}/matches/past": {
"get": {
"description": "List past matches for the given serie",
"operationId": "get_series_serieIdOrSlug_matches_past",
"parameters": [
{
"description": "A serie ID or slug",
"in": "path",
"name": "serie_id_or_slug",
"required": true,
"schema": {
"$ref": "#/components/schemas/SerieIDOrSlug"
}
},
{
"description": "Options to filter results. String fields are case sensitive",
"example": {
"detailed_stats": true
},
"explode": true,
"in": "query",
"name": "filter",
"required": false,
"schema": {
"$ref": "#/components/schemas/filter_over_Matches"
},
"style": "deepObject"
},
{
"description": "Options to search results",
"example": {
"name": "Finals"
},
"explode": true,
"in": "query",
"name": "search",
"required": false,
"schema": {
"$ref": "#/components/schemas/search_over_Matches"
},
"style": "deepObject"
},
{
"description": "Options to sort results",
"example": [
"tournament_id",
"scheduled_at"
],
"in": "query",
"name": "sort",
"required": false,
"schema": {
"$ref": "#/components/schemas/sort_over_Matches"
}
},
{
"description": "Options to select results within ranges",
"example": {
"begin_at": [
"2019-04-08T17:00:00Z",
"2019-10-08T22:00:00Z"
]
},
"explode": true,
"in": "query",
"name": "range",
"required": false,
"schema": {
"$ref": "#/components/schemas/range_over_Matches"
},
"style": "deepObject"
},
{
"$ref": "#/components/parameters/Page"
},
{
"$ref": "#/components/parameters/PerPage"
}
],
"responses": {
"200": {
"$ref": "#/components/responses/Matches"
},
"400": {
"$ref": "#/components/responses/Error400"
},
"401": {
"$ref": "#/components/responses/Error401"
},
"403": {
"$ref": "#/components/responses/Error403"
},
"404": {
"$ref": "#/components/responses/Error404"
},
"422": {
"$ref": "#/components/responses/Error422"
}
},
"summary": "Get past matches for serie",
"tags": [
"Series"
]
}
},
"/series/{serie_id_or_slug}/matches/running": {
"get": {
"description": "List currently running matches for the given serie",
"operationId": "get_series_serieIdOrSlug_matches_running",
"parameters": [
{
"description": "A serie ID or slug",
"in": "path",
"name": "serie_id_or_slug",
"required": true,
"schema": {
"$ref": "#/components/schemas/SerieIDOrSlug"
}
},
{
"description": "Options to filter results. String fields are case sensitive",
"example": {
"detailed_stats": true
},
"explode": true,
"in": "query",
"name": "filter",
"required": false,
"schema": {
"$ref": "#/components/schemas/filter_over_Matches"
},
"style": "deepObject"
},
{
"description": "Options to search results",
"example": {
"name": "Finals"
},
"explode": true,
"in": "query",
"name": "search",
"required": false,
"schema": {
"$ref": "#/components/schemas/search_over_Matches"
},
"style": "deepObject"
},
{
"description": "Options to sort results",
"example": [
"tournament_id",
"scheduled_at"
],
"in": "query",
"name": "sort",
"required": false,
"schema": {
"$ref": "#/components/schemas/sort_over_Matches"
}
},
{
"description": "Options to select results within ranges",
"example": {
"begin_at": [
"2019-04-08T17:00:00Z",
"2019-10-08T22:00:00Z"
]
},
"explode": true,
"in": "query",
"name": "range",
"required": false,
"schema": {
"$ref": "#/components/schemas/range_over_Matches"
},
"style": "deepObject"
},
{
"$ref": "#/components/parameters/Page"
},
{
"$ref": "#/components/parameters/PerPage"
}
],
"responses": {
"200": {
"$ref": "#/components/responses/Matches"
},
"400": {
"$ref": "#/components/responses/Error400"
},
"401": {
"$ref": "#/components/responses/Error401"
},
"403": {
"$ref": "#/components/responses/Error403"
},
"404": {
"$ref": "#/components/responses/Error404"
},
"422": {
"$ref": "#/components/responses/Error422"
}
},
"summary": "Get running matches for serie",
"tags": [
"Series"
]
}
},
"/series/{serie_id_or_slug}/matches/upcoming": {
"get": {
"description": "List upcoming matches for the given serie",
"operationId": "get_series_serieIdOrSlug_matches_upcoming",
"parameters": [
{
"description": "A serie ID or slug",
"in": "path",
"name": "serie_id_or_slug",
"required": true,
"schema": {
"$ref": "#/components/schemas/SerieIDOrSlug"
}
},
{
"description": "Options to filter results. String fields are case sensitive",
"example": {
"detailed_stats": true
},
"explode": true,
"in": "query",
"name": "filter",
"required": false,
"schema": {
"$ref": "#/components/schemas/filter_over_Matches"
},
"style": "deepObject"
},
{
"description": "Options to search results",
"example": {
"name": "Finals"
},
"explode": true,
"in": "query",
"name": "search",
"required": false,
"schema": {
"$ref": "#/components/schemas/search_over_Matches"
},
"style": "deepObject"
},
{
"description": "Options to sort results",
"example": [
"tournament_id",
"scheduled_at"
],
"in": "query",
"name": "sort",
"required": false,
"schema": {
"$ref": "#/components/schemas/sort_over_Matches"
}
},
{
"description": "Options to select results within ranges",
"example": {
"begin_at": [
"2019-04-08T17:00:00Z",
"2019-10-08T22:00:00Z"
]
},
"explode": true,
"in": "query",
"name": "range",
"required": false,
"schema": {
"$ref": "#/components/schemas/range_over_Matches"
},
"style": "deepObject"
},
{
"$ref": "#/components/parameters/Page"
},
{
"$ref": "#/components/parameters/PerPage"
}
],
"responses": {
"200": {
"$ref": "#/components/responses/Matches"
},
"400": {
"$ref": "#/components/responses/Error400"
},
"401": {
"$ref": "#/components/responses/Error401"
},
"403": {
"$ref": "#/components/responses/Error403"
},
"404": {
"$ref": "#/components/responses/Error404"
},
"422": {
"$ref": "#/components/responses/Error422"
}
},
"summary": "Get upcoming matches for serie",
"tags": [
"Series"
]
}
},
"/series/{serie_id_or_slug}/players": {
"get": {
"description": "List players for the given serie",
"operationId": "get_series_serieIdOrSlug_players",
"parameters": [
{
"description": "Options to filter results. String fields are case sensitive",
"example": {
"hometown": "France"
},
"explode": true,
"in": "query",
"name": "filter",
"required": false,
"schema": {
"$ref": "#/components/schemas/filter_over_Players"
},
"style": "deepObject"
},
{
"description": "Options to search results",
"example": {
"role": "tank"
},
"explode": true,
"in": "query",
"name": "search",
"required": false,
"schema": {
"$ref": "#/components/schemas/search_over_Players"
},
"style": "deepObject"
},
{
"description": "Options to sort results",
"example": [
"last_name"
],
"in": "query",
"name": "sort",
"required": false,
"schema": {
"$ref": "#/components/schemas/sort_over_Players"
}
},
{
"description": "Options to select results within ranges",
"example": {
"name": [
"f",
"i"
]
},
"explode": true,
"in": "query",
"name": "range",
"required": false,
"schema": {
"$ref": "#/components/schemas/range_over_Players"
},
"style": "deepObject"
},
{
"$ref": "#/components/parameters/Page"
},
{
"$ref": "#/components/parameters/PerPage"
},
{
"description": "Automatically added",
"in": "path",
"name": "serie_id_or_slug",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"$ref": "#/components/responses/Players"
},
"400": {
"$ref": "#/components/responses/Error400"
},
"401": {
"$ref": "#/components/responses/Error401"
},
"403": {
"$ref": "#/components/responses/Error403"
},
"404": {
"$ref": "#/components/responses/Error404"
},
"422": {
"$ref": "#/components/responses/Error422"
}
},
"summary": "Get players for a serie",
"tags": [
"Series"
]
}
},
"/series/{serie_id_or_slug}/tournaments": {
"get": {
"description": "List tournaments of the given serie",
"operationId": "get_series_serieIdOrSlug_tournaments",
"parameters": [
{
"description": "A serie ID or slug",
"in": "path",
"name": "serie_id_or_slug",
"required": true,
"schema": {
"$ref": "#/components/schemas/SerieIDOrSlug"
}
},
{
"description": "Options to filter results. String fields are case sensitive",
"example": {
"serie_id": 1808
},
"explode": true,
"in": "query",
"name": "filter",
"required": false,
"schema": {
"$ref": "#/components/schemas/filter_over_ShortTournaments"
},
"style": "deepObject"
},
{
"description": "Options to search results",
"example": {
"name": "group"
},
"explode": true,
"in": "query",
"name": "search",
"required": false,
"schema": {
"$ref": "#/components/schemas/search_over_ShortTournaments"
},
"style": "deepObject"
},
{
"description": "Options to sort results",
"example": [
"serie_id",
"-begin_at"
],
"in": "query",
"name": "sort",
"required": false,
"schema": {
"$ref": "#/components/schemas/sort_over_ShortTournaments"
}
},
{
"description": "Options to select results within ranges",
"example": {
"begin_at": [
"2019-04-08T17:00:00Z",
"2019-10-08T22:00:00Z"
]
},
"explode": true,
"in": "query",
"name": "range",
"required": false,
"schema": {
"$ref": "#/components/schemas/range_over_ShortTournaments"
},
"style": "deepObject"
},
{
"$ref": "#/components/parameters/Page"
},
{
"$ref": "#/components/parameters/PerPage"
}
],
"responses": {
"200": {
"$ref": "#/components/responses/ShortTournaments"
},
"400": {
"$ref": "#/components/responses/Error400"
},
"401": {
"$ref": "#/components/responses/Error401"
},
"403": {
"$ref": "#/components/responses/Error403"
},
"404": {
"$ref": "#/components/responses/Error404"
},
"422": {
"$ref": "#/components/responses/Error422"
}
},
"summary": "Get tournaments for a serie",
"tags": [
"Series"
]
}
},
"/teams": {
"get": {
"description": "List teams",
"operationId": "get_teams",
"parameters": [
{
"description": "Options to filter results. String fields are case sensitive",
"example": {
"acronym": "RNG"
},
"explode": true,
"in": "query",
"name": "filter",
"required": false,
"schema": {
"$ref": "#/components/schemas/filter_over_Teams"
},
"style": "deepObject"
},
{
"description": "Options to search results",
"example": {
"name": "vitality"
},
"explode": true,
"in": "query",
"name": "search",
"required": false,
"schema": {
"$ref": "#/components/schemas/search_over_Teams"
},
"style": "deepObject"
},
{
"description": "Options to sort results",
"example": [
"name"
],
"in": "query",
"name": "sort",
"required": false,
"schema": {
"$ref": "#/components/schemas/sort_over_Teams"
}
},
{
"description": "Options to select results within ranges",
"example": {
"name": [
"vitality",
"vultur"
]
},
"explode": true,
"in": "query",
"name": "range",
"required": false,
"schema": {
"$ref": "#/components/schemas/range_over_Teams"
},
"style": "deepObject"
},
{
"$ref": "#/components/parameters/Page"
},
{
"$ref": "#/components/parameters/PerPage"
}
],
"responses": {
"200": {
"$ref": "#/components/responses/Teams"
},
"400": {
"$ref": "#/components/responses/Error400"
},
"401": {
"$ref": "#/components/responses/Error401"
},
"403": {
"$ref": "#/components/responses/Error403"
},
"404": {
"$ref": "#/components/responses/Error404"
},
"422": {
"$ref": "#/components/responses/Error422"
}
},
"summary": "List teams",
"tags": [
"Teams"
]
}
},
"/teams/{team_id_or_slug}": {
"get": {
"description": "Get a single team by ID or by slug",
"operationId": "get_teams_teamIdOrSlug",
"parameters": [
{
"description": "A team ID or slug",
"in": "path",
"name": "team_id_or_slug",
"required": true,
"schema": {
"$ref": "#/components/schemas/TeamIDOrSlug"
}
}
],
"responses": {
"200": {
"$ref": "#/components/responses/Team"
},
"400": {
"$ref": "#/components/responses/Error400"
},
"401": {
"$ref": "#/components/responses/Error401"
},
"403": {
"$ref": "#/components/responses/Error403"
},
"404": {
"$ref": "#/components/responses/Error404"
},
"422": {
"$ref": "#/components/responses/Error422"
}
},
"summary": "Get a team",
"tags": [
"Teams"
]
}
},
"/teams/{team_id_or_slug}/leagues": {
"get": {
"description": "List leagues in which the given team was part of",
"operationId": "get_teams_teamIdOrSlug_leagues",
"parameters": [
{
"description": "A team ID or slug",
"in": "path",
"name": "team_id_or_slug",
"required": true,
"schema": {
"$ref": "#/components/schemas/TeamIDOrSlug"
}
},
{
"description": "Options to search results",
"example": {
"name": "Contenders"
},
"explode": true,
"in": "query",
"name": "search",
"required": false,
"schema": {
"$ref": "#/components/schemas/search_over_Leagues"
},
"style": "deepObject"
},
{
"description": "Options to sort results",
"example": [
"name",
"-modified_at"
],
"in": "query",
"name": "sort",
"required": false,
"schema": {
"$ref": "#/components/schemas/sort_over_Leagues"
}
},
{
"description": "Options to select results within ranges",
"example": {
"modified_at": [
"2019-04-08T17:00:00Z",
"2019-10-08T22:00:00Z"
]
},
"explode": true,
"in": "query",
"name": "range",
"required": false,
"schema": {
"$ref": "#/components/schemas/range_over_Leagues"
},
"style": "deepObject"
},
{
"description": "Options to filter results. String fields are case sensitive",
"explode": true,
"in": "query",
"name": "filter",
"required": false,
"schema": {
"$ref": "#/components/schemas/filter_over_Leagues"
},
"style": "deepObject"
},
{
"$ref": "#/components/parameters/Page"
},
{
"$ref": "#/components/parameters/PerPage"
}
],
"responses": {
"200": {
"$ref": "#/components/responses/Leagues"
},
"400": {
"$ref": "#/components/responses/Error400"
},
"401": {
"$ref": "#/components/responses/Error401"
},
"403": {
"$ref": "#/components/responses/Error403"
},
"404": {
"$ref": "#/components/responses/Error404"
},
"422": {
"$ref": "#/components/responses/Error422"
}
},
"summary": "Get leagues for a team",
"tags": [
"Teams"
]
}
},
"/teams/{team_id_or_slug}/matches": {
"get": {
"description": "List matches for the given team",
"operationId": "get_teams_teamIdOrSlug_matches",
"parameters": [
{
"description": "A team ID or slug",
"in": "path",
"name": "team_id_or_slug",
"required": true,
"schema": {
"$ref": "#/components/schemas/TeamIDOrSlug"
}
},
{
"description": "Options to filter results. String fields are case sensitive",
"example": {
"detailed_stats": true
},
"explode": true,
"in": "query",
"name": "filter",
"required": false,
"schema": {
"$ref": "#/components/schemas/filter_over_Matches"
},
"style": "deepObject"
},
{
"description": "Options to search results",
"example": {
"name": "Finals"
},
"explode": true,
"in": "query",
"name": "search",
"required": false,
"schema": {
"$ref": "#/components/schemas/search_over_Matches"
},
"style": "deepObject"
},
{
"description": "Options to sort results",
"example": [
"tournament_id",
"scheduled_at"
],
"in": "query",
"name": "sort",
"required": false,
"schema": {
"$ref": "#/components/schemas/sort_over_Matches"
}
},
{
"description": "Options to select results within ranges",
"example": {
"begin_at": [
"2019-04-08T17:00:00Z",
"2019-10-08T22:00:00Z"
]
},
"explode": true,
"in": "query",
"name": "range",
"required": false,
"schema": {
"$ref": "#/components/schemas/range_over_Matches"
},
"style": "deepObject"
},
{
"$ref": "#/components/parameters/Page"
},
{
"$ref": "#/components/parameters/PerPage"
}
],
"responses": {
"200": {
"$ref": "#/components/responses/Matches"
},
"400": {
"$ref": "#/components/responses/Error400"
},
"401": {
"$ref": "#/components/responses/Error401"
},
"403": {
"$ref": "#/components/responses/Error403"
},
"404": {
"$ref": "#/components/responses/Error404"
},
"422": {
"$ref": "#/components/responses/Error422"
}
},
"summary": "Get matches for team",
"tags": [
"Teams"
]
}
},
"/teams/{team_id_or_slug}/series": {
"get": {
"description": "List series in which the given team was part of",
"operationId": "get_teams_teamIdOrSlug_series",
"parameters": [
{
"description": "A team ID or slug",
"in": "path",
"name": "team_id_or_slug",
"required": true,
"schema": {
"$ref": "#/components/schemas/TeamIDOrSlug"
}
},
{
"description": "Options to filter results. String fields are case sensitive",
"example": {
"winner_id": 390,
"winner_type": "Team"
},
"explode": true,
"in": "query",
"name": "filter",
"required": false,
"schema": {
"$ref": "#/components/schemas/filter_over_Series"
},
"style": "deepObject"
},
{
"description": "Options to search results",
"example": {
"slug": "lck"
},
"explode": true,
"in": "query",
"name": "search",
"required": false,
"schema": {
"$ref": "#/components/schemas/search_over_Series"
},
"style": "deepObject"
},
{
"description": "Options to sort results",
"example": [
"year",
"-modified_at"
],
"in": "query",
"name": "sort",
"required": false,
"schema": {
"$ref": "#/components/schemas/sort_over_Series"
}
},
{
"description": "Options to select results within ranges",
"example": {
"begin_at": [
"2019-04-08T17:00:00Z",
"2019-10-08T22:00:00Z"
]
},
"explode": true,
"in": "query",
"name": "range",
"required": false,
"schema": {
"$ref": "#/components/schemas/range_over_Series"
},
"style": "deepObject"
},
{
"$ref": "#/components/parameters/Page"
},
{
"$ref": "#/components/parameters/PerPage"
}
],
"responses": {
"200": {
"$ref": "#/components/responses/Series"
},
"400": {
"$ref": "#/components/responses/Error400"
},
"401": {
"$ref": "#/components/responses/Error401"
},
"403": {
"$ref": "#/components/responses/Error403"
},
"404": {
"$ref": "#/components/responses/Error404"
},
"422": {
"$ref": "#/components/responses/Error422"
}
},
"summary": "Get series for a team",
"tags": [
"Teams"
]
}
},
"/teams/{team_id_or_slug}/tournaments": {
"get": {
"description": "List tournaments in which the given team was part of",
"operationId": "get_teams_teamIdOrSlug_tournaments",
"parameters": [
{
"description": "A team ID or slug",
"in": "path",
"name": "team_id_or_slug",
"required": true,
"schema": {
"$ref": "#/components/schemas/TeamIDOrSlug"
}
},
{
"description": "Options to filter results. String fields are case sensitive",
"example": {
"serie_id": 1808
},
"explode": true,
"in": "query",
"name": "filter",
"required": false,
"schema": {
"$ref": "#/components/schemas/filter_over_ShortTournaments"
},
"style": "deepObject"
},
{
"description": "Options to search results",
"example": {
"name": "group"
},
"explode": true,
"in": "query",
"name": "search",
"required": false,
"schema": {
"$ref": "#/components/schemas/search_over_ShortTournaments"
},
"style": "deepObject"
},
{
"description": "Options to sort results",
"example": [
"serie_id",
"-begin_at"
],
"in": "query",
"name": "sort",
"required": false,
"schema": {
"$ref": "#/components/schemas/sort_over_ShortTournaments"
}
},
{
"description": "Options to select results within ranges",
"example": {
"begin_at": [
"2019-04-08T17:00:00Z",
"2019-10-08T22:00:00Z"
]
},
"explode": true,
"in": "query",
"name": "range",
"required": false,
"schema": {
"$ref": "#/components/schemas/range_over_ShortTournaments"
},
"style": "deepObject"
},
{
"$ref": "#/components/parameters/Page"
},
{
"$ref": "#/components/parameters/PerPage"
}
],
"responses": {
"200": {
"$ref": "#/components/responses/ShortTournaments"
},
"400": {
"$ref": "#/components/responses/Error400"
},
"401": {
"$ref": "#/components/responses/Error401"
},
"403": {
"$ref": "#/components/responses/Error403"
},
"404": {
"$ref": "#/components/responses/Error404"
},
"422": {
"$ref": "#/components/responses/Error422"
}
},
"summary": "Get tournaments for a team",
"tags": [
"Teams"
]
}
},
"/tournaments": {
"get": {
"description": "List tournaments",
"operationId": "get_tournaments",
"parameters": [
{
"description": "Options to filter results. String fields are case sensitive",
"example": {
"serie_id": 1808
},
"explode": true,
"in": "query",
"name": "filter",
"required": false,
"schema": {
"$ref": "#/components/schemas/filter_over_ShortTournaments"
},
"style": "deepObject"
},
{
"description": "Options to search results",
"example": {
"name": "group"
},
"explode": true,
"in": "query",
"name": "search",
"required": false,
"schema": {
"$ref": "#/components/schemas/search_over_ShortTournaments"
},
"style": "deepObject"
},
{
"description": "Options to sort results",
"example": [
"serie_id",
"-begin_at"
],
"in": "query",
"name": "sort",
"required": false,
"schema": {
"$ref": "#/components/schemas/sort_over_ShortTournaments"
}
},
{
"description": "Options to select results within ranges",
"example": {
"begin_at": [
"2019-04-08T17:00:00Z",
"2019-10-08T22:00:00Z"
]
},
"explode": true,
"in": "query",
"name": "range",
"required": false,
"schema": {
"$ref": "#/components/schemas/range_over_ShortTournaments"
},
"style": "deepObject"
},
{
"$ref": "#/components/parameters/Page"
},
{
"$ref": "#/components/parameters/PerPage"
}
],
"responses": {
"200": {
"$ref": "#/components/responses/ShortTournaments"
},
"400": {
"$ref": "#/components/responses/Error400"
},
"401": {
"$ref": "#/components/responses/Error401"
},
"403": {
"$ref": "#/components/responses/Error403"
},
"404": {
"$ref": "#/components/responses/Error404"
},
"422": {
"$ref": "#/components/responses/Error422"
}
},
"summary": "List tournaments",
"tags": [
"Tournaments"
]
}
},
"/tournaments/past": {
"get": {
"description": "List past tournaments",
"operationId": "get_tournaments_past",
"parameters": [
{
"description": "Options to filter results. String fields are case sensitive",
"example": {
"serie_id": 1808
},
"explode": true,
"in": "query",
"name": "filter",
"required": false,
"schema": {
"$ref": "#/components/schemas/filter_over_ShortTournaments"
},
"style": "deepObject"
},
{
"description": "Options to search results",
"example": {
"name": "group"
},
"explode": true,
"in": "query",
"name": "search",
"required": false,
"schema": {
"$ref": "#/components/schemas/search_over_ShortTournaments"
},
"style": "deepObject"
},
{
"description": "Options to sort results",
"example": [
"serie_id",
"-begin_at"
],
"in": "query",
"name": "sort",
"required": false,
"schema": {
"$ref": "#/components/schemas/sort_over_ShortTournaments"
}
},
{
"description": "Options to select results within ranges",
"example": {
"begin_at": [
"2019-04-08T17:00:00Z",
"2019-10-08T22:00:00Z"
]
},
"explode": true,
"in": "query",
"name": "range",
"required": false,
"schema": {
"$ref": "#/components/schemas/range_over_ShortTournaments"
},
"style": "deepObject"
},
{
"$ref": "#/components/parameters/Page"
},
{
"$ref": "#/components/parameters/PerPage"
}
],
"responses": {
"200": {
"$ref": "#/components/responses/ShortTournaments"
},
"400": {
"$ref": "#/components/responses/Error400"
},
"401": {
"$ref": "#/components/responses/Error401"
},
"403": {
"$ref": "#/components/responses/Error403"
},
"404": {
"$ref": "#/components/responses/Error404"
},
"422": {
"$ref": "#/components/responses/Error422"
}
},
"summary": "Get past tournaments",
"tags": [
"Tournaments"
]
}
},
"/tournaments/running": {
"get": {
"description": "List currently running tournaments",
"operationId": "get_tournaments_running",
"parameters": [
{
"description": "Options to filter results. String fields are case sensitive",
"example": {
"serie_id": 1808
},
"explode": true,
"in": "query",
"name": "filter",
"required": false,
"schema": {
"$ref": "#/components/schemas/filter_over_ShortTournaments"
},
"style": "deepObject"
},
{
"description": "Options to search results",
"example": {
"name": "group"
},
"explode": true,
"in": "query",
"name": "search",
"required": false,
"schema": {
"$ref": "#/components/schemas/search_over_ShortTournaments"
},
"style": "deepObject"
},
{
"description": "Options to sort results",
"example": [
"serie_id",
"-begin_at"
],
"in": "query",
"name": "sort",
"required": false,
"schema": {
"$ref": "#/components/schemas/sort_over_ShortTournaments"
}
},
{
"description": "Options to select results within ranges",
"example": {
"begin_at": [
"2019-04-08T17:00:00Z",
"2019-10-08T22:00:00Z"
]
},
"explode": true,
"in": "query",
"name": "range",
"required": false,
"schema": {
"$ref": "#/components/schemas/range_over_ShortTournaments"
},
"style": "deepObject"
},
{
"$ref": "#/components/parameters/Page"
},
{
"$ref": "#/components/parameters/PerPage"
}
],
"responses": {
"200": {
"$ref": "#/components/responses/ShortTournaments"
},
"400": {
"$ref": "#/components/responses/Error400"
},
"401": {
"$ref": "#/components/responses/Error401"
},
"403": {
"$ref": "#/components/responses/Error403"
},
"404": {
"$ref": "#/components/responses/Error404"
},
"422": {
"$ref": "#/components/responses/Error422"
}
},
"summary": "Get running tournaments",
"tags": [
"Tournaments"
]
}
},
"/tournaments/upcoming": {
"get": {
"description": "List upcoming tournaments",
"operationId": "get_tournaments_upcoming",
"parameters": [
{
"description": "Options to filter results. String fields are case sensitive",
"example": {
"serie_id": 1808
},
"explode": true,
"in": "query",
"name": "filter",
"required": false,
"schema": {
"$ref": "#/components/schemas/filter_over_ShortTournaments"
},
"style": "deepObject"
},
{
"description": "Options to search results",
"example": {
"name": "group"
},
"explode": true,
"in": "query",
"name": "search",
"required": false,
"schema": {
"$ref": "#/components/schemas/search_over_ShortTournaments"
},
"style": "deepObject"
},
{
"description": "Options to sort results",
"example": [
"serie_id",
"-begin_at"
],
"in": "query",
"name": "sort",
"required": false,
"schema": {
"$ref": "#/components/schemas/sort_over_ShortTournaments"
}
},
{
"description": "Options to select results within ranges",
"example": {
"begin_at": [
"2019-04-08T17:00:00Z",
"2019-10-08T22:00:00Z"
]
},
"explode": true,
"in": "query",
"name": "range",
"required": false,
"schema": {
"$ref": "#/components/schemas/range_over_ShortTournaments"
},
"style": "deepObject"
},
{
"$ref": "#/components/parameters/Page"
},
{
"$ref": "#/components/parameters/PerPage"
}
],
"responses": {
"200": {
"$ref": "#/components/responses/ShortTournaments"
},
"400": {
"$ref": "#/components/responses/Error400"
},
"401": {
"$ref": "#/components/responses/Error401"
},
"403": {
"$ref": "#/components/responses/Error403"
},
"404": {
"$ref": "#/components/responses/Error404"
},
"422": {
"$ref": "#/components/responses/Error422"
}
},
"summary": "Get upcoming tournaments",
"tags": [
"Tournaments"
]
}
},
"/tournaments/{tournament_id_or_slug}": {
"get": {
"description": "Get a single tournament by ID or by slug",
"operationId": "get_tournaments_tournamentIdOrSlug",
"parameters": [
{
"description": "A tournament ID or slug",
"in": "path",
"name": "tournament_id_or_slug",
"required": true,
"schema": {
"$ref": "#/components/schemas/TournamentIDOrSlug"
}
}
],
"responses": {
"200": {
"$ref": "#/components/responses/Tournament"
},
"400": {
"$ref": "#/components/responses/Error400"
},
"401": {
"$ref": "#/components/responses/Error401"
},
"403": {
"$ref": "#/components/responses/Error403"
},
"404": {
"$ref": "#/components/responses/Error404"
},
"422": {
"$ref": "#/components/responses/Error422"
}
},
"summary": "Get a tournament",
"tags": [
"Tournaments"
]
}
},
"/tournaments/{tournament_id_or_slug}/brackets": {
"get": {
"description": "Get the brackets of the given tournament",
"operationId": "get_tournaments_tournamentIdOrSlug_brackets",
"parameters": [
{
"description": "A tournament ID or slug",
"in": "path",
"name": "tournament_id_or_slug",
"required": true,
"schema": {
"$ref": "#/components/schemas/TournamentIDOrSlug"
}
},
{
"description": "Options to filter results. String fields are case sensitive",
"explode": true,
"in": "query",
"name": "filter",
"required": false,
"schema": {
"$ref": "#/components/schemas/filter_over_Brackets"
},
"style": "deepObject"
},
{
"description": "Options to select results within ranges",
"explode": true,
"in": "query",
"name": "range",
"required": false,
"schema": {
"$ref": "#/components/schemas/range_over_Brackets"
},
"style": "deepObject"
},
{
"description": "Options to sort results",
"in": "query",
"name": "sort",
"required": false,
"schema": {
"$ref": "#/components/schemas/sort_over_Brackets"
}
},
{
"description": "Options to search results",
"explode": true,
"in": "query",
"name": "search",
"required": false,
"schema": {
"$ref": "#/components/schemas/search_over_Brackets"
},
"style": "deepObject"
},
{
"$ref": "#/components/parameters/Page"
},
{
"$ref": "#/components/parameters/PerPage"
}
],
"responses": {
"200": {
"$ref": "#/components/responses/Brackets"
},
"400": {
"$ref": "#/components/responses/Error400"
},
"401": {
"$ref": "#/components/responses/Error401"
},
"403": {
"$ref": "#/components/responses/Error403"
},
"404": {
"$ref": "#/components/responses/Error404"
},
"422": {
"$ref": "#/components/responses/Error422"
}
},
"summary": "Get a tournament's brackets",
"tags": [
"Tournaments"
]
}
},
"/tournaments/{tournament_id_or_slug}/matches": {
"get": {
"description": "List matches for the given tournament",
"operationId": "get_tournaments_tournamentIdOrSlug_matches",
"parameters": [
{
"description": "A tournament ID or slug",
"in": "path",
"name": "tournament_id_or_slug",
"required": true,
"schema": {
"$ref": "#/components/schemas/TournamentIDOrSlug"
}
},
{
"description": "Options to filter results. String fields are case sensitive",
"example": {
"detailed_stats": true
},
"explode": true,
"in": "query",
"name": "filter",
"required": false,
"schema": {
"$ref": "#/components/schemas/filter_over_Matches"
},
"style": "deepObject"
},
{
"description": "Options to search results",
"example": {
"name": "Finals"
},
"explode": true,
"in": "query",
"name": "search",
"required": false,
"schema": {
"$ref": "#/components/schemas/search_over_Matches"
},
"style": "deepObject"
},
{
"description": "Options to sort results",
"example": [
"tournament_id",
"scheduled_at"
],
"in": "query",
"name": "sort",
"required": false,
"schema": {
"$ref": "#/components/schemas/sort_over_Matches"
}
},
{
"description": "Options to select results within ranges",
"example": {
"begin_at": [
"2019-04-08T17:00:00Z",
"2019-10-08T22:00:00Z"
]
},
"explode": true,
"in": "query",
"name": "range",
"required": false,
"schema": {
"$ref": "#/components/schemas/range_over_Matches"
},
"style": "deepObject"
},
{
"$ref": "#/components/parameters/Page"
},
{
"$ref": "#/components/parameters/PerPage"
}
],
"responses": {
"200": {
"$ref": "#/components/responses/Matches"
},
"400": {
"$ref": "#/components/responses/Error400"
},
"401": {
"$ref": "#/components/responses/Error401"
},
"403": {
"$ref": "#/components/responses/Error403"
},
"404": {
"$ref": "#/components/responses/Error404"
},
"422": {
"$ref": "#/components/responses/Error422"
}
},
"summary": "Get matches for tournament",
"tags": [
"Tournaments"
]
}
},
"/tournaments/{tournament_id_or_slug}/players": {
"get": {
"description": "List players for the given tournament",
"operationId": "get_tournaments_tournamentIdOrSlug_players",
"parameters": [
{
"description": "Options to filter results. String fields are case sensitive",
"example": {
"hometown": "France"
},
"explode": true,
"in": "query",
"name": "filter",
"required": false,
"schema": {
"$ref": "#/components/schemas/filter_over_Players"
},
"style": "deepObject"
},
{
"description": "Options to search results",
"example": {
"role": "tank"
},
"explode": true,
"in": "query",
"name": "search",
"required": false,
"schema": {
"$ref": "#/components/schemas/search_over_Players"
},
"style": "deepObject"
},
{
"description": "Options to sort results",
"example": [
"last_name"
],
"in": "query",
"name": "sort",
"required": false,
"schema": {
"$ref": "#/components/schemas/sort_over_Players"
}
},
{
"description": "Options to select results within ranges",
"example": {
"name": [
"f",
"i"
]
},
"explode": true,
"in": "query",
"name": "range",
"required": false,
"schema": {
"$ref": "#/components/schemas/range_over_Players"
},
"style": "deepObject"
},
{
"$ref": "#/components/parameters/Page"
},
{
"$ref": "#/components/parameters/PerPage"
},
{
"description": "Automatically added",
"in": "path",
"name": "tournament_id_or_slug",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"$ref": "#/components/responses/Players"
},
"400": {
"$ref": "#/components/responses/Error400"
},
"401": {
"$ref": "#/components/responses/Error401"
},
"403": {
"$ref": "#/components/responses/Error403"
},
"404": {
"$ref": "#/components/responses/Error404"
},
"422": {
"$ref": "#/components/responses/Error422"
}
},
"summary": "Get players for a tournament",
"tags": [
"Tournaments"
]
}
},
"/tournaments/{tournament_id_or_slug}/rosters": {
"get": {
"description": "List participants (player or team) for a given tournament.",
"operationId": "get_tournaments_tournamentIdOrSlug_rosters",
"parameters": [
{
"description": "A tournament ID or slug",
"in": "path",
"name": "tournament_id_or_slug",
"required": true,
"schema": {
"$ref": "#/components/schemas/TournamentIDOrSlug"
}
}
],
"responses": {
"200": {
"$ref": "#/components/responses/TournamentRosters"
},
"400": {
"$ref": "#/components/responses/Error400"
},
"401": {
"$ref": "#/components/responses/Error401"
},
"403": {
"$ref": "#/components/responses/Error403"
},
"404": {
"$ref": "#/components/responses/Error404"
},
"422": {
"$ref": "#/components/responses/Error422"
}
},
"summary": "Get rosters for a tournament",
"tags": [
"Tournaments"
]
}
},
"/tournaments/{tournament_id_or_slug}/standings": {
"get": {
"description": "Get the current standings for a given tournament",
"operationId": "get_tournaments_tournamentIdOrSlug_standings",
"parameters": [
{
"description": "A tournament ID or slug",
"in": "path",
"name": "tournament_id_or_slug",
"required": true,
"schema": {
"$ref": "#/components/schemas/TournamentIDOrSlug"
}
},
{
"$ref": "#/components/parameters/Page"
},
{
"$ref": "#/components/parameters/PerPage"
}
],
"responses": {
"200": {
"$ref": "#/components/responses/Standings"
},
"400": {
"$ref": "#/components/responses/Error400"
},
"401": {
"$ref": "#/components/responses/Error401"
},
"403": {
"$ref": "#/components/responses/Error403"
},
"404": {
"$ref": "#/components/responses/Error404"
},
"422": {
"$ref": "#/components/responses/Error422"
}
},
"summary": "Get tournament standings",
"tags": [
"Tournaments"
]
}
},
"/tournaments/{tournament_id_or_slug}/teams": {
"get": {
"description": "List teams for the given tournament",
"operationId": "get_tournaments_tournamentIdOrSlug_teams",
"parameters": [
{
"description": "A tournament ID or slug",
"in": "path",
"name": "tournament_id_or_slug",
"required": true,
"schema": {
"$ref": "#/components/schemas/TournamentIDOrSlug"
}
},
{
"description": "Options to filter results. String fields are case sensitive",
"example": {
"acronym": "RNG"
},
"explode": true,
"in": "query",
"name": "filter",
"required": false,
"schema": {
"$ref": "#/components/schemas/filter_over_Teams"
},
"style": "deepObject"
},
{
"description": "Options to search results",
"example": {
"name": "vitality"
},
"explode": true,
"in": "query",
"name": "search",
"required": false,
"schema": {
"$ref": "#/components/schemas/search_over_Teams"
},
"style": "deepObject"
},
{
"description": "Options to sort results",
"example": [
"name"
],
"in": "query",
"name": "sort",
"required": false,
"schema": {
"$ref": "#/components/schemas/sort_over_Teams"
}
},
{
"description": "Options to select results within ranges",
"example": {
"name": [
"vitality",
"vultur"
]
},
"explode": true,
"in": "query",
"name": "range",
"required": false,
"schema": {
"$ref": "#/components/schemas/range_over_Teams"
},
"style": "deepObject"
},
{
"$ref": "#/components/parameters/Page"
},
{
"$ref": "#/components/parameters/PerPage"
}
],
"responses": {
"200": {
"$ref": "#/components/responses/Teams"
},
"400": {
"$ref": "#/components/responses/Error400"
},
"401": {
"$ref": "#/components/responses/Error401"
},
"403": {
"$ref": "#/components/responses/Error403"
},
"404": {
"$ref": "#/components/responses/Error404"
},
"422": {
"$ref": "#/components/responses/Error422"
}
},
"summary": "Get teams for a tournament",
"tags": [
"tournaments"
]
}
},
"/videogames": {
"get": {
"description": "List videogames",
"operationId": "get_videogames",
"parameters": [
{
"$ref": "#/components/parameters/Page"
},
{
"$ref": "#/components/parameters/PerPage"
}
],
"responses": {
"200": {
"$ref": "#/components/responses/Videogames"
},
"400": {
"$ref": "#/components/responses/Error400"
},
"401": {
"$ref": "#/components/responses/Error401"
},
"403": {
"$ref": "#/components/responses/Error403"
},
"404": {
"$ref": "#/components/responses/Error404"
},
"422": {
"$ref": "#/components/responses/Error422"
}
},
"summary": "List videogames",
"tags": [
"Videogames"
]
}
},
"/videogames/{videogame_id_or_slug}": {
"get": {
"description": "Get a single videogame by ID or by slug",
"operationId": "get_videogames_videogameIdOrSlug",
"parameters": [
{
"description": "A videogame ID or slug",
"in": "path",
"name": "videogame_id_or_slug",
"required": true,
"schema": {
"$ref": "#/components/schemas/VideogameIDOrSlug"
}
}
],
"responses": {
"200": {
"$ref": "#/components/responses/Videogame"
},
"400": {
"$ref": "#/components/responses/Error400"
},
"401": {
"$ref": "#/components/responses/Error401"
},
"403": {
"$ref": "#/components/responses/Error403"
},
"404": {
"$ref": "#/components/responses/Error404"
},
"422": {
"$ref": "#/components/responses/Error422"
}
},
"summary": "Get a videogame",
"tags": [
"Videogames"
]
}
},
"/videogames/{videogame_id_or_slug}/leagues": {
"get": {
"operationId": "get_videogames_videogameIdOrSlug_leagues",
"parameters": [
{
"description": "A videogame ID or slug",
"in": "path",
"name": "videogame_id_or_slug",
"required": true,
"schema": {
"$ref": "#/components/schemas/VideogameIDOrSlug"
}
},
{
"description": "Options to search results",
"example": {
"name": "Contenders"
},
"explode": true,
"in": "query",
"name": "search",
"required": false,
"schema": {
"$ref": "#/components/schemas/search_over_Leagues"
},
"style": "deepObject"
},
{
"description": "Options to sort results",
"example": [
"name",
"-modified_at"
],
"in": "query",
"name": "sort",
"required": false,
"schema": {
"$ref": "#/components/schemas/sort_over_Leagues"
}
},
{
"description": "Options to select results within ranges",
"example": {
"modified_at": [
"2019-04-08T17:00:00Z",
"2019-10-08T22:00:00Z"
]
},
"explode": true,
"in": "query",
"name": "range",
"required": false,
"schema": {
"$ref": "#/components/schemas/range_over_Leagues"
},
"style": "deepObject"
},
{
"description": "Options to filter results. String fields are case sensitive",
"explode": true,
"in": "query",
"name": "filter",
"required": false,
"schema": {
"$ref": "#/components/schemas/filter_over_Leagues"
},
"style": "deepObject"
},
{
"$ref": "#/components/parameters/Page"
},
{
"$ref": "#/components/parameters/PerPage"
}
],
"responses": {
"200": {
"$ref": "#/components/responses/Leagues"
},
"400": {
"$ref": "#/components/responses/Error400"
},
"401": {
"$ref": "#/components/responses/Error401"
},
"403": {
"$ref": "#/components/responses/Error403"
},
"404": {
"$ref": "#/components/responses/Error404"
},
"422": {
"$ref": "#/components/responses/Error422"
}
},
"tags": [
"Videogames"
]
}
},
"/videogames/{videogame_id_or_slug}/series": {
"get": {
"description": "List series for the given videogame",
"operationId": "get_videogames_videogameIdOrSlug_series",
"parameters": [
{
"description": "A videogame ID or slug",
"in": "path",
"name": "videogame_id_or_slug",
"required": true,
"schema": {
"$ref": "#/components/schemas/VideogameIDOrSlug"
}
},
{
"description": "Options to filter results. String fields are case sensitive",
"example": {
"winner_id": 390,
"winner_type": "Team"
},
"explode": true,
"in": "query",
"name": "filter",
"required": false,
"schema": {
"$ref": "#/components/schemas/filter_over_Series"
},
"style": "deepObject"
},
{
"description": "Options to search results",
"example": {
"slug": "lck"
},
"explode": true,
"in": "query",
"name": "search",
"required": false,
"schema": {
"$ref": "#/components/schemas/search_over_Series"
},
"style": "deepObject"
},
{
"description": "Options to sort results",
"example": [
"year",
"-modified_at"
],
"in": "query",
"name": "sort",
"required": false,
"schema": {
"$ref": "#/components/schemas/sort_over_Series"
}
},
{
"description": "Options to select results within ranges",
"example": {
"begin_at": [
"2019-04-08T17:00:00Z",
"2019-10-08T22:00:00Z"
]
},
"explode": true,
"in": "query",
"name": "range",
"required": false,
"schema": {
"$ref": "#/components/schemas/range_over_Series"
},
"style": "deepObject"
},
{
"$ref": "#/components/parameters/Page"
},
{
"$ref": "#/components/parameters/PerPage"
}
],
"responses": {
"200": {
"$ref": "#/components/responses/Series"
},
"400": {
"$ref": "#/components/responses/Error400"
},
"401": {
"$ref": "#/components/responses/Error401"
},
"403": {
"$ref": "#/components/responses/Error403"
},
"404": {
"$ref": "#/components/responses/Error404"
},
"422": {
"$ref": "#/components/responses/Error422"
}
},
"summary": "List series for a videogame",
"tags": [
"Videogames"
]
}
},
"/videogames/{videogame_id_or_slug}/tournaments": {
"get": {
"description": "List tournaments of the given videogame",
"operationId": "get_videogames_videogameIdOrSlug_tournaments",
"parameters": [
{
"description": "A videogame ID or slug",
"in": "path",
"name": "videogame_id_or_slug",
"required": true,
"schema": {
"$ref": "#/components/schemas/VideogameIDOrSlug"
}
},
{
"description": "Options to filter results. String fields are case sensitive",
"explode": true,
"in": "query",
"name": "filter",
"required": false,
"schema": {
"$ref": "#/components/schemas/filter_over_ShortTournaments"
},
"style": "deepObject"
},
{
"description": "Options to select results within ranges",
"explode": true,
"in": "query",
"name": "range",
"required": false,
"schema": {
"$ref": "#/components/schemas/range_over_ShortTournaments"
},
"style": "deepObject"
},
{
"description": "Options to sort results",
"in": "query",
"name": "sort",
"required": false,
"schema": {
"$ref": "#/components/schemas/sort_over_ShortTournaments"
}
},
{
"description": "Options to search results",
"explode": true,
"in": "query",
"name": "search",
"required": false,
"schema": {
"$ref": "#/components/schemas/search_over_ShortTournaments"
},
"style": "deepObject"
},
{
"$ref": "#/components/parameters/Page"
},
{
"$ref": "#/components/parameters/PerPage"
}
],
"responses": {
"200": {
"$ref": "#/components/responses/ShortTournaments"
},
"400": {
"$ref": "#/components/responses/Error400"
},
"401": {
"$ref": "#/components/responses/Error401"
},
"403": {
"$ref": "#/components/responses/Error403"
},
"404": {
"$ref": "#/components/responses/Error404"
},
"422": {
"$ref": "#/components/responses/Error422"
}
},
"summary": "Get tournaments for a videogame",
"tags": [
"Videogames"
]
}
},
"/videogames/{videogame_id_or_slug}/versions": {
"get": {
"description": "List available versions for a given videogame",
"operationId": "get_videogames_videogameIdOrSlug_versions",
"parameters": [
{
"description": "A videogame ID or slug",
"in": "path",
"name": "videogame_id_or_slug",
"required": true,
"schema": {
"$ref": "#/components/schemas/VideogameIDOrSlug"
}
},
{
"description": "Options to filter results. String fields are case sensitive",
"explode": true,
"in": "query",
"name": "filter",
"required": false,
"schema": {
"$ref": "#/components/schemas/filter_over_ShortVideogameVersions"
},
"style": "deepObject"
},
{
"description": "Options to select results within ranges",
"explode": true,
"in": "query",
"name": "range",
"required": false,
"schema": {
"$ref": "#/components/schemas/range_over_ShortVideogameVersions"
},
"style": "deepObject"
},
{
"description": "Options to sort results",
"in": "query",
"name": "sort",
"required": false,
"schema": {
"$ref": "#/components/schemas/sort_over_ShortVideogameVersions"
}
},
{
"description": "Options to search results",
"explode": true,
"in": "query",
"name": "search",
"required": false,
"schema": {
"$ref": "#/components/schemas/search_over_ShortVideogameVersions"
},
"style": "deepObject"
},
{
"$ref": "#/components/parameters/Page"
},
{
"$ref": "#/components/parameters/PerPage"
}
],
"responses": {
"200": {
"$ref": "#/components/responses/ShortVideogameVersions"
},
"400": {
"$ref": "#/components/responses/Error400"
},
"401": {
"$ref": "#/components/responses/Error401"
},
"403": {
"$ref": "#/components/responses/Error403"
},
"404": {
"$ref": "#/components/responses/Error404"
},
"422": {
"$ref": "#/components/responses/Error422"
}
},
"summary": "List videogame versions",
"tags": [
"Videogames"
]
}
}
},
"components": {
"parameters": {
"Page": {
"description": "Pagination in the form of `page=2` or `page[size]=30&page[number]=2`",
"in": "query",
"name": "page",
"required": false,
"schema": {
"oneOf": [
{
"default": 1,
"minimum": 1,
"type": "integer"
},
{
"additionalProperties": false,
"properties": {
"number": {
"default": 1,
"minimum": 1,
"type": "integer"
},
"size": {
"default": 50,
"maximum": 100,
"minimum": 1,
"type": "integer"
}
},
"type": "object"
}
]
}
},
"PerPage": {
"description": "Equivalent to `page[size]`",
"example": 5,
"in": "query",
"name": "per_page",
"required": false,
"schema": {
"default": 50,
"maximum": 100,
"minimum": 1,
"type": "integer"
}
}
},
"responses": {
"AdditionIncidents": {
"content": {
"application/json": {
"examples": {
"/additions?page[size]=1": {
"description": "/additions?page[size]=1",
"value": [
{
"change_type": "creation",
"id": 591022,
"modified_at": "2021-04-22T23:45:50Z",
"object": {
"begin_at": "2021-04-24T16:00:00Z",
"detailed_stats": true,
"draw": false,
"end_at": null,
"forfeit": false,
"game_advantage": null,
"games": [
{
"begin_at": null,
"complete": false,
"detailed_stats": true,
"end_at": null,
"finished": false,
"forfeit": false,
"id": 674134,
"length": null,
"match_id": 591022,
"position": 1,
"status": "not_started",
"video_url": null,
"winner": {
"id": null,
"type": null
},
"winner_type": null
},
{
"begin_at": null,
"complete": false,
"detailed_stats": true,
"end_at": null,
"finished": false,
"forfeit": false,
"id": 674135,
"length": null,
"match_id": 591022,
"position": 2,
"status": "not_started",
"video_url": null,
"winner": {
"id": null,
"type": null
},
"winner_type": null
},
{
"begin_at": null,
"complete": false,
"detailed_stats": true,
"end_at": null,
"finished": false,
"forfeit": false,
"id": 674136,
"length": null,
"match_id": 591022,
"position": 3,
"status": "not_started",
"video_url": null,
"winner": {
"id": null,
"type": null
},
"winner_type": null
},
{
"begin_at": null,
"complete": false,
"detailed_stats": true,
"end_at": null,
"finished": false,
"forfeit": false,
"id": 674137,
"length": null,
"match_id": 591022,
"position": 4,
"status": "not_started",
"video_url": null,
"winner": {
"id": null,
"type": null
},
"winner_type": null
},
{
"begin_at": null,
"complete": false,
"detailed_stats": true,
"end_at": null,
"finished": false,
"forfeit": false,
"id": 674138,
"length": null,
"match_id": 591022,
"position": 5,
"status": "not_started",
"video_url": null,
"winner": {
"id": null,
"type": null
},
"winner_type": null
}
],
"id": 591022,
"league": {
"id": 4562,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4562/positive-fire-games1615995754399-logo-1.png",
"modified_at": "2021-04-22T10:15:12Z",
"name": "Positive Fire Games",
"slug": "dota-2-positive-fire-games",
"url": null
},
"league_id": 4562,
"live": {
"opens_at": null,
"supported": false,
"url": null
},
"live_embed_url": "https://player.twitch.tv/?channel=bufistudio_ru",
"match_type": "best_of",
"modified_at": "2021-04-22T23:45:50Z",
"name": "Grand Final: TBD vs TBD",
"number_of_games": 5,
"official_stream_url": "https://www.twitch.tv/bufistudio_ru",
"opponents": [],
"original_scheduled_at": "2021-04-24T16:00:00Z",
"rescheduled": false,
"results": [],
"scheduled_at": "2021-04-24T16:00:00Z",
"serie": {
"begin_at": "2021-04-12T10:00:00Z",
"description": null,
"end_at": null,
"full_name": "2021",
"id": 3538,
"league_id": 4562,
"modified_at": "2021-04-12T07:20:33Z",
"name": null,
"season": null,
"slug": "dota-2-positive-fire-games-2021",
"tier": "d",
"winner_id": null,
"winner_type": null,
"year": 2021
},
"serie_id": 3538,
"slug": "2021-04-24-69c221a9-a725-451e-a61d-e8f4915a67d5",
"status": "not_started",
"streams": {
"english": {
"embed_url": "https://player.twitch.tv/?channel=bufistudio_eu",
"raw_url": "https://www.twitch.tv/bufistudio_eu"
},
"official": {
"embed_url": "https://player.twitch.tv/?channel=bufistudio_ru",
"raw_url": "https://www.twitch.tv/bufistudio_ru"
},
"russian": {
"embed_url": "https://player.twitch.tv/?channel=bufistudio_ru",
"raw_url": "https://www.twitch.tv/bufistudio_ru"
}
},
"streams_list": [
{
"embed_url": "https://player.twitch.tv/?channel=bufistudio_eu",
"language": "en",
"main": false,
"official": false,
"raw_url": "https://www.twitch.tv/bufistudio_eu"
},
{
"embed_url": "https://player.twitch.tv/?channel=bufistudio_ru",
"language": "ru",
"main": true,
"official": true,
"raw_url": "https://www.twitch.tv/bufistudio_ru"
}
],
"tournament": {
"begin_at": "2021-04-19T10:00:00Z",
"end_at": "2021-04-24T22:00:00Z",
"id": 5928,
"league_id": 4562,
"live_supported": false,
"modified_at": "2021-04-22T13:14:31Z",
"name": "Playoffs",
"prizepool": "10000 United States Dollar",
"serie_id": 3538,
"slug": "dota-2-positive-fire-games-2021-playoffs",
"winner_id": null,
"winner_type": "Team"
},
"tournament_id": 5928,
"videogame": {
"id": 4,
"name": "Dota 2",
"slug": "dota-2"
},
"videogame_version": null,
"winner": null,
"winner_id": null
},
"type": "match"
}
]
}
},
"schema": {
"$ref": "#/components/schemas/AdditionIncidents"
}
}
},
"description": "A list of created entities"
},
"BettingLeague": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BettingLeague"
}
}
},
"description": "An e-sport league"
},
"BettingLeagues": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BettingLeagues"
}
}
},
"description": "A list of e-sport leagues"
},
"BettingMatch": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BettingMatch"
}
}
},
"description": "An e-sport match"
},
"BettingMatches": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BettingMatches"
}
}
},
"description": "A list of e-sport matches"
},
"BettingMatchesMarkets": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BettingMatchesMarkets"
}
}
},
"description": "A list of markets of matches and their games"
},
"BettingSerie": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BettingSerie"
}
}
},
"description": "An e-sport series"
},
"BettingSeries": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BettingSeries"
}
}
},
"description": "A list of e-sport series"
},
"BettingTournament": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BettingTournament"
}
}
},
"description": "An e-sport tournament"
},
"BettingTournaments": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BettingTournaments"
}
}
},
"description": "A list of e-sport tournaments"
},
"Brackets": {
"content": {
"application/json": {
"examples": {
"/tournaments/1590/brackets?page[size]=1": {
"description": "/tournaments/1590/brackets?page[size]=1",
"value": [
{
"begin_at": "2018-09-14T07:40:32Z",
"detailed_stats": true,
"draw": false,
"end_at": "2018-09-14T12:27:17Z",
"forfeit": false,
"game_advantage": null,
"games": [
{
"begin_at": "2018-09-14T07:40:32Z",
"complete": true,
"detailed_stats": true,
"end_at": "2018-09-14T08:16:23Z",
"finished": true,
"forfeit": false,
"id": 201539,
"length": 2151,
"match_id": 53996,
"position": 1,
"status": "finished",
"video_url": null,
"winner": {
"id": 74,
"type": "Team"
},
"winner_type": "Team"
},
{
"begin_at": "2018-09-14T08:45:20Z",
"complete": true,
"detailed_stats": true,
"end_at": "2018-09-14T09:22:45Z",
"finished": true,
"forfeit": false,
"id": 201540,
"length": 2245,
"match_id": 53996,
"position": 2,
"status": "finished",
"video_url": null,
"winner": {
"id": 74,
"type": "Team"
},
"winner_type": "Team"
},
{
"begin_at": "2018-09-14T09:52:08Z",
"complete": true,
"detailed_stats": true,
"end_at": "2018-09-14T10:22:46Z",
"finished": true,
"forfeit": false,
"id": 201541,
"length": 1838,
"match_id": 53996,
"position": 3,
"status": "finished",
"video_url": null,
"winner": {
"id": 411,
"type": "Team"
},
"winner_type": "Team"
},
{
"begin_at": "2018-09-14T10:46:57Z",
"complete": true,
"detailed_stats": true,
"end_at": "2018-09-14T11:20:18Z",
"finished": true,
"forfeit": false,
"id": 201542,
"length": 2001,
"match_id": 53996,
"position": 4,
"status": "finished",
"video_url": null,
"winner": {
"id": 411,
"type": "Team"
},
"winner_type": "Team"
},
{
"begin_at": "2018-09-14T11:48:17Z",
"complete": true,
"detailed_stats": true,
"end_at": "2018-09-14T12:27:17Z",
"finished": true,
"forfeit": false,
"id": 201543,
"length": 2340,
"match_id": 53996,
"position": 5,
"status": "finished",
"video_url": null,
"winner": {
"id": 74,
"type": "Team"
},
"winner_type": "Team"
}
],
"id": 53996,
"live": {
"opens_at": null,
"supported": false,
"url": null
},
"live_embed_url": null,
"match_type": "best_of",
"modified_at": "2019-01-10T10:40:58Z",
"name": "RNG vs IG",
"number_of_games": 5,
"official_stream_url": null,
"opponents": [
{
"opponent": {
"acronym": "RNG",
"id": 74,
"image_url": "https://cdn.dev.pandascore.co/images/team/image/74/royal-never-give-up-cyacqft1.png",
"location": "CN",
"modified_at": "2021-04-18T15:11:37Z",
"name": "Royal Never Give Up",
"slug": "royal-never-give-up"
},
"type": "Team"
},
{
"opponent": {
"acronym": "IG",
"id": 411,
"image_url": "https://cdn.dev.pandascore.co/images/team/image/411/invictus-gaming.png",
"location": "CN",
"modified_at": "2021-04-01T06:00:30Z",
"name": "Invictus Gaming",
"slug": "invictus-gaming"
},
"type": "Team"
}
],
"original_scheduled_at": null,
"previous_matches": [
{
"match_id": 53993,
"type": "winner"
},
{
"match_id": 53994,
"type": "winner"
}
],
"scheduled_at": "2018-09-14T07:00:00Z",
"slug": "royal-never-give-up-vs-invictus-gaming-2018-09-14",
"status": "finished",
"streams": {
"english": {
"embed_url": null,
"raw_url": null
},
"official": {
"embed_url": null,
"raw_url": null
},
"russian": {
"embed_url": null,
"raw_url": null
}
},
"streams_list": [],
"tournament_id": 1590,
"winner_id": 74
}
]
}
},
"schema": {
"$ref": "#/components/schemas/Brackets"
}
}
},
"description": "A tree of games played during a tournament"
},
"ChangeIncidents": {
"content": {
"application/json": {
"examples": {
"/changes?page[size]=1": {
"description": "/changes?page[size]=1",
"value": [
{
"change_type": "update",
"id": 588142,
"modified_at": "2021-04-23T10:07:21Z",
"object": {
"begin_at": "2021-04-23T11:07:19Z",
"detailed_stats": true,
"draw": false,
"end_at": null,
"forfeit": false,
"game_advantage": null,
"games": [
{
"begin_at": null,
"complete": true,
"detailed_stats": true,
"end_at": null,
"finished": false,
"forfeit": false,
"id": 223592,
"length": null,
"match_id": 588142,
"position": 1,
"status": "not_started",
"video_url": null,
"winner": {
"id": null,
"type": "Team"
},
"winner_type": "Team"
}
],
"id": 588142,
"league": {
"id": 4139,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4139/220px-EM_2020_Logo.png",
"modified_at": "2020-04-03T11:08:33Z",
"name": "European Masters",
"slug": "league-of-legends-european-masters",
"url": null
},
"league_id": 4139,
"live": {
"opens_at": "2021-04-23T10:52:19Z",
"supported": true,
"url": "wss://live.dev.pandascore.co/matches/588142"
},
"live_embed_url": "https://player.twitch.tv/?channel=otplol_",
"match_type": "best_of",
"modified_at": "2021-04-23T10:07:21Z",
"name": "VIT.B vs FNC.R",
"number_of_games": 1,
"official_stream_url": "https://www.twitch.tv/otplol_",
"opponents": [
{
"opponent": {
"acronym": "VIT.B",
"id": 126204,
"image_url": "https://cdn.dev.pandascore.co/images/team/image/126204/vitality-bee.png",
"location": "FR",
"modified_at": "2021-03-30T21:11:41Z",
"name": "Vitality.Bee",
"slug": "vitality-bee"
},
"type": "Team"
},
{
"opponent": {
"acronym": "FNC.R",
"id": 125912,
"image_url": "https://cdn.dev.pandascore.co/images/team/image/125912/330px-Fnatic_Risinglogo_square.png",
"location": "GB",
"modified_at": "2021-03-30T21:11:39Z",
"name": "Fnatic Rising",
"slug": "fnatic-rising"
},
"type": "Team"
}
],
"original_scheduled_at": "2021-03-29T17:30:00Z",
"rescheduled": true,
"results": [
{
"score": 0,
"team_id": 126204
},
{
"score": 0,
"team_id": 125912
}
],
"scheduled_at": "2021-04-23T11:07:19Z",
"serie": {
"begin_at": "2021-03-29T14:30:00Z",
"description": null,
"end_at": null,
"full_name": "Spring 2021",
"id": 3472,
"league_id": 4139,
"modified_at": "2021-03-26T04:47:29Z",
"name": null,
"season": "Spring",
"slug": "league-of-legends-european-masters-spring-2021",
"tier": "b",
"winner_id": null,
"winner_type": null,
"year": 2021
},
"serie_id": 3472,
"slug": "vitality-bee-vs-fnatic-rising-2021-03-29",
"status": "not_started",
"streams": {
"english": {
"embed_url": null,
"raw_url": ""
},
"official": {
"embed_url": "https://player.twitch.tv/?channel=otplol_",
"raw_url": "https://www.twitch.tv/otplol_"
},
"russian": {
"embed_url": null,
"raw_url": ""
}
},
"streams_list": [],
"tournament": {
"begin_at": "2021-03-29T14:30:00Z",
"end_at": null,
"id": 5779,
"league_id": 4139,
"live_supported": true,
"modified_at": "2021-04-23T08:18:46Z",
"name": "Play-in Group C",
"prizepool": null,
"serie_id": 3472,
"slug": "league-of-legends-european-masters-spring-2021-play-in-group-c",
"winner_id": 125912,
"winner_type": "Team"
},
"tournament_id": 5779,
"videogame": {
"id": 1,
"name": "LoL",
"slug": "league-of-legends"
},
"videogame_version": {
"current": false,
"name": "11.6.1"
},
"winner": null,
"winner_id": null
},
"type": "match"
}
]
}
},
"schema": {
"$ref": "#/components/schemas/ChangeIncidents"
}
}
},
"description": "A list of changed entities"
},
"DeletionIncidents": {
"content": {
"application/json": {
"examples": {
"/deletions?page[size]=1": {
"description": "/deletions?page[size]=1",
"value": [
{
"change_type": "deletion",
"id": 33734,
"modified_at": "2021-04-21T10:52:56Z",
"object": {
"deleted_at": "2021-04-21T10:52:56Z",
"reason": "Merged with 9638",
"videogame_id": 4
},
"type": "player"
}
]
}
},
"schema": {
"$ref": "#/components/schemas/DeletionIncidents"
}
}
},
"description": "A list of deleted entities"
},
"Error400": {
"content": {
"application/json": {
"schema": {
"properties": {
"error": {
"type": "string"
}
},
"type": "object"
}
}
},
"description": "Bad request"
},
"Error401": {
"content": {
"application/json": {
"schema": {
"properties": {
"error": {
"type": "string"
}
},
"type": "object"
}
}
},
"description": "Unauthorized"
},
"Error403": {
"content": {
"application/json": {
"schema": {
"properties": {
"error": {
"type": "string"
}
},
"type": "object"
}
}
},
"description": "Forbidden"
},
"Error404": {
"content": {
"application/json": {
"schema": {
"properties": {
"error": {
"type": "string"
}
},
"type": "object"
}
}
},
"description": "Not found"
},
"Error422": {
"content": {
"application/json": {
"schema": {
"properties": {
"error": {
"type": "string"
}
},
"type": "object"
}
}
},
"description": "Unprocessable Entity"
},
"Esport": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Esport"
}
}
},
"description": "An e-sport"
},
"Esports": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Esports"
}
}
},
"description": "A list of e-sports"
},
"Incidents": {
"content": {
"application/json": {
"examples": {
"/incidents?page[size]=1": {
"description": "/incidents?page[size]=1",
"value": [
{
"change_type": "update",
"id": 588142,
"modified_at": "2021-04-23T10:07:21Z",
"object": {
"begin_at": "2021-04-23T11:07:19Z",
"detailed_stats": true,
"draw": false,
"end_at": null,
"forfeit": false,
"game_advantage": null,
"games": [
{
"begin_at": null,
"complete": true,
"detailed_stats": true,
"end_at": null,
"finished": false,
"forfeit": false,
"id": 223592,
"length": null,
"match_id": 588142,
"position": 1,
"status": "not_started",
"video_url": null,
"winner": {
"id": null,
"type": "Team"
},
"winner_type": "Team"
}
],
"id": 588142,
"league": {
"id": 4139,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4139/220px-EM_2020_Logo.png",
"modified_at": "2020-04-03T11:08:33Z",
"name": "European Masters",
"slug": "league-of-legends-european-masters",
"url": null
},
"league_id": 4139,
"live": {
"opens_at": "2021-04-23T10:52:19Z",
"supported": true,
"url": "wss://live.dev.pandascore.co/matches/588142"
},
"live_embed_url": "https://player.twitch.tv/?channel=otplol_",
"match_type": "best_of",
"modified_at": "2021-04-23T10:07:21Z",
"name": "VIT.B vs FNC.R",
"number_of_games": 1,
"official_stream_url": "https://www.twitch.tv/otplol_",
"opponents": [
{
"opponent": {
"acronym": "VIT.B",
"id": 126204,
"image_url": "https://cdn.dev.pandascore.co/images/team/image/126204/vitality-bee.png",
"location": "FR",
"modified_at": "2021-03-30T21:11:41Z",
"name": "Vitality.Bee",
"slug": "vitality-bee"
},
"type": "Team"
},
{
"opponent": {
"acronym": "FNC.R",
"id": 125912,
"image_url": "https://cdn.dev.pandascore.co/images/team/image/125912/330px-Fnatic_Risinglogo_square.png",
"location": "GB",
"modified_at": "2021-03-30T21:11:39Z",
"name": "Fnatic Rising",
"slug": "fnatic-rising"
},
"type": "Team"
}
],
"original_scheduled_at": "2021-03-29T17:30:00Z",
"rescheduled": true,
"results": [
{
"score": 0,
"team_id": 126204
},
{
"score": 0,
"team_id": 125912
}
],
"scheduled_at": "2021-04-23T11:07:19Z",
"serie": {
"begin_at": "2021-03-29T14:30:00Z",
"description": null,
"end_at": null,
"full_name": "Spring 2021",
"id": 3472,
"league_id": 4139,
"modified_at": "2021-03-26T04:47:29Z",
"name": null,
"season": "Spring",
"slug": "league-of-legends-european-masters-spring-2021",
"tier": "b",
"winner_id": null,
"winner_type": null,
"year": 2021
},
"serie_id": 3472,
"slug": "vitality-bee-vs-fnatic-rising-2021-03-29",
"status": "not_started",
"streams": {
"english": {
"embed_url": null,
"raw_url": ""
},
"official": {
"embed_url": "https://player.twitch.tv/?channel=otplol_",
"raw_url": "https://www.twitch.tv/otplol_"
},
"russian": {
"embed_url": null,
"raw_url": ""
}
},
"streams_list": [],
"tournament": {
"begin_at": "2021-03-29T14:30:00Z",
"end_at": null,
"id": 5779,
"league_id": 4139,
"live_supported": true,
"modified_at": "2021-04-23T08:18:46Z",
"name": "Play-in Group C",
"prizepool": null,
"serie_id": 3472,
"slug": "league-of-legends-european-masters-spring-2021-play-in-group-c",
"winner_id": 125912,
"winner_type": "Team"
},
"tournament_id": 5779,
"videogame": {
"id": 1,
"name": "LoL",
"slug": "league-of-legends"
},
"videogame_version": {
"current": false,
"name": "11.6.1"
},
"winner": null,
"winner_id": null
},
"type": "match"
}
]
}
},
"schema": {
"$ref": "#/components/schemas/Incidents"
}
}
},
"description": "A list of created or updated entities"
},
"League": {
"content": {
"application/json": {
"examples": {
"/leagues/4199": {
"description": "/leagues/4199",
"value": {
"id": 4199,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4199/220px-Liga_LatinoamSrica_2020.png",
"modified_at": "2020-02-17T12:42:18Z",
"name": "LLA",
"series": [
{
"begin_at": "2019-01-19T20:00:00Z",
"description": "Liga Movistar Latinoamérica - Apertura 2019",
"end_at": "2019-03-26T14:00:00Z",
"full_name": "Opening 2019",
"id": 1708,
"league_id": 4199,
"modified_at": "2019-09-25T12:37:36Z",
"name": "",
"season": "Opening",
"slug": "league-of-legends-lla-opening-2019",
"tier": null,
"winner_id": 147,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-06-07T22:00:00Z",
"description": null,
"end_at": "2019-08-29T22:00:00Z",
"full_name": "Closing 2019",
"id": 1801,
"league_id": 4199,
"modified_at": "2019-09-01T22:56:39Z",
"name": null,
"season": "Closing",
"slug": "league-of-legends-lla-opening-2019-799c861e-c33d-42ac-8e89-185de2aadfb4",
"tier": null,
"winner_id": 147,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2020-02-14T23:00:00Z",
"description": null,
"end_at": "2020-05-03T01:04:00Z",
"full_name": "Opening 2020",
"id": 2368,
"league_id": 4199,
"modified_at": "2020-05-03T01:06:05Z",
"name": null,
"season": "Opening",
"slug": "league-of-legends-lla-opening-2020",
"tier": null,
"winner_id": 124416,
"winner_type": "Team",
"year": 2020
},
{
"begin_at": "2020-06-19T22:00:00Z",
"description": null,
"end_at": "2020-08-30T00:54:00Z",
"full_name": "Closing 2020",
"id": 2733,
"league_id": 4199,
"modified_at": "2020-08-30T00:59:54Z",
"name": null,
"season": "Closing",
"slug": "league-of-legends-lla-closing-2020",
"tier": "b",
"winner_id": 1635,
"winner_type": "Team",
"year": 2020
},
{
"begin_at": "2021-01-30T23:00:00Z",
"description": null,
"end_at": "2021-04-11T02:37:00Z",
"full_name": "Opening 2021",
"id": 3268,
"league_id": 4199,
"modified_at": "2021-04-11T02:57:57Z",
"name": "Opening",
"season": null,
"slug": "league-of-legends-lla-opening-2021",
"tier": "b",
"winner_id": 127470,
"winner_type": "Team",
"year": 2021
}
],
"slug": "league-of-legends-lla",
"url": "http://la.lolesports.com/",
"videogame": {
"current_version": "11.8.1",
"id": 1,
"name": "LoL",
"slug": "league-of-legends"
}
}
}
},
"schema": {
"$ref": "#/components/schemas/League"
}
}
},
"description": "A league"
},
"Leagues": {
"content": {
"application/json": {
"examples": {
"/leagues?page[size]=1": {
"description": "/leagues?page[size]=1",
"value": [
{
"id": 4566,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4566/600px-Copa_Elite_Six.png",
"modified_at": "2021-04-20T11:28:53Z",
"name": "Copa Elite Six",
"series": [
{
"begin_at": "2021-04-20T16:00:00Z",
"description": null,
"end_at": "2021-04-24T22:00:00Z",
"full_name": "Stage 1 2021",
"id": 3566,
"league_id": 4566,
"modified_at": "2021-04-20T11:30:15Z",
"name": "Stage 1",
"season": "",
"slug": "r6-siege-copa-elite-six-stage-1-2021",
"tier": "b",
"winner_id": null,
"winner_type": null,
"year": 2021
}
],
"slug": "r6-siege-copa-elite-six",
"url": null,
"videogame": {
"current_version": null,
"id": 24,
"name": "Rainbow 6 Siege",
"slug": "r6-siege"
}
}
]
}
},
"schema": {
"$ref": "#/components/schemas/Leagues"
}
}
},
"description": "A list of leagues"
},
"Lives": {
"content": {
"application/json": {
"examples": {
"/lives?page[size]=1": {
"description": "/lives?page[size]=1",
"value": [
{
"endpoints": [
{
"begin_at": null,
"expected_begin_at": "2021-04-23T09:18:46Z",
"last_active": null,
"match_id": 588144,
"open": true,
"type": "frames",
"url": "wss://live.pandascore.co/matches/588144"
},
{
"begin_at": null,
"expected_begin_at": "2021-04-23T09:18:46Z",
"last_active": null,
"match_id": 588144,
"open": true,
"type": "events",
"url": "wss://live.pandascore.co/matches/588144/events"
}
],
"event": {
"begin_at": "2021-04-23T09:18:46Z",
"end_at": null,
"game": "league-of-legends",
"id": 588144,
"is_active": false,
"stream_url": "https://www.twitch.tv/otplol_",
"tournament_id": 5779
},
"match": {
"begin_at": "2021-04-23T09:18:46Z",
"detailed_stats": true,
"draw": false,
"end_at": null,
"forfeit": false,
"game_advantage": null,
"games": [
{
"begin_at": null,
"complete": true,
"detailed_stats": true,
"end_at": null,
"finished": false,
"forfeit": false,
"id": 223594,
"length": null,
"match_id": 588144,
"position": 1,
"status": "not_started",
"video_url": null,
"winner": {
"id": null,
"type": "Team"
},
"winner_type": "Team"
}
],
"id": 588144,
"league": {
"id": 4139,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4139/220px-EM_2020_Logo.png",
"modified_at": "2020-04-03T11:08:33Z",
"name": "European Masters",
"slug": "league-of-legends-european-masters",
"url": null
},
"league_id": 4139,
"live": {
"opens_at": "2021-04-23T09:03:46Z",
"supported": true,
"url": "wss://live.dev.pandascore.co/matches/588144"
},
"live_embed_url": "https://player.twitch.tv/?channel=otplol_",
"match_type": "best_of",
"modified_at": "2021-04-23T08:18:48Z",
"name": "GSK vs VIT.B",
"number_of_games": 1,
"official_stream_url": "https://www.twitch.tv/otplol_",
"opponents": [
{
"opponent": {
"acronym": "GSK",
"id": 128777,
"image_url": "https://cdn.dev.pandascore.co/images/team/image/128777/goskillalogo_square.png",
"location": null,
"modified_at": "2021-04-12T16:51:35Z",
"name": "Goskilla",
"slug": "goskilla"
},
"type": "Team"
},
{
"opponent": {
"acronym": "VIT.B",
"id": 126204,
"image_url": "https://cdn.dev.pandascore.co/images/team/image/126204/vitality-bee.png",
"location": "FR",
"modified_at": "2021-03-30T21:11:41Z",
"name": "Vitality.Bee",
"slug": "vitality-bee"
},
"type": "Team"
}
],
"original_scheduled_at": "2021-03-29T19:30:00Z",
"rescheduled": true,
"results": [
{
"score": 0,
"team_id": 128777
},
{
"score": 0,
"team_id": 126204
}
],
"scheduled_at": "2021-04-23T09:18:46Z",
"serie": {
"begin_at": "2021-03-29T14:30:00Z",
"description": null,
"end_at": null,
"full_name": "Spring 2021",
"id": 3472,
"league_id": 4139,
"modified_at": "2021-03-26T04:47:29Z",
"name": null,
"season": "Spring",
"slug": "league-of-legends-european-masters-spring-2021",
"tier": "b",
"winner_id": null,
"winner_type": null,
"year": 2021
},
"serie_id": 3472,
"slug": "goskilla-vs-vitality-bee-2021-03-29",
"status": "not_started",
"streams": {
"english": {
"embed_url": null,
"raw_url": ""
},
"official": {
"embed_url": "https://player.twitch.tv/?channel=otplol_",
"raw_url": "https://www.twitch.tv/otplol_"
},
"russian": {
"embed_url": null,
"raw_url": ""
}
},
"streams_list": [],
"tournament": {
"begin_at": "2021-03-29T14:30:00Z",
"end_at": null,
"id": 5779,
"league_id": 4139,
"live_supported": true,
"modified_at": "2021-04-23T08:18:46Z",
"name": "Play-in Group C",
"prizepool": null,
"serie_id": 3472,
"slug": "league-of-legends-european-masters-spring-2021-play-in-group-c",
"winner_id": 125912,
"winner_type": "Team"
},
"tournament_id": 5779,
"videogame": {
"id": 1,
"name": "LoL",
"slug": "league-of-legends"
},
"videogame_version": {
"current": false,
"name": "11.6.1"
},
"winner": null,
"winner_id": null
}
},
{
"endpoints": [
{
"begin_at": null,
"expected_begin_at": "2021-04-23T11:07:19Z",
"last_active": null,
"match_id": 588142,
"open": true,
"type": "frames",
"url": "wss://live.pandascore.co/matches/588142"
},
{
"begin_at": null,
"expected_begin_at": "2021-04-23T11:07:19Z",
"last_active": null,
"match_id": 588142,
"open": true,
"type": "events",
"url": "wss://live.pandascore.co/matches/588142/events"
}
],
"event": {
"begin_at": "2021-04-23T11:07:19Z",
"end_at": null,
"game": "league-of-legends",
"id": 588142,
"is_active": false,
"stream_url": "https://www.twitch.tv/otplol_",
"tournament_id": 5779
},
"match": {
"begin_at": "2021-04-23T11:07:19Z",
"detailed_stats": true,
"draw": false,
"end_at": null,
"forfeit": false,
"game_advantage": null,
"games": [
{
"begin_at": null,
"complete": true,
"detailed_stats": true,
"end_at": null,
"finished": false,
"forfeit": false,
"id": 223592,
"length": null,
"match_id": 588142,
"position": 1,
"status": "not_started",
"video_url": null,
"winner": {
"id": null,
"type": "Team"
},
"winner_type": "Team"
}
],
"id": 588142,
"league": {
"id": 4139,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4139/220px-EM_2020_Logo.png",
"modified_at": "2020-04-03T11:08:33Z",
"name": "European Masters",
"slug": "league-of-legends-european-masters",
"url": null
},
"league_id": 4139,
"live": {
"opens_at": "2021-04-23T10:52:19Z",
"supported": true,
"url": "wss://live.dev.pandascore.co/matches/588142"
},
"live_embed_url": "https://player.twitch.tv/?channel=otplol_",
"match_type": "best_of",
"modified_at": "2021-04-23T10:07:21Z",
"name": "VIT.B vs FNC.R",
"number_of_games": 1,
"official_stream_url": "https://www.twitch.tv/otplol_",
"opponents": [
{
"opponent": {
"acronym": "VIT.B",
"id": 126204,
"image_url": "https://cdn.dev.pandascore.co/images/team/image/126204/vitality-bee.png",
"location": "FR",
"modified_at": "2021-03-30T21:11:41Z",
"name": "Vitality.Bee",
"slug": "vitality-bee"
},
"type": "Team"
},
{
"opponent": {
"acronym": "FNC.R",
"id": 125912,
"image_url": "https://cdn.dev.pandascore.co/images/team/image/125912/330px-Fnatic_Risinglogo_square.png",
"location": "GB",
"modified_at": "2021-03-30T21:11:39Z",
"name": "Fnatic Rising",
"slug": "fnatic-rising"
},
"type": "Team"
}
],
"original_scheduled_at": "2021-03-29T17:30:00Z",
"rescheduled": true,
"results": [
{
"score": 0,
"team_id": 126204
},
{
"score": 0,
"team_id": 125912
}
],
"scheduled_at": "2021-04-23T11:07:19Z",
"serie": {
"begin_at": "2021-03-29T14:30:00Z",
"description": null,
"end_at": null,
"full_name": "Spring 2021",
"id": 3472,
"league_id": 4139,
"modified_at": "2021-03-26T04:47:29Z",
"name": null,
"season": "Spring",
"slug": "league-of-legends-european-masters-spring-2021",
"tier": "b",
"winner_id": null,
"winner_type": null,
"year": 2021
},
"serie_id": 3472,
"slug": "vitality-bee-vs-fnatic-rising-2021-03-29",
"status": "not_started",
"streams": {
"english": {
"embed_url": null,
"raw_url": ""
},
"official": {
"embed_url": "https://player.twitch.tv/?channel=otplol_",
"raw_url": "https://www.twitch.tv/otplol_"
},
"russian": {
"embed_url": null,
"raw_url": ""
}
},
"streams_list": [],
"tournament": {
"begin_at": "2021-03-29T14:30:00Z",
"end_at": null,
"id": 5779,
"league_id": 4139,
"live_supported": true,
"modified_at": "2021-04-23T08:18:46Z",
"name": "Play-in Group C",
"prizepool": null,
"serie_id": 3472,
"slug": "league-of-legends-european-masters-spring-2021-play-in-group-c",
"winner_id": 125912,
"winner_type": "Team"
},
"tournament_id": 5779,
"videogame": {
"id": 1,
"name": "LoL",
"slug": "league-of-legends"
},
"videogame_version": {
"current": false,
"name": "11.6.1"
},
"winner": null,
"winner_id": null
}
},
{
"endpoints": [
{
"begin_at": null,
"expected_begin_at": "2021-04-13T13:42:44Z",
"last_active": null,
"match_id": 589319,
"open": true,
"type": "frames",
"url": "wss://live.pandascore.co/matches/589319"
},
{
"begin_at": null,
"expected_begin_at": "2021-04-13T13:42:44Z",
"last_active": null,
"match_id": 589319,
"open": true,
"type": "events",
"url": "wss://live.pandascore.co/matches/589319/events"
}
],
"event": {
"begin_at": "2021-04-13T13:42:44Z",
"end_at": null,
"game": "cs-go",
"id": 589319,
"is_active": true,
"stream_url": "https://www.twitch.tv/blastpremier",
"tournament_id": 5851
},
"match": {
"begin_at": "2021-04-13T13:42:44Z",
"detailed_stats": true,
"draw": false,
"end_at": null,
"forfeit": false,
"game_advantage": null,
"games": [
{
"begin_at": null,
"complete": true,
"detailed_stats": true,
"end_at": null,
"finished": false,
"forfeit": false,
"id": 41026,
"length": null,
"match_id": 589319,
"position": 1,
"status": "not_started",
"video_url": null,
"winner": {
"id": null,
"type": "Team"
},
"winner_type": "Team"
},
{
"begin_at": null,
"complete": true,
"detailed_stats": true,
"end_at": null,
"finished": false,
"forfeit": false,
"id": 41027,
"length": null,
"match_id": 589319,
"position": 2,
"status": "not_started",
"video_url": "https://player.twitch.tv/?video=v985841233&autoplay=true&t=4h38m10s&parent=www.hltv.org",
"winner": {
"id": null,
"type": "Team"
},
"winner_type": "Team"
},
{
"begin_at": null,
"complete": true,
"detailed_stats": true,
"end_at": null,
"finished": false,
"forfeit": false,
"id": 41028,
"length": null,
"match_id": 589319,
"position": 3,
"status": "not_started",
"video_url": null,
"winner": {
"id": null,
"type": "Team"
},
"winner_type": "Team"
}
],
"id": 589319,
"league": {
"id": 4321,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4321/BLAST_Premier_icon.png",
"modified_at": "2020-02-21T08:47:25Z",
"name": "BLAST Premier",
"slug": "cs-go-blast-premier",
"url": "https://blastpremier.com/"
},
"league_id": 4321,
"live": {
"opens_at": "2021-04-13T13:27:44Z",
"supported": true,
"url": "wss://live.dev.pandascore.co/matches/589319"
},
"live_embed_url": "https://player.twitch.tv/?channel=blastpremier",
"match_type": "best_of",
"modified_at": "2021-04-23T08:06:45Z",
"name": "Round of 16 match 2: Endpoint vs G2",
"number_of_games": 3,
"official_stream_url": "https://www.twitch.tv/blastpremier",
"opponents": [
{
"opponent": {
"acronym": null,
"id": 126507,
"image_url": "https://cdn.dev.pandascore.co/images/team/image/126507/7234.png",
"location": "GB",
"modified_at": "2021-04-21T13:44:22Z",
"name": "Endpoint",
"slug": "endpoint"
},
"type": "Team"
},
{
"opponent": {
"acronym": null,
"id": 3210,
"image_url": "https://cdn.dev.pandascore.co/images/team/image/3210/5995.png",
"location": "DE",
"modified_at": "2021-04-17T06:32:36Z",
"name": "G2",
"slug": "g2"
},
"type": "Team"
}
],
"original_scheduled_at": "2021-04-13T13:30:00Z",
"rescheduled": false,
"results": [
{
"score": 0,
"team_id": 126507
},
{
"score": 0,
"team_id": 3210
}
],
"scheduled_at": "2021-04-13T13:30:00Z",
"serie": {
"begin_at": "2021-04-12T23:00:00Z",
"description": null,
"end_at": "2021-04-18T21:28:00Z",
"full_name": "Showdown Spring 2021",
"id": 3511,
"league_id": 4321,
"modified_at": "2021-04-18T21:42:42Z",
"name": "Showdown",
"season": "Spring",
"slug": "cs-go-blast-premier-showdown-spring-2021",
"tier": "a",
"winner_id": 3214,
"winner_type": "Team",
"year": 2021
},
"serie_id": 3511,
"slug": "endpoint-vs-g2-2021-04-13",
"status": "running",
"streams": {
"english": {
"embed_url": "https://player.twitch.tv/?channel=blastpremier",
"raw_url": "https://www.twitch.tv/blastpremier"
},
"official": {
"embed_url": "https://player.twitch.tv/?channel=blastpremier",
"raw_url": "https://www.twitch.tv/blastpremier"
},
"russian": {
"embed_url": null,
"raw_url": ""
}
},
"streams_list": [
{
"embed_url": "https://player.twitch.tv/?channel=blastpremier",
"language": "en",
"main": false,
"official": true,
"raw_url": "https://www.twitch.tv/blastpremier"
}
],
"tournament": {
"begin_at": "2021-04-13T10:00:00Z",
"end_at": "2021-04-18T21:28:00Z",
"id": 5851,
"league_id": 4321,
"live_supported": true,
"modified_at": "2021-04-18T21:42:42Z",
"name": "Playoffs",
"prizepool": null,
"serie_id": 3511,
"slug": "cs-go-blast-premier-showdown-spring-2021-playoffs",
"winner_id": 3214,
"winner_type": "Team"
},
"tournament_id": 5851,
"videogame": {
"id": 3,
"name": "CS:GO",
"slug": "cs-go"
},
"videogame_version": null,
"winner": null,
"winner_id": null
}
},
{
"endpoints": [
{
"begin_at": null,
"expected_begin_at": "2021-04-13T09:15:44Z",
"last_active": null,
"match_id": 587917,
"open": true,
"type": "frames",
"url": "wss://live.pandascore.co/matches/587917"
},
{
"begin_at": null,
"expected_begin_at": "2021-04-13T09:15:44Z",
"last_active": null,
"match_id": 587917,
"open": true,
"type": "events",
"url": "wss://live.pandascore.co/matches/587917/events"
}
],
"event": {
"begin_at": "2021-04-13T09:15:44Z",
"end_at": null,
"game": "league-of-legends",
"id": 587917,
"is_active": true,
"stream_url": "https://www.twitch.tv/lpl",
"tournament_id": 5765
},
"match": {
"begin_at": "2021-04-13T09:15:44Z",
"detailed_stats": true,
"draw": false,
"end_at": null,
"forfeit": false,
"game_advantage": null,
"games": [
{
"begin_at": null,
"complete": true,
"detailed_stats": true,
"end_at": null,
"finished": false,
"forfeit": false,
"id": 223560,
"length": null,
"match_id": 587917,
"position": 1,
"status": "not_started",
"video_url": null,
"winner": {
"id": null,
"type": "Team"
},
"winner_type": "Team"
},
{
"begin_at": null,
"complete": true,
"detailed_stats": true,
"end_at": null,
"finished": false,
"forfeit": false,
"id": 223561,
"length": null,
"match_id": 587917,
"position": 2,
"status": "not_started",
"video_url": null,
"winner": {
"id": null,
"type": "Team"
},
"winner_type": "Team"
},
{
"begin_at": null,
"complete": true,
"detailed_stats": true,
"end_at": null,
"finished": false,
"forfeit": false,
"id": 223562,
"length": null,
"match_id": 587917,
"position": 3,
"status": "not_started",
"video_url": null,
"winner": {
"id": null,
"type": "Team"
},
"winner_type": "Team"
},
{
"begin_at": null,
"complete": true,
"detailed_stats": true,
"end_at": null,
"finished": false,
"forfeit": false,
"id": 223563,
"length": null,
"match_id": 587917,
"position": 4,
"status": "not_started",
"video_url": null,
"winner": {
"id": null,
"type": "Team"
},
"winner_type": "Team"
},
{
"begin_at": null,
"complete": true,
"detailed_stats": true,
"end_at": null,
"finished": false,
"forfeit": false,
"id": 223564,
"length": null,
"match_id": 587917,
"position": 5,
"status": "not_started",
"video_url": null,
"winner": {
"id": null,
"type": "Team"
},
"winner_type": "Team"
}
],
"id": 587917,
"league": {
"id": 294,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/294/220px-LPL_2020.png",
"modified_at": "2020-06-02T08:53:12Z",
"name": "LPL",
"slug": "league-of-legends-lpl-china",
"url": "http://www.lolesports.com/en_US/lpl-china"
},
"league_id": 294,
"live": {
"opens_at": "2021-04-13T09:00:44Z",
"supported": true,
"url": "wss://live.dev.pandascore.co/matches/587917"
},
"live_embed_url": "https://player.twitch.tv/?channel=lpl",
"match_type": "best_of",
"modified_at": "2021-04-23T08:04:23Z",
"name": "Semifinals Match 2: RNG vs EDG",
"number_of_games": 5,
"official_stream_url": "https://www.twitch.tv/lpl",
"opponents": [
{
"opponent": {
"acronym": "RNG",
"id": 74,
"image_url": "https://cdn.dev.pandascore.co/images/team/image/74/royal-never-give-up-cyacqft1.png",
"location": "CN",
"modified_at": "2021-04-18T15:11:37Z",
"name": "Royal Never Give Up",
"slug": "royal-never-give-up"
},
"type": "Team"
},
{
"opponent": {
"acronym": "EDG",
"id": 405,
"image_url": "https://cdn.dev.pandascore.co/images/team/image/405/edward-gaming-52bsed1a.png",
"location": "CN",
"modified_at": "2021-04-09T12:33:55Z",
"name": "EDward Gaming",
"slug": "edward-gaming"
},
"type": "Team"
}
],
"original_scheduled_at": "2021-04-13T09:00:00Z",
"rescheduled": false,
"results": [
{
"score": 0,
"team_id": 74
},
{
"score": 0,
"team_id": 405
}
],
"scheduled_at": "2021-04-13T09:00:00Z",
"serie": {
"begin_at": "2021-01-08T23:00:00Z",
"description": null,
"end_at": "2021-04-18T12:44:00Z",
"full_name": "Spring 2021",
"id": 3230,
"league_id": 294,
"modified_at": "2021-04-18T13:11:19Z",
"name": "",
"season": "Spring",
"slug": "league-of-legends-lpl-china-2021",
"tier": "a",
"winner_id": 74,
"winner_type": "Team",
"year": 2021
},
"serie_id": 3230,
"slug": "royal-never-give-up-2021-04-13",
"status": "running",
"streams": {
"english": {
"embed_url": "https://player.twitch.tv/?channel=lpl",
"raw_url": "https://www.twitch.tv/lpl"
},
"official": {
"embed_url": "https://player.twitch.tv/?channel=lpl",
"raw_url": "https://www.twitch.tv/lpl"
},
"russian": {
"embed_url": null,
"raw_url": ""
}
},
"streams_list": [
{
"embed_url": "https://player.twitch.tv/?channel=lpl",
"language": "en",
"main": false,
"official": true,
"raw_url": "https://www.twitch.tv/lpl"
}
],
"tournament": {
"begin_at": "2021-04-01T09:00:00Z",
"end_at": "2021-04-18T12:44:00Z",
"id": 5765,
"league_id": 294,
"live_supported": true,
"modified_at": "2021-04-18T13:11:19Z",
"name": "Playoffs",
"prizepool": "4200000 Chinese Yuan",
"serie_id": 3230,
"slug": "league-of-legends-lpl-china-season-2021-playoffs",
"winner_id": 74,
"winner_type": "Team"
},
"tournament_id": 5765,
"videogame": {
"id": 1,
"name": "LoL",
"slug": "league-of-legends"
},
"videogame_version": {
"current": false,
"name": "11.6.1"
},
"winner": null,
"winner_id": null
}
}
]
}
},
"schema": {
"$ref": "#/components/schemas/Lives"
}
}
},
"description": "A list of games being played or about to be played"
},
"Market": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Market"
}
}
},
"description": "A market"
},
"Markets": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Markets"
}
}
},
"description": "A list of markets"
},
"Match": {
"content": {
"application/json": {
"examples": {
"/matches/589643": {
"description": "/matches/589643",
"value": {
"begin_at": "2021-04-22T22:17:54Z",
"detailed_stats": true,
"draw": false,
"end_at": "2021-04-23T01:30:43Z",
"forfeit": false,
"game_advantage": null,
"games": [
{
"begin_at": "2021-04-22T22:17:55Z",
"complete": true,
"detailed_stats": true,
"end_at": "2021-04-22T22:57:02Z",
"finished": true,
"forfeit": false,
"id": 223851,
"length": 1924,
"match_id": 589643,
"position": 1,
"status": "finished",
"video_url": null,
"winner": {
"id": 128785,
"type": "Team"
},
"winner_type": "Team"
},
{
"begin_at": "2021-04-22T23:12:30Z",
"complete": true,
"detailed_stats": true,
"end_at": "2021-04-22T23:47:04Z",
"finished": true,
"forfeit": false,
"id": 223852,
"length": 1600,
"match_id": 589643,
"position": 2,
"status": "finished",
"video_url": null,
"winner": {
"id": 1597,
"type": "Team"
},
"winner_type": "Team"
},
{
"begin_at": "2021-04-23T00:03:07Z",
"complete": true,
"detailed_stats": true,
"end_at": "2021-04-23T00:34:46Z",
"finished": true,
"forfeit": false,
"id": 223853,
"length": 1468,
"match_id": 589643,
"position": 3,
"status": "finished",
"video_url": null,
"winner": {
"id": 1597,
"type": "Team"
},
"winner_type": "Team"
},
{
"begin_at": "2021-04-23T00:55:14Z",
"complete": true,
"detailed_stats": true,
"end_at": "2021-04-23T01:30:44Z",
"finished": true,
"forfeit": false,
"id": 223854,
"length": 1671,
"match_id": 589643,
"position": 4,
"status": "finished",
"video_url": null,
"winner": {
"id": 1597,
"type": "Team"
},
"winner_type": "Team"
}
],
"id": 589643,
"league": {
"id": 4556,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4556/600px-LCS_Academy_League_2021.png",
"modified_at": "2021-04-01T06:44:44Z",
"name": "LCS Proving Grounds",
"slug": "league-of-legends-lcs-proving-grounds",
"url": null
},
"league_id": 4556,
"live": {
"opens_at": null,
"supported": false,
"url": null
},
"live_embed_url": "https://player.twitch.tv/?channel=academy",
"match_type": "best_of",
"modified_at": "2021-04-23T01:58:35Z",
"name": "Winners bracket round 5 match 1: C9.A vs NO",
"number_of_games": 5,
"official_stream_url": "https://www.twitch.tv/academy",
"opponents": [
{
"opponent": {
"acronym": "C9.A",
"id": 1597,
"image_url": "https://cdn.dev.pandascore.co/images/team/image/1597/cloud9-academy-a874mk5a.png",
"location": "US",
"modified_at": "2021-03-31T09:39:32Z",
"name": "Cloud9 Academy",
"slug": "cloud9-academy"
},
"type": "Team"
},
{
"opponent": {
"acronym": "NO",
"id": 128785,
"image_url": "https://cdn.dev.pandascore.co/images/team/image/128785/no_orglogo_square.png",
"location": "US",
"modified_at": "2021-04-11T19:08:17Z",
"name": "No Org",
"slug": "no-org"
},
"type": "Team"
}
],
"original_scheduled_at": "2021-04-22T22:00:00Z",
"rescheduled": false,
"results": [
{
"score": 3,
"team_id": 1597
},
{
"score": 1,
"team_id": 128785
}
],
"scheduled_at": "2021-04-22T22:00:00Z",
"serie": {
"begin_at": "2021-03-30T22:00:00Z",
"description": null,
"end_at": "2021-04-26T04:00:00Z",
"full_name": "Spring 2021",
"id": 3489,
"league_id": 4556,
"modified_at": "2021-04-09T07:27:31Z",
"name": null,
"season": "Spring",
"slug": "league-of-legends-lcs-proving-grounds-spring-2021",
"tier": "d",
"winner_id": null,
"winner_type": null,
"year": 2021
},
"serie_id": 3489,
"slug": "cloud9-academy-2021-04-23",
"status": "finished",
"streams": {
"english": {
"embed_url": "https://player.twitch.tv/?channel=academy",
"raw_url": "https://www.twitch.tv/academy"
},
"official": {
"embed_url": "https://player.twitch.tv/?channel=academy",
"raw_url": "https://www.twitch.tv/academy"
},
"russian": {
"embed_url": null,
"raw_url": null
}
},
"streams_list": [
{
"embed_url": "https://player.twitch.tv/?channel=academy",
"language": "en",
"main": true,
"official": true,
"raw_url": "https://www.twitch.tv/academy"
}
],
"tournament": {
"begin_at": "2021-03-30T22:00:00Z",
"end_at": "2021-04-26T04:00:00Z",
"id": 5810,
"league_id": 4556,
"live_supported": false,
"modified_at": "2021-04-19T16:16:08Z",
"name": "Regular",
"prizepool": null,
"serie_id": 3489,
"slug": "league-of-legends-lcs-proving-grounds-spring-2021-regular",
"winner_id": null,
"winner_type": "Team"
},
"tournament_id": 5810,
"videogame": {
"id": 1,
"name": "LoL",
"slug": "league-of-legends"
},
"videogame_version": {
"current": false,
"name": "11.6.1"
},
"winner": {
"acronym": "C9.A",
"id": 1597,
"image_url": "https://cdn.dev.pandascore.co/images/team/image/1597/cloud9-academy-a874mk5a.png",
"location": "US",
"modified_at": "2021-03-31T09:39:32Z",
"name": "Cloud9 Academy",
"slug": "cloud9-academy"
},
"winner_id": 1597
}
}
},
"schema": {
"$ref": "#/components/schemas/Match"
}
}
},
"description": "A match of any e-sport"
},
"MatchMarkets": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/MatchMarkets"
}
}
},
"description": "The markets of a match and its games"
},
"MatchOpponentsObject": {
"content": {
"application/json": {
"examples": {
"/matches/52351/opponents": {
"description": "/matches/52351/opponents",
"value": {
"opponent_type": "Team",
"opponents": [
{
"acronym": "VGJ.T",
"current_videogame": {
"id": 4,
"name": "Dota 2",
"slug": "dota-2"
},
"id": 1804,
"image_url": "https://cdn.dev.pandascore.co/images/team/image/1804/VGJ.Thunder.png",
"location": "CN",
"modified_at": "2019-11-24T19:09:24Z",
"name": "VGJ.Thunder",
"players": [
{
"birth_year": 1990,
"birthday": "1990-06-03",
"first_name": "Leong",
"hometown": "China",
"id": 9343,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/9343/ddc_frankfurt_major_2015.png",
"last_name": "Fat-meng",
"name": "ddc",
"nationality": "MO",
"role": "5",
"slug": "ddc"
},
{
"birth_year": 1996,
"birthday": "1996-11-15",
"first_name": "Haiyang",
"hometown": "China",
"id": 9481,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/9481/pic-20190119-700x700-6872047916.png",
"last_name": "Zhou",
"name": "Yang",
"nationality": "CN",
"role": "3",
"slug": "yang-zhou-haiyang"
},
{
"birth_year": 1996,
"birthday": "1996-12-27",
"first_name": "Chang",
"hometown": "China",
"id": 9524,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/9524/75ce768e37dc998c75d147daa436fb28ba658b70.png",
"last_name": "Liu",
"name": "Freeze",
"nationality": "CN",
"role": "2",
"slug": "freeze-liu-chang"
},
{
"birth_year": 1993,
"birthday": "1993-12-20",
"first_name": "Liu",
"hometown": "China",
"id": 9692,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/9692/pic-20190119-700x700-8153963461.png",
"last_name": "Jiajun",
"name": "Sylar",
"nationality": "CN",
"role": "1",
"slug": "sylar"
},
{
"birth_year": 1996,
"birthday": "1996-07-28",
"first_name": "Yi",
"hometown": "China",
"id": 9774,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/9774/pic-20190119-700x700-3717930065.png",
"last_name": "Pan",
"name": "Fade",
"nationality": "CN",
"role": "4",
"slug": "fade-pan-yi"
}
],
"slug": "vgj-thunder"
},
{
"acronym": "VG",
"current_videogame": {
"id": 4,
"name": "Dota 2",
"slug": "dota-2"
},
"id": 1676,
"image_url": "https://cdn.dev.pandascore.co/images/team/image/1676/Vici_Gaming.png",
"location": "CN",
"modified_at": "2021-04-10T08:33:11Z",
"name": "Vici Gaming",
"players": [
{
"birth_year": 1996,
"birthday": "1996-06-27",
"first_name": "Chengjun",
"hometown": "China",
"id": 9353,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/9353/pic-20190119-691x691-2235156968.png",
"last_name": "Zhang",
"name": "Eurus",
"nationality": "CN",
"role": "1/2",
"slug": "paparazi"
},
{
"birth_year": 1995,
"birthday": "1995-12-07",
"first_name": "Yangwei",
"hometown": "China",
"id": 9392,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/9392/ca2e471cea186589f7f3b9f2671977f0f8667f48.png",
"last_name": "Ren",
"name": "eLeVeN",
"nationality": "CN",
"role": "3",
"slug": "eleven"
},
{
"birth_year": 1995,
"birthday": "1995-07-22",
"first_name": "Jiaoyang",
"hometown": "China",
"id": 9483,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/9483/pic-20190119-700x700-4290874334.png",
"last_name": "Zeng",
"name": "Ori",
"nationality": "CN",
"role": "1/2",
"slug": "ori"
},
{
"birth_year": 1989,
"birthday": "1989-01-18",
"first_name": "Chao",
"hometown": "China",
"id": 9525,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/9525/pic-20190119-700x700-775488386.png",
"last_name": "Lu",
"name": "Fenrir",
"nationality": "CN",
"role": "5",
"slug": "fenrir"
},
{
"birth_year": 1989,
"birthday": "1989-12-25",
"first_name": "Zhicheng",
"hometown": "China",
"id": 9691,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/9691/7139f2c35be77813c7acaf31396241939e475f13.png",
"last_name": "Zhang",
"name": "LaNm",
"nationality": "CN",
"role": "5",
"slug": "lanm"
}
],
"slug": "vici-gaming-dota-2"
}
]
}
}
},
"schema": {
"$ref": "#/components/schemas/MatchOpponentsObject"
}
}
},
"description": "The match's opponents"
},
"Matches": {
"content": {
"application/json": {
"examples": {
"/matches?page[size]=1": {
"description": "/matches?page[size]=1",
"value": [
{
"begin_at": "2021-04-24T16:00:00Z",
"detailed_stats": true,
"draw": false,
"end_at": null,
"forfeit": false,
"game_advantage": null,
"games": [
{
"begin_at": null,
"complete": false,
"detailed_stats": true,
"end_at": null,
"finished": false,
"forfeit": false,
"id": 674134,
"length": null,
"match_id": 591022,
"position": 1,
"status": "not_started",
"video_url": null,
"winner": {
"id": null,
"type": null
},
"winner_type": null
},
{
"begin_at": null,
"complete": false,
"detailed_stats": true,
"end_at": null,
"finished": false,
"forfeit": false,
"id": 674135,
"length": null,
"match_id": 591022,
"position": 2,
"status": "not_started",
"video_url": null,
"winner": {
"id": null,
"type": null
},
"winner_type": null
},
{
"begin_at": null,
"complete": false,
"detailed_stats": true,
"end_at": null,
"finished": false,
"forfeit": false,
"id": 674136,
"length": null,
"match_id": 591022,
"position": 3,
"status": "not_started",
"video_url": null,
"winner": {
"id": null,
"type": null
},
"winner_type": null
},
{
"begin_at": null,
"complete": false,
"detailed_stats": true,
"end_at": null,
"finished": false,
"forfeit": false,
"id": 674137,
"length": null,
"match_id": 591022,
"position": 4,
"status": "not_started",
"video_url": null,
"winner": {
"id": null,
"type": null
},
"winner_type": null
},
{
"begin_at": null,
"complete": false,
"detailed_stats": true,
"end_at": null,
"finished": false,
"forfeit": false,
"id": 674138,
"length": null,
"match_id": 591022,
"position": 5,
"status": "not_started",
"video_url": null,
"winner": {
"id": null,
"type": null
},
"winner_type": null
}
],
"id": 591022,
"league": {
"id": 4562,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4562/positive-fire-games1615995754399-logo-1.png",
"modified_at": "2021-04-22T10:15:12Z",
"name": "Positive Fire Games",
"slug": "dota-2-positive-fire-games",
"url": null
},
"league_id": 4562,
"live": {
"opens_at": null,
"supported": false,
"url": null
},
"live_embed_url": "https://player.twitch.tv/?channel=bufistudio_ru",
"match_type": "best_of",
"modified_at": "2021-04-22T23:45:50Z",
"name": "Grand Final: TBD vs TBD",
"number_of_games": 5,
"official_stream_url": "https://www.twitch.tv/bufistudio_ru",
"opponents": [],
"original_scheduled_at": "2021-04-24T16:00:00Z",
"rescheduled": false,
"results": [],
"scheduled_at": "2021-04-24T16:00:00Z",
"serie": {
"begin_at": "2021-04-12T10:00:00Z",
"description": null,
"end_at": null,
"full_name": "2021",
"id": 3538,
"league_id": 4562,
"modified_at": "2021-04-12T07:20:33Z",
"name": null,
"season": null,
"slug": "dota-2-positive-fire-games-2021",
"tier": "d",
"winner_id": null,
"winner_type": null,
"year": 2021
},
"serie_id": 3538,
"slug": "2021-04-24-69c221a9-a725-451e-a61d-e8f4915a67d5",
"status": "not_started",
"streams": {
"english": {
"embed_url": "https://player.twitch.tv/?channel=bufistudio_eu",
"raw_url": "https://www.twitch.tv/bufistudio_eu"
},
"official": {
"embed_url": "https://player.twitch.tv/?channel=bufistudio_ru",
"raw_url": "https://www.twitch.tv/bufistudio_ru"
},
"russian": {
"embed_url": "https://player.twitch.tv/?channel=bufistudio_ru",
"raw_url": "https://www.twitch.tv/bufistudio_ru"
}
},
"streams_list": [
{
"embed_url": "https://player.twitch.tv/?channel=bufistudio_eu",
"language": "en",
"main": false,
"official": false,
"raw_url": "https://www.twitch.tv/bufistudio_eu"
},
{
"embed_url": "https://player.twitch.tv/?channel=bufistudio_ru",
"language": "ru",
"main": true,
"official": true,
"raw_url": "https://www.twitch.tv/bufistudio_ru"
}
],
"tournament": {
"begin_at": "2021-04-19T10:00:00Z",
"end_at": "2021-04-24T22:00:00Z",
"id": 5928,
"league_id": 4562,
"live_supported": false,
"modified_at": "2021-04-22T13:14:31Z",
"name": "Playoffs",
"prizepool": "10000 United States Dollar",
"serie_id": 3538,
"slug": "dota-2-positive-fire-games-2021-playoffs",
"winner_id": null,
"winner_type": "Team"
},
"tournament_id": 5928,
"videogame": {
"id": 4,
"name": "Dota 2",
"slug": "dota-2"
},
"videogame_version": null,
"winner": null,
"winner_id": null
}
]
}
},
"schema": {
"$ref": "#/components/schemas/Matches"
}
}
},
"description": "A list of matches of any e-sport"
},
"Player": {
"content": {
"application/json": {
"examples": {
"/players/faker": {
"description": "/players/faker",
"value": {
"birth_year": 1996,
"birthday": "1996-05-07",
"current_team": {
"acronym": "T1",
"id": 126061,
"image_url": "https://cdn.dev.pandascore.co/images/team/image/126061/t_oscq04.png",
"location": "KR",
"modified_at": "2021-04-01T05:47:25Z",
"name": "T1",
"slug": "t1"
},
"current_videogame": {
"id": 1,
"name": "LoL",
"slug": "league-of-legends"
},
"first_name": "Lee",
"hometown": "South Korea",
"id": 585,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/585/t1_faker_2021_split_1.png",
"last_name": "Sang-hyeok",
"name": "Faker",
"nationality": "KR",
"role": "mid",
"slug": "faker"
}
}
},
"schema": {
"$ref": "#/components/schemas/Player"
}
}
},
"description": "A player"
},
"Players": {
"content": {
"application/json": {
"examples": {
"/players?page[size]=1": {
"description": "/players?page[size]=1",
"value": [
{
"birth_year": null,
"birthday": null,
"current_team": {
"acronym": null,
"id": 127976,
"image_url": "https://cdn.dev.pandascore.co/images/team/image/127976/t70715.png",
"location": null,
"modified_at": "2021-04-22T17:33:54Z",
"name": "Infinite",
"slug": "infinite-gaming"
},
"current_videogame": {
"id": 3,
"name": "CS:GO",
"slug": "cs-go"
},
"first_name": null,
"hometown": null,
"id": 34108,
"image_url": null,
"last_name": null,
"name": "flow",
"nationality": null,
"role": null,
"slug": "flow-93e00781-2cf0-4005-9c2c-fac5c7e709e3"
}
]
}
},
"schema": {
"$ref": "#/components/schemas/Players"
}
}
},
"description": "A list of players"
},
"Serie": {
"content": {
"application/json": {
"examples": {
"/series/1626": {
"description": "/series/1626",
"value": {
"begin_at": "2018-10-07T10:00:00Z",
"description": null,
"end_at": "2018-10-14T10:00:00Z",
"full_name": "Season 6 2018",
"id": 1626,
"league": {
"id": 4165,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4165/800px-StarSeries_i-League_CSGO.png",
"modified_at": "2019-03-25T10:36:06Z",
"name": "StarSeries & i-League",
"slug": "cs-go-starseries-i-league",
"url": null
},
"league_id": 4165,
"modified_at": "2018-10-15T10:00:57Z",
"name": null,
"season": "6",
"slug": "cs-go-starseries-i-league-6-2018",
"tier": null,
"tournaments": [
{
"begin_at": "2018-10-07T10:00:00Z",
"end_at": "2018-10-14T10:00:00Z",
"id": 1744,
"league_id": 4165,
"live_supported": true,
"modified_at": "2019-07-09T23:33:37Z",
"name": "Swiss round",
"prizepool": null,
"serie_id": 1626,
"slug": "cs-go-starseries-i-league-6-2018-regular",
"winner_id": 3251,
"winner_type": "Team"
},
{
"begin_at": "2018-10-07T10:00:00Z",
"end_at": "2018-10-14T10:00:00Z",
"id": 1974,
"league_id": 4165,
"live_supported": true,
"modified_at": "2019-07-22T15:35:57Z",
"name": "Regular",
"prizepool": null,
"serie_id": 1626,
"slug": "cs-go-starseries-i-league-6-2018-regular-cc0b2a7a-6ab8-48a6-86f1-11516b38bcf7",
"winner_id": 3251,
"winner_type": "Team"
},
{
"begin_at": "2018-10-12T10:00:00Z",
"end_at": "2018-10-14T14:00:00Z",
"id": 1838,
"league_id": 4165,
"live_supported": true,
"modified_at": "2019-07-09T23:52:15Z",
"name": "Playoffs",
"prizepool": "265000 United States Dollar",
"serie_id": 1626,
"slug": "cs-go-starseries-i-league-6-2018-swiss-round",
"winner_id": 3251,
"winner_type": "Team"
}
],
"videogame": {
"id": 3,
"name": "CS:GO",
"slug": "cs-go"
},
"videogame_title": null,
"winner_id": 3251,
"winner_type": "Team",
"year": 2018
}
}
},
"schema": {
"$ref": "#/components/schemas/Serie"
}
}
},
"description": "A serie"
},
"Series": {
"content": {
"application/json": {
"examples": {
"/series?page[size]=1": {
"description": "/series?page[size]=1",
"value": [
{
"begin_at": "2021-04-22T16:00:00Z",
"description": null,
"end_at": "2021-04-22T22:33:00Z",
"full_name": "Open qualifier 3 season 3 2021",
"id": 3569,
"league": {
"id": 4312,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4312/FLASHPOINT.png",
"modified_at": "2020-03-15T07:02:38Z",
"name": "Flashpoint",
"slug": "cs-go-flashpoint",
"url": null
},
"league_id": 4312,
"modified_at": "2021-04-23T01:08:06Z",
"name": "Open qualifier 3",
"season": "3",
"slug": "cs-go-flashpoint-open-qualifier-3-3-2021",
"tier": "d",
"tournaments": [
{
"begin_at": "2021-04-22T16:00:00Z",
"end_at": "2021-04-22T22:33:00Z",
"id": 5954,
"league_id": 4312,
"live_supported": false,
"modified_at": "2021-04-23T01:08:06Z",
"name": "Playoffs",
"prizepool": null,
"serie_id": 3569,
"slug": "cs-go-flashpoint-open-qualifier-3-3-2021-playoffs",
"winner_id": null,
"winner_type": "Team"
}
],
"videogame": {
"id": 3,
"name": "CS:GO",
"slug": "cs-go"
},
"videogame_title": null,
"winner_id": null,
"winner_type": null,
"year": 2021
}
]
}
},
"schema": {
"$ref": "#/components/schemas/Series"
}
}
},
"description": "A list of series"
},
"ShortTournaments": {
"content": {
"application/json": {
"examples": {
"/tournaments?page[size]=1": {
"description": "/tournaments?page[size]=1",
"value": [
{
"begin_at": "2021-04-22T20:30:00Z",
"end_at": "2021-04-22T22:30:00Z",
"id": 5957,
"league": {
"id": 4139,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4139/220px-EM_2020_Logo.png",
"modified_at": "2020-04-03T11:08:33Z",
"name": "European Masters",
"slug": "league-of-legends-european-masters",
"url": null
},
"league_id": 4139,
"live_supported": true,
"matches": [
{
"begin_at": "2021-04-22T20:05:36Z",
"detailed_stats": true,
"draw": false,
"end_at": "2021-04-22T20:38:56Z",
"forfeit": false,
"game_advantage": null,
"id": 591015,
"live": {
"opens_at": "2021-04-22T19:50:36Z",
"supported": true,
"url": "wss://live.dev.pandascore.co/matches/591015"
},
"live_embed_url": "https://player.twitch.tv/?channel=eumasters",
"match_type": "best_of",
"modified_at": "2021-04-22T20:45:09Z",
"name": "Tiebreaker 1: IHG vs MCK",
"number_of_games": 1,
"official_stream_url": "https://www.twitch.tv/eumasters",
"original_scheduled_at": "2021-04-22T20:30:00Z",
"rescheduled": false,
"scheduled_at": "2021-04-22T20:30:00Z",
"slug": "illuminar-gaming-vs-macko-esports-2021-04-22-16d45c3b-19c9-4fd9-997d-addc337f9987",
"status": "finished",
"streams": {
"english": {
"embed_url": "https://player.twitch.tv/?channel=eumasters",
"raw_url": "https://www.twitch.tv/eumasters"
},
"official": {
"embed_url": "https://player.twitch.tv/?channel=eumasters",
"raw_url": "https://www.twitch.tv/eumasters"
},
"russian": {
"embed_url": null,
"raw_url": null
}
},
"streams_list": [
{
"embed_url": "https://player.twitch.tv/?channel=eumasters",
"language": "en",
"main": true,
"official": true,
"raw_url": "https://www.twitch.tv/eumasters"
}
],
"tournament_id": 5957,
"winner_id": 128406
},
{
"begin_at": "2021-04-22T20:58:20Z",
"detailed_stats": true,
"draw": false,
"end_at": "2021-04-22T21:35:58Z",
"forfeit": false,
"game_advantage": null,
"id": 591016,
"live": {
"opens_at": "2021-04-22T20:43:20Z",
"supported": true,
"url": "wss://live.dev.pandascore.co/matches/591016"
},
"live_embed_url": "https://player.twitch.tv/?channel=eumasters",
"match_type": "best_of",
"modified_at": "2021-04-22T21:44:25Z",
"name": "Tiebreaker 2: MOUZ vs MCK",
"number_of_games": 1,
"official_stream_url": "https://www.twitch.tv/eumasters",
"original_scheduled_at": "2021-04-22T21:30:00Z",
"rescheduled": false,
"scheduled_at": "2021-04-22T21:30:00Z",
"slug": "mousesports-2021-04-22",
"status": "finished",
"streams": {
"english": {
"embed_url": "https://player.twitch.tv/?channel=eumasters",
"raw_url": "https://www.twitch.tv/eumasters"
},
"official": {
"embed_url": "https://player.twitch.tv/?channel=eumasters",
"raw_url": "https://www.twitch.tv/eumasters"
},
"russian": {
"embed_url": null,
"raw_url": null
}
},
"streams_list": [
{
"embed_url": "https://player.twitch.tv/?channel=eumasters",
"language": "en",
"main": true,
"official": true,
"raw_url": "https://www.twitch.tv/eumasters"
}
],
"tournament_id": 5957,
"winner_id": 16
}
],
"modified_at": "2021-04-22T19:54:24Z",
"name": "Tiebreakers",
"prizepool": null,
"serie": {
"begin_at": "2021-03-29T14:30:00Z",
"description": null,
"end_at": null,
"full_name": "Spring 2021",
"id": 3472,
"league_id": 4139,
"modified_at": "2021-03-26T04:47:29Z",
"name": null,
"season": "Spring",
"slug": "league-of-legends-european-masters-spring-2021",
"tier": "b",
"winner_id": null,
"winner_type": null,
"year": 2021
},
"serie_id": 3472,
"slug": "league-of-legends-european-masters-spring-2021-tiebreakers",
"teams": [
{
"acronym": "MOUZ",
"id": 16,
"image_url": "https://cdn.dev.pandascore.co/images/team/image/16/mousesports-29p77f8y.png",
"location": "DE",
"modified_at": "2021-04-22T19:53:25Z",
"name": "mousesports",
"slug": "mousesports"
},
{
"acronym": "IHG",
"id": 2718,
"image_url": "https://cdn.dev.pandascore.co/images/team/image/2718/300px-Illuminar_Gaminglogo_square.png",
"location": "PL",
"modified_at": "2021-04-22T19:53:23Z",
"name": "Illuminar Gaming",
"slug": "illuminar-gaming"
},
{
"acronym": "MCK",
"id": 128406,
"image_url": "https://cdn.dev.pandascore.co/images/team/image/128406/macko_esportslogo_square.png",
"location": "IT",
"modified_at": "2021-04-22T19:53:24Z",
"name": "Macko Esports",
"slug": "macko-esports-league-of-legends"
}
],
"videogame": {
"id": 1,
"name": "LoL",
"slug": "league-of-legends"
},
"winner_id": null,
"winner_type": "Team"
}
]
}
},
"schema": {
"$ref": "#/components/schemas/ShortTournaments"
}
}
},
"description": "A list of tournaments"
},
"ShortVideogameVersions": {
"content": {
"application/json": {
"examples": {
"/videogames/1/versions?page[size]=1": {
"description": "/videogames/1/versions?page[size]=1",
"value": [
{
"current": false,
"name": "10.10.3216176"
}
]
}
},
"schema": {
"$ref": "#/components/schemas/ShortVideogameVersions"
}
}
},
"description": "A list of a videogame's versions"
},
"Standings": {
"content": {
"application/json": {
"examples": {
"Bracket standings": {
"description": "/tournaments/1590/standings?page[size]=1",
"value": [
{
"last_match": {
"begin_at": "2018-09-12T08:42:55Z",
"detailed_stats": true,
"draw": false,
"end_at": "2018-09-12T13:07:55Z",
"forfeit": false,
"game_advantage": null,
"id": 53995,
"live": {
"opens_at": "2018-09-12T08:27:55Z",
"supported": true,
"url": "wss://live.dev.pandascore.co/matches/53995"
},
"live_embed_url": null,
"match_type": "best_of",
"modified_at": "2020-11-05T06:49:45Z",
"name": "RW vs JDG",
"number_of_games": 5,
"official_stream_url": null,
"original_scheduled_at": "2018-09-12T08:42:55Z",
"rescheduled": false,
"scheduled_at": "2018-09-12T08:00:00Z",
"slug": "rogue-warriors-vs-jd-gaming-2018-09-12",
"status": "finished",
"streams": {
"english": {
"embed_url": null,
"raw_url": null
},
"official": {
"embed_url": null,
"raw_url": null
},
"russian": {
"embed_url": null,
"raw_url": null
}
},
"streams_list": [],
"tournament_id": 1590,
"winner_id": null
},
"rank": 1,
"team": {
"acronym": "JDG",
"id": 318,
"image_url": "https://cdn.dev.pandascore.co/images/team/image/318/qg-reapers.png",
"location": "CN",
"modified_at": "2021-04-01T06:00:28Z",
"name": "JD Gaming",
"slug": "qg-reapers"
}
}
]
},
"Group standings": {
"description": "/tournaments/1398/standings?page[size]=1",
"value": [
{
"losses": 5,
"rank": 1,
"team": {
"acronym": "FNC",
"id": 394,
"image_url": "https://cdn.dev.pandascore.co/images/team/image/394/220px_fnaticlogo_square.png",
"location": "GB",
"modified_at": "2021-03-15T07:34:31Z",
"name": "Fnatic",
"slug": "fnatic"
},
"total": 18,
"wins": 13
}
]
}
},
"schema": {
"$ref": "#/components/schemas/Standings"
}
}
},
"description": "Ranking of teams in a tournament"
},
"Team": {
"content": {
"application/json": {
"examples": {
"/teams/1804": {
"description": "/teams/1804",
"value": {
"acronym": "VGJ.T",
"current_videogame": {
"id": 4,
"name": "Dota 2",
"slug": "dota-2"
},
"id": 1804,
"image_url": "https://cdn.dev.pandascore.co/images/team/image/1804/VGJ.Thunder.png",
"location": "CN",
"modified_at": "2019-11-24T19:09:24Z",
"name": "VGJ.Thunder",
"players": [],
"slug": "vgj-thunder"
}
}
},
"schema": {
"$ref": "#/components/schemas/Team"
}
}
},
"description": "A team"
},
"Teams": {
"content": {
"application/json": {
"examples": {
"/teams?page[size]=1": {
"description": "/teams?page[size]=1",
"value": [
{
"acronym": null,
"current_videogame": {
"id": 22,
"name": "Rocket League",
"slug": "rl"
},
"id": 128903,
"image_url": "https://cdn.dev.pandascore.co/images/team/image/128903/600px_shopify_rebellion_text.png",
"location": "CA",
"modified_at": "2021-04-22T21:56:44Z",
"name": "Shopify Rebellion",
"players": [],
"slug": "shopify-rebellion"
}
]
}
},
"schema": {
"$ref": "#/components/schemas/Teams"
}
}
},
"description": "A list of teams"
},
"Tournament": {
"content": {
"application/json": {
"examples": {
"/tournaments/1590": {
"description": "/tournaments/1590",
"value": {
"begin_at": "2018-06-11T00:00:00Z",
"end_at": "2018-09-23T00:00:00Z",
"expected_roster": [
{
"players": [
{
"birth_year": 1997,
"birthday": "1997-04-05",
"first_name": "Zihao",
"hometown": "China",
"id": 146,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/146/220px_rng_uzi_2020_split_1.png",
"last_name": "Jian",
"name": "Uzi",
"nationality": "CN",
"role": "adc",
"slug": "uzi"
},
{
"birth_year": 1997,
"birthday": "1997-08-25",
"first_name": "Zhihao",
"hometown": "China",
"id": 368,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/368/zz1tai-hadyl6ic.png",
"last_name": "Liu",
"name": "Zz1tai",
"nationality": "CN",
"role": "mid",
"slug": "zz1tai"
},
{
"birth_year": null,
"birthday": null,
"first_name": "Shi-Yu",
"hometown": "China",
"id": 388,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/388/0.png",
"last_name": "Liu",
"name": "Mlxg",
"nationality": null,
"role": "jun",
"slug": "mlxg"
},
{
"birth_year": 1997,
"birthday": "1997-02-14",
"first_name": "Haohsuan",
"hometown": "Taiwan",
"id": 418,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/418/220px_tes_karsa_2020_split_2.png",
"last_name": "Hung",
"name": "Karsa",
"nationality": "TW",
"role": "jun",
"slug": "karsa"
},
{
"birth_year": 1998,
"birthday": "1998-01-28",
"first_name": "Yuanhao",
"hometown": "China",
"id": 429,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/429/220px_rng_xiaohu_2020_split_2.png",
"last_name": "Li",
"name": "Xiaohu",
"nationality": "CN",
"role": "top",
"slug": "xiaohu"
},
{
"birth_year": null,
"birthday": null,
"first_name": "Junze",
"hometown": "China",
"id": 726,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/726/0.png",
"last_name": "Yan",
"name": "Letme",
"nationality": null,
"role": "top",
"slug": "letme"
},
{
"birth_year": 1998,
"birthday": "1998-12-22",
"first_name": "Senming",
"hometown": "China",
"id": 1584,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/1584/220px_rng_ming_2020_split_2.png",
"last_name": "Shi",
"name": "Ming",
"nationality": "CN",
"role": "sup",
"slug": "ming"
},
{
"birth_year": 2000,
"birthday": "2000-02-24",
"first_name": "Zhichun",
"hometown": "China",
"id": 8963,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/8963/0.png",
"last_name": "Dai",
"name": "Able",
"nationality": "CN",
"role": "adc",
"slug": "able"
}
],
"team": {
"acronym": "RNG",
"id": 74,
"image_url": "https://cdn.dev.pandascore.co/images/team/image/74/royal-never-give-up-cyacqft1.png",
"location": "CN",
"modified_at": "2021-04-18T15:11:37Z",
"name": "Royal Never Give Up",
"slug": "royal-never-give-up"
}
},
{
"players": [
{
"birth_year": 1997,
"birthday": "1997-02-14",
"first_name": "Dong-wook",
"hometown": "South Korea",
"id": 1027,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/1027/220px_jdg_loke_n_2020_split_2.png",
"last_name": "Lee",
"name": "LokeN",
"nationality": "KR",
"role": "adc",
"slug": "loken"
},
{
"birth_year": 1999,
"birthday": "1999-07-07",
"first_name": "Kim",
"hometown": "South Korea",
"id": 1736,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/1736/220px_gen_clid_2020_split_1.png",
"last_name": "Tae-min",
"name": "Clid",
"nationality": "KR",
"role": "jun",
"slug": "clid"
},
{
"birth_year": 1996,
"birthday": "1996-03-07",
"first_name": "Minghao",
"hometown": "China",
"id": 3487,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/3487/220px_jdg_lv_mao_2020_split_2.png",
"last_name": "Zhuo",
"name": "LvMao",
"nationality": "CN",
"role": "sup",
"slug": "lvmao"
},
{
"birth_year": 1997,
"birthday": "1997-07-27",
"first_name": "Xingran",
"hometown": "China",
"id": 8968,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/8968/220px_jdg_zoom_2020_split_2.png",
"last_name": "Han",
"name": "Zoom",
"nationality": "CN",
"role": "top",
"slug": "zoom"
},
{
"birth_year": 1998,
"birthday": "1998-10-19",
"first_name": "Qi",
"hometown": "China",
"id": 8969,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/8969/220px_jdg_yagao_2020_split_2.png",
"last_name": "Zeng",
"name": "Yagao",
"nationality": "CN",
"role": "mid",
"slug": "yagao"
}
],
"team": {
"acronym": "JDG",
"id": 318,
"image_url": "https://cdn.dev.pandascore.co/images/team/image/318/qg-reapers.png",
"location": "CN",
"modified_at": "2021-04-01T06:00:28Z",
"name": "JD Gaming",
"slug": "qg-reapers"
}
},
{
"players": [
{
"birth_year": 1993,
"birthday": "1993-07-25",
"first_name": "Kai",
"hometown": "China",
"id": 123,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/123/clearlove.png",
"last_name": "Ming",
"name": "Clearlove",
"nationality": "CN",
"role": "jun",
"slug": "clearlove"
},
{
"birth_year": 1998,
"birthday": "1998-03-14",
"first_name": "Lee",
"hometown": "South Korea",
"id": 839,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/839/edg_scout_2020_split_2.png",
"last_name": "Ye-chan",
"name": "Scout",
"nationality": "KR",
"role": "mid",
"slug": "scout"
},
{
"birth_year": 1998,
"birthday": "1998-03-15",
"first_name": "Jeon",
"hometown": "South Korea",
"id": 1111,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/1111/r7_rey_2021_opening.png",
"last_name": "Ji-won",
"name": "Rey",
"nationality": "KR",
"role": "top",
"slug": "ray"
},
{
"birth_year": 1998,
"birthday": "1998-06-06",
"first_name": "Ye",
"hometown": "China",
"id": 2170,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/2170/220px_edg_meiko_2020_split_2.png",
"last_name": "Tian",
"name": "Meiko",
"nationality": "CN",
"role": "sup",
"slug": "meiko"
},
{
"birth_year": 2000,
"birthday": "2000-07-12",
"first_name": "Xianzhao",
"hometown": "China",
"id": 7650,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/7650/220px_vg_i_boy_2020_split_1.png",
"last_name": "Hu",
"name": "iBoy",
"nationality": "CN",
"role": "adc",
"slug": "iboy"
},
{
"birth_year": 1998,
"birthday": "1998-07-21",
"first_name": "Wenlin",
"hometown": "China",
"id": 8961,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/8961/220px_rw_haro_2020_split_2.png",
"last_name": "Chen",
"name": "Haro",
"nationality": "CN",
"role": "jun",
"slug": "haro"
}
],
"team": {
"acronym": "EDG",
"id": 405,
"image_url": "https://cdn.dev.pandascore.co/images/team/image/405/edward-gaming-52bsed1a.png",
"location": "CN",
"modified_at": "2021-04-09T12:33:55Z",
"name": "EDward Gaming",
"slug": "edward-gaming"
}
},
{
"players": [
{
"birth_year": 1994,
"birthday": "1994-12-19",
"first_name": "Ho-seong",
"hometown": "South Korea",
"id": 316,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/316/800px_ig_duke_2019_wc.png",
"last_name": "Lee",
"name": "Duke",
"nationality": "KR",
"role": "top",
"slug": "duke"
},
{
"birth_year": 1997,
"birthday": "1997-03-11",
"first_name": "Song",
"hometown": "South Korea",
"id": 390,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/390/220px_ig_rookie_2020_split_2.png",
"last_name": "Eui-jin",
"name": "Rookie",
"nationality": "KR",
"role": "mid",
"slug": "rookie"
},
{
"birth_year": 1998,
"birthday": "1998-03-12",
"first_name": "Zhenning",
"hometown": "China",
"id": 2508,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/2508/220px_ig_ning_2020_split_2.png",
"last_name": "Gao",
"name": "Ning",
"nationality": "CN",
"role": "jun",
"slug": "ning"
},
{
"birth_year": 1997,
"birthday": "1997-03-08",
"first_name": "Long",
"hometown": "China",
"id": 3479,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/3479/west.png",
"last_name": "Chen",
"name": "West",
"nationality": "CN",
"role": "adc",
"slug": "west"
},
{
"birth_year": 1999,
"birthday": "1999-11-11",
"first_name": "Seung-Lok",
"hometown": "South Korea",
"id": 3480,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/3480/220px_ig_the_shy_2020_split_2.png",
"last_name": "Kang",
"name": "TheShy",
"nationality": "KR",
"role": "top",
"slug": "theshy"
},
{
"birth_year": 1999,
"birthday": "1999-07-16",
"first_name": "Liuyi",
"hometown": "China",
"id": 7875,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/7875/220px_ig_baolan_2020_split_2.png",
"last_name": "Wang",
"name": "Baolan",
"nationality": "CN",
"role": "sup",
"slug": "baolan"
},
{
"birth_year": 2000,
"birthday": "2000-11-18",
"first_name": "Wenbo",
"hometown": "China",
"id": 8951,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/8951/220px_tes_jackey_love_2020_split_2.png",
"last_name": "Yu",
"name": "JackeyLove",
"nationality": "CN",
"role": "adc",
"slug": "jackeylove"
}
],
"team": {
"acronym": "IG",
"id": 411,
"image_url": "https://cdn.dev.pandascore.co/images/team/image/411/invictus-gaming.png",
"location": "CN",
"modified_at": "2021-04-01T06:00:30Z",
"name": "Invictus Gaming",
"slug": "invictus-gaming"
}
},
{
"players": [
{
"birth_year": 1995,
"birthday": "1995-11-11",
"first_name": "Lee",
"hometown": "South Korea",
"id": 313,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/313/sn_fury_2020_split_1.png",
"last_name": "Jin-yong",
"name": "Fury",
"nationality": "KR",
"role": "adc",
"slug": "fury"
},
{
"birth_year": 1997,
"birthday": "1997-09-19",
"first_name": "Zhenying",
"hometown": "China",
"id": 3489,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/3489/lgd_langx_2020_wc.png",
"last_name": "Xie",
"name": "Langx",
"nationality": "CN",
"role": "top",
"slug": "xiaoal"
},
{
"birth_year": 1996,
"birthday": "1996-07-04",
"first_name": "Byung-yoon",
"hometown": "South Korea",
"id": 3491,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/3491/220px-GRX_Yoon_2019_Split_1.png",
"last_name": "Kim",
"name": "Yoon",
"nationality": "KR",
"role": "sup",
"slug": "yoon"
},
{
"birth_year": 1998,
"birthday": "1998-08-29",
"first_name": "Chen",
"hometown": "China",
"id": 3494,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/3494/220px_es_fenfen_2020_split_2.png",
"last_name": "Huang",
"name": "Fenfen",
"nationality": "CN",
"role": "mid",
"slug": "fenfen"
},
{
"birth_year": 1999,
"birthday": "1999-01-15",
"first_name": "Zhihao",
"hometown": "China",
"id": 3495,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/3495/220px_omg_h4cker_2020_split_2.png",
"last_name": "Yang",
"name": "H4cker",
"nationality": "CN",
"role": "jun",
"slug": "h4cker"
},
{
"birth_year": null,
"birthday": null,
"first_name": "Yi",
"hometown": "China",
"id": 7658,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/7658/brain-5tspba4p.png",
"last_name": "Wang",
"name": "Banks",
"nationality": "CN",
"role": "sup",
"slug": "brain"
},
{
"birth_year": 2000,
"birthday": "2000-07-24",
"first_name": "Tianliang",
"hometown": "China",
"id": 8953,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/8953/220px_fpx_tian_2020_split_2.png",
"last_name": "Gao",
"name": "Tian",
"nationality": "CN",
"role": "jun",
"slug": "tian"
},
{
"birth_year": 2000,
"birthday": "2000-09-16",
"first_name": "Tao",
"hometown": "China",
"id": 15186,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/15186/220px_sn_angel_2020_split_2.png",
"last_name": "Xiang",
"name": "Angel",
"nationality": "CN",
"role": "mid",
"slug": "angelo"
}
],
"team": {
"acronym": "SN",
"id": 652,
"image_url": "https://cdn.dev.pandascore.co/images/team/image/652/_.png",
"location": "CN",
"modified_at": "2021-04-13T12:29:15Z",
"name": "Suning",
"slug": "sn-gaming"
}
},
{
"players": [
{
"birth_year": 1997,
"birthday": "1997-03-04",
"first_name": "Wen",
"hometown": "China",
"id": 145,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/145/corn.png",
"last_name": "Lei",
"name": "Corn",
"nationality": "CN",
"role": "mid",
"slug": "corn"
},
{
"birth_year": 1993,
"birthday": "1993-06-26",
"first_name": "Byeong-jun",
"hometown": "Korea",
"id": 162,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/162/ggoong-ih98vvpm.png",
"last_name": "Yu",
"name": "GgooNg",
"nationality": "KR",
"role": "mid",
"slug": "ggoong"
},
{
"birth_year": 1995,
"birthday": "1995-08-11",
"first_name": "Yao",
"hometown": "China",
"id": 199,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/199/0.png",
"last_name": "Wu",
"name": "Cat",
"nationality": "CN",
"role": "sup",
"slug": "cat"
},
{
"birth_year": 1997,
"birthday": "1997-12-28",
"first_name": "Haotian",
"hometown": "China",
"id": 2512,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/2512/220px_lgd_lies_2020_split_2.png",
"last_name": "Guo",
"name": "Lies",
"nationality": "CN",
"role": "top",
"slug": "lies"
},
{
"birth_year": 1998,
"birthday": "1998-04-17",
"first_name": "Ming",
"hometown": "China",
"id": 2514,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/2514/tes_qiu_qiu_2020_wc.png",
"last_name": "Zhang",
"name": "QiuQiu",
"nationality": "CN",
"role": "sup",
"slug": "qiuqiu"
},
{
"birth_year": 1997,
"birthday": "1997-08-23",
"first_name": "Huidong",
"hometown": "China",
"id": 3488,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/3488/220px_tes_moyu_2020_split_2.png",
"last_name": "Xiong",
"name": "Moyu",
"nationality": "CN",
"role": "top",
"slug": "moyu"
},
{
"birth_year": 1997,
"birthday": "1997-06-18",
"first_name": "Yulong",
"hometown": "China",
"id": 8957,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/8957/220px_lng_xx_2020_split_2.png",
"last_name": "Xiong",
"name": "Xx",
"nationality": "CN",
"role": "jun",
"slug": "xx-yu-long-xiong"
}
],
"team": {
"acronym": "TOP",
"id": 1567,
"image_url": "https://cdn.dev.pandascore.co/images/team/image/1567/topsports-gaming-hw655g3n.png",
"location": "CN",
"modified_at": "2019-06-30T11:24:46Z",
"name": "Topsports Gaming",
"slug": "topsports-gaming"
}
},
{
"players": [
{
"birth_year": null,
"birthday": null,
"first_name": "Jia-Jun",
"hometown": "China",
"id": 592,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/592/cool-esrj8abc.png",
"last_name": "Yu",
"name": "Cool",
"nationality": null,
"role": "mid",
"slug": "cool-jia-jun-yu"
},
{
"birth_year": 1995,
"birthday": "1995-12-31",
"first_name": "Kim",
"hometown": "South Korea",
"id": 882,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/882/220px_fpx_gim_goon_2020_split_2.png",
"last_name": "Han-saem",
"name": "GimGoon",
"nationality": "KR",
"role": "top",
"slug": "gimgoon"
},
{
"birth_year": 1998,
"birthday": "1998-04-30",
"first_name": "Weixiang",
"hometown": "China",
"id": 1577,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/1577/220px_fpx_lwx_2020_split_2.png",
"last_name": "Lin",
"name": "Lwx",
"nationality": "CN",
"role": "adc",
"slug": "lwx"
},
{
"birth_year": 1995,
"birthday": "1995-04-04",
"first_name": "Ping",
"hometown": "China",
"id": 1774,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/1774/220px_v5_ping_2020_split_2.png",
"last_name": "Chang",
"name": "Ping",
"nationality": "CN",
"role": "jun",
"slug": "xinyi"
},
{
"birth_year": 2000,
"birthday": "2000-01-22",
"first_name": "Yuming",
"hometown": "Taiwan",
"id": 3444,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/3444/220px-AHQ_Alex_2019_Split_1.png",
"last_name": "Chen",
"name": "Alex",
"nationality": "TW",
"role": "jun",
"slug": "alex"
},
{
"birth_year": 1998,
"birthday": "1998-08-19",
"first_name": "Qingsong",
"hometown": "China",
"id": 7646,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/7646/220px_fpx_crisp_2020_split_2.png",
"last_name": "Liu",
"name": "Crisp",
"nationality": "CN",
"role": "sup",
"slug": "crisp"
}
],
"team": {
"acronym": "FPX",
"id": 1568,
"image_url": "https://cdn.dev.pandascore.co/images/team/image/1568/fun_plus_phoenixlogo_square.png",
"location": "CN",
"modified_at": "2021-04-14T13:48:11Z",
"name": "FunPlus Phoenix",
"slug": "funplus-phoenix"
}
},
{
"players": [
{
"birth_year": 1997,
"birthday": "1997-09-24",
"first_name": "Jin",
"hometown": "China",
"id": 423,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/423/220px_omg_smlz_2020_split_2.png",
"last_name": "Han",
"name": "Smlz",
"nationality": "CN",
"role": "adc",
"slug": "smlz"
},
{
"birth_year": 1996,
"birthday": "1996-12-30",
"first_name": "Tae-sang",
"hometown": "South Korea",
"id": 443,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/443/220px_fpx_doinb_2020_split_2.png",
"last_name": "Kim",
"name": "Doinb",
"nationality": "KR",
"role": "mid",
"slug": "doinb"
},
{
"birth_year": 1998,
"birthday": "1998-07-26",
"first_name": "Sung",
"hometown": "South Korea",
"id": 699,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/699/sp_flawless_2020_split_2.png",
"last_name": "Yeon-jun",
"name": "Flawless",
"nationality": "KR",
"role": "jun",
"slug": "flawless"
},
{
"birth_year": null,
"birthday": null,
"first_name": "Yuhao",
"hometown": "China",
"id": 1237,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/1237/mouse-azoja40o.png",
"last_name": "Chen",
"name": "Mouse",
"nationality": null,
"role": "top",
"slug": "mouse"
},
{
"birth_year": 1996,
"birthday": "1996-09-07",
"first_name": "Danyang",
"hometown": "China",
"id": 2511,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/2511/lgd_killua_2020_wc.png",
"last_name": "Liu",
"name": "Killua",
"nationality": "CN",
"role": "sup",
"slug": "killua"
},
{
"birth_year": 1997,
"birthday": "1997-07-26",
"first_name": "Yang",
"hometown": "China",
"id": 17117,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/17117/_.png",
"last_name": "Jie",
"name": "Kiwi",
"nationality": "CN",
"role": "jun",
"slug": "icy-edafac34-ac83-4658-8774-5c3103d98ebb"
},
{
"birth_year": 1998,
"birthday": "1998-06-25",
"first_name": "Bae",
"hometown": "South Korea",
"id": 17260,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/17260/220px_rw_holder_2020_split_2.png",
"last_name": "Jae-cheol",
"name": "Holder",
"nationality": "KR",
"role": "top",
"slug": "holder"
}
],
"team": {
"acronym": "RW",
"id": 1569,
"image_url": "https://cdn.dev.pandascore.co/images/team/image/1569/rogue-warriors-1kvtwjow.png",
"location": "CN",
"modified_at": "2021-03-30T12:56:34Z",
"name": "Rogue Warriors",
"slug": "rogue-warriors"
}
},
{
"players": [
{
"birth_year": 1997,
"birthday": "1997-03-04",
"first_name": "Wen",
"hometown": "China",
"id": 145,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/145/corn.png",
"last_name": "Lei",
"name": "Corn",
"nationality": "CN",
"role": "mid",
"slug": "corn"
},
{
"birth_year": 1995,
"birthday": "1995-08-11",
"first_name": "Yao",
"hometown": "China",
"id": 199,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/199/0.png",
"last_name": "Wu",
"name": "Cat",
"nationality": "CN",
"role": "sup",
"slug": "cat"
},
{
"birth_year": 1997,
"birthday": "1997-12-28",
"first_name": "Haotian",
"hometown": "China",
"id": 2512,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/2512/220px_lgd_lies_2020_split_2.png",
"last_name": "Guo",
"name": "Lies",
"nationality": "CN",
"role": "top",
"slug": "lies"
},
{
"birth_year": 1998,
"birthday": "1998-04-17",
"first_name": "Ming",
"hometown": "China",
"id": 2514,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/2514/tes_qiu_qiu_2020_wc.png",
"last_name": "Zhang",
"name": "QiuQiu",
"nationality": "CN",
"role": "sup",
"slug": "qiuqiu"
},
{
"birth_year": 1997,
"birthday": "1997-08-23",
"first_name": "Huidong",
"hometown": "China",
"id": 3488,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/3488/220px_tes_moyu_2020_split_2.png",
"last_name": "Xiong",
"name": "Moyu",
"nationality": "CN",
"role": "top",
"slug": "moyu"
},
{
"birth_year": 1997,
"birthday": "1997-06-18",
"first_name": "Yulong",
"hometown": "China",
"id": 8957,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/8957/220px_lng_xx_2020_split_2.png",
"last_name": "Xiong",
"name": "Xx",
"nationality": "CN",
"role": "jun",
"slug": "xx-yu-long-xiong"
}
],
"team": {
"acronym": "TES",
"id": 126059,
"image_url": "https://cdn.dev.pandascore.co/images/team/image/126059/top-esports.png",
"location": "CN",
"modified_at": "2021-04-01T06:00:36Z",
"name": "Top Esports",
"slug": "top-esports"
}
}
],
"id": 1590,
"league": {
"id": 294,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/294/220px-LPL_2020.png",
"modified_at": "2020-06-02T08:53:12Z",
"name": "LPL",
"slug": "league-of-legends-lpl-china",
"url": "http://www.lolesports.com/en_US/lpl-china"
},
"league_id": 294,
"live_supported": true,
"matches": [
{
"begin_at": "2018-09-05T08:44:19Z",
"detailed_stats": true,
"draw": false,
"end_at": "2018-09-05T12:09:04Z",
"forfeit": false,
"game_advantage": 126059,
"id": 53989,
"live": {
"opens_at": "2018-09-05T08:29:19Z",
"supported": true,
"url": "wss://live.dev.pandascore.co/matches/53989"
},
"live_embed_url": null,
"match_type": "best_of",
"modified_at": "2020-11-05T06:47:51Z",
"name": "SN vs TES",
"number_of_games": 5,
"official_stream_url": null,
"original_scheduled_at": "2018-09-05T08:44:19Z",
"rescheduled": false,
"scheduled_at": "2018-09-05T08:00:00Z",
"slug": "suning-vs-topsports-gaming-2018-09-05",
"status": "finished",
"streams": {
"english": {
"embed_url": null,
"raw_url": null
},
"official": {
"embed_url": null,
"raw_url": null
},
"russian": {
"embed_url": null,
"raw_url": null
}
},
"streams_list": [],
"tournament_id": 1590,
"winner_id": 1567
},
{
"begin_at": "2018-09-06T08:43:24Z",
"detailed_stats": true,
"draw": false,
"end_at": "2018-09-06T13:08:24Z",
"forfeit": false,
"game_advantage": 318,
"id": 53990,
"live": {
"opens_at": "2018-09-06T08:28:24Z",
"supported": true,
"url": "wss://live.dev.pandascore.co/matches/53990"
},
"live_embed_url": null,
"match_type": "best_of",
"modified_at": "2019-07-11T10:48:33Z",
"name": "FPX vs JDG",
"number_of_games": 5,
"official_stream_url": null,
"original_scheduled_at": "2018-09-06T08:43:24Z",
"rescheduled": false,
"scheduled_at": "2018-09-06T08:00:00Z",
"slug": "funplus-phoenix-vs-jd-gaming-2018-09-06",
"status": "finished",
"streams": {
"english": {
"embed_url": null,
"raw_url": null
},
"official": {
"embed_url": null,
"raw_url": null
},
"russian": {
"embed_url": null,
"raw_url": null
}
},
"streams_list": [],
"tournament_id": 1590,
"winner_id": 318
},
{
"begin_at": "2018-09-07T08:47:07Z",
"detailed_stats": true,
"draw": false,
"end_at": "2018-09-07T13:12:07Z",
"forfeit": false,
"game_advantage": null,
"id": 53991,
"live": {
"opens_at": "2018-09-07T08:32:07Z",
"supported": true,
"url": "wss://live.dev.pandascore.co/matches/53991"
},
"live_embed_url": null,
"match_type": "best_of",
"modified_at": "2020-11-05T06:41:20Z",
"name": "RNG vs TOP",
"number_of_games": 5,
"official_stream_url": null,
"original_scheduled_at": "2018-09-07T08:47:07Z",
"rescheduled": false,
"scheduled_at": "2018-09-07T08:00:00Z",
"slug": "royal-never-give-up-vs-topsports-gaming-2018-09-07",
"status": "finished",
"streams": {
"english": {
"embed_url": null,
"raw_url": null
},
"official": {
"embed_url": null,
"raw_url": null
},
"russian": {
"embed_url": null,
"raw_url": null
}
},
"streams_list": [],
"tournament_id": 1590,
"winner_id": 74
},
{
"begin_at": "2018-09-08T08:44:37Z",
"detailed_stats": true,
"draw": false,
"end_at": "2018-09-08T13:09:37Z",
"forfeit": false,
"game_advantage": null,
"id": 53992,
"live": {
"opens_at": "2018-09-08T08:29:37Z",
"supported": true,
"url": "wss://live.dev.pandascore.co/matches/53992"
},
"live_embed_url": null,
"match_type": "best_of",
"modified_at": "2019-01-10T10:40:58Z",
"name": "EDG vs JDG",
"number_of_games": 5,
"official_stream_url": null,
"original_scheduled_at": null,
"rescheduled": false,
"scheduled_at": "2018-09-08T08:00:00Z",
"slug": "edward-gaming-vs-jd-gaming-2018-09-08",
"status": "finished",
"streams": {
"english": {
"embed_url": null,
"raw_url": null
},
"official": {
"embed_url": null,
"raw_url": null
},
"russian": {
"embed_url": null,
"raw_url": null
}
},
"streams_list": [],
"tournament_id": 1590,
"winner_id": 318
},
{
"begin_at": "2018-09-09T08:44:53Z",
"detailed_stats": true,
"draw": false,
"end_at": "2018-09-09T13:09:53Z",
"forfeit": false,
"game_advantage": null,
"id": 53993,
"live": {
"opens_at": "2018-09-09T08:29:53Z",
"supported": true,
"url": "wss://live.dev.pandascore.co/matches/53993"
},
"live_embed_url": null,
"match_type": "best_of",
"modified_at": "2020-11-05T07:01:49Z",
"name": "RW vs RNG",
"number_of_games": 5,
"official_stream_url": "https://www.panda.tv/lpl?roomid=7000",
"original_scheduled_at": "2018-09-09T08:44:53Z",
"rescheduled": false,
"scheduled_at": "2018-09-09T08:00:00Z",
"slug": "rogue-warriors-vs-royal-never-give-up-2018-09-09",
"status": "finished",
"streams": {
"english": {
"embed_url": null,
"raw_url": null
},
"official": {
"embed_url": null,
"raw_url": "https://www.panda.tv/lpl?roomid=7000"
},
"russian": {
"embed_url": null,
"raw_url": null
}
},
"streams_list": [],
"tournament_id": 1590,
"winner_id": 74
},
{
"begin_at": "2018-09-10T08:51:57Z",
"detailed_stats": true,
"draw": false,
"end_at": "2018-09-10T12:32:31Z",
"forfeit": false,
"game_advantage": null,
"id": 53994,
"live": {
"opens_at": "2018-09-10T08:36:57Z",
"supported": true,
"url": "wss://live.dev.pandascore.co/matches/53994"
},
"live_embed_url": null,
"match_type": "best_of",
"modified_at": "2019-06-03T14:47:33Z",
"name": "IG vs JDG",
"number_of_games": 5,
"official_stream_url": "https://www.panda.tv/lpl?roomid=7000",
"original_scheduled_at": "2018-09-10T08:51:57Z",
"rescheduled": false,
"scheduled_at": "2018-09-10T08:00:00Z",
"slug": "invictus-gaming-vs-jd-gaming-2018-09-10",
"status": "finished",
"streams": {
"english": {
"embed_url": null,
"raw_url": null
},
"official": {
"embed_url": null,
"raw_url": "https://www.panda.tv/lpl?roomid=7000"
},
"russian": {
"embed_url": null,
"raw_url": null
}
},
"streams_list": [],
"tournament_id": 1590,
"winner_id": 411
},
{
"begin_at": "2018-09-12T08:42:55Z",
"detailed_stats": true,
"draw": false,
"end_at": "2018-09-12T13:07:55Z",
"forfeit": false,
"game_advantage": null,
"id": 53995,
"live": {
"opens_at": "2018-09-12T08:27:55Z",
"supported": true,
"url": "wss://live.dev.pandascore.co/matches/53995"
},
"live_embed_url": null,
"match_type": "best_of",
"modified_at": "2020-11-05T06:49:45Z",
"name": "RW vs JDG",
"number_of_games": 5,
"official_stream_url": null,
"original_scheduled_at": "2018-09-12T08:42:55Z",
"rescheduled": false,
"scheduled_at": "2018-09-12T08:00:00Z",
"slug": "rogue-warriors-vs-jd-gaming-2018-09-12",
"status": "finished",
"streams": {
"english": {
"embed_url": null,
"raw_url": null
},
"official": {
"embed_url": null,
"raw_url": null
},
"russian": {
"embed_url": null,
"raw_url": null
}
},
"streams_list": [],
"tournament_id": 1590,
"winner_id": 318
},
{
"begin_at": "2018-09-14T07:40:32Z",
"detailed_stats": true,
"draw": false,
"end_at": "2018-09-14T12:27:17Z",
"forfeit": false,
"game_advantage": null,
"id": 53996,
"live": {
"opens_at": "2018-09-14T07:25:32Z",
"supported": true,
"url": "wss://live.dev.pandascore.co/matches/53996"
},
"live_embed_url": null,
"match_type": "best_of",
"modified_at": "2019-01-10T10:40:58Z",
"name": "RNG vs IG",
"number_of_games": 5,
"official_stream_url": null,
"original_scheduled_at": null,
"rescheduled": false,
"scheduled_at": "2018-09-14T07:00:00Z",
"slug": "royal-never-give-up-vs-invictus-gaming-2018-09-14",
"status": "finished",
"streams": {
"english": {
"embed_url": null,
"raw_url": null
},
"official": {
"embed_url": null,
"raw_url": null
},
"russian": {
"embed_url": null,
"raw_url": null
}
},
"streams_list": [],
"tournament_id": 1590,
"winner_id": 74
}
],
"modified_at": "2019-07-11T10:55:37Z",
"name": "Playoffs",
"prizepool": "3500000 Chinese Yuan",
"serie": {
"begin_at": "2018-06-11T09:24:00Z",
"description": "2018 LPL Summer Split",
"end_at": "2018-09-16T11:05:00Z",
"full_name": "Summer 2018",
"id": 1513,
"league_id": 294,
"modified_at": "2018-11-19T10:14:37Z",
"name": "",
"season": "Summer",
"slug": "league-of-legends-lpl-china-summer-2018",
"tier": null,
"winner_id": 74,
"winner_type": "Team",
"year": 2018
},
"serie_id": 1513,
"slug": "league-of-legends-lpl-china-summer-2018-playoffs",
"teams": [
{
"acronym": "RNG",
"id": 74,
"image_url": "https://cdn.dev.pandascore.co/images/team/image/74/royal-never-give-up-cyacqft1.png",
"location": "CN",
"modified_at": "2021-04-18T15:11:37Z",
"name": "Royal Never Give Up",
"slug": "royal-never-give-up"
},
{
"acronym": "JDG",
"id": 318,
"image_url": "https://cdn.dev.pandascore.co/images/team/image/318/qg-reapers.png",
"location": "CN",
"modified_at": "2021-04-01T06:00:28Z",
"name": "JD Gaming",
"slug": "qg-reapers"
},
{
"acronym": "EDG",
"id": 405,
"image_url": "https://cdn.dev.pandascore.co/images/team/image/405/edward-gaming-52bsed1a.png",
"location": "CN",
"modified_at": "2021-04-09T12:33:55Z",
"name": "EDward Gaming",
"slug": "edward-gaming"
},
{
"acronym": "IG",
"id": 411,
"image_url": "https://cdn.dev.pandascore.co/images/team/image/411/invictus-gaming.png",
"location": "CN",
"modified_at": "2021-04-01T06:00:30Z",
"name": "Invictus Gaming",
"slug": "invictus-gaming"
},
{
"acronym": "SN",
"id": 652,
"image_url": "https://cdn.dev.pandascore.co/images/team/image/652/_.png",
"location": "CN",
"modified_at": "2021-04-13T12:29:15Z",
"name": "Suning",
"slug": "sn-gaming"
},
{
"acronym": "TOP",
"id": 1567,
"image_url": "https://cdn.dev.pandascore.co/images/team/image/1567/topsports-gaming-hw655g3n.png",
"location": "CN",
"modified_at": "2019-06-30T11:24:46Z",
"name": "Topsports Gaming",
"slug": "topsports-gaming"
},
{
"acronym": "FPX",
"id": 1568,
"image_url": "https://cdn.dev.pandascore.co/images/team/image/1568/fun_plus_phoenixlogo_square.png",
"location": "CN",
"modified_at": "2021-04-14T13:48:11Z",
"name": "FunPlus Phoenix",
"slug": "funplus-phoenix"
},
{
"acronym": "RW",
"id": 1569,
"image_url": "https://cdn.dev.pandascore.co/images/team/image/1569/rogue-warriors-1kvtwjow.png",
"location": "CN",
"modified_at": "2021-03-30T12:56:34Z",
"name": "Rogue Warriors",
"slug": "rogue-warriors"
},
{
"acronym": "TES",
"id": 126059,
"image_url": "https://cdn.dev.pandascore.co/images/team/image/126059/top-esports.png",
"location": "CN",
"modified_at": "2021-04-01T06:00:36Z",
"name": "Top Esports",
"slug": "top-esports"
}
],
"videogame": {
"id": 1,
"name": "LoL",
"slug": "league-of-legends"
},
"winner_id": 318,
"winner_type": "Team"
}
}
},
"schema": {
"$ref": "#/components/schemas/Tournament"
}
}
},
"description": "A detailed tournament"
},
"TournamentRosters": {
"content": {
"application/json": {
"examples": {
"Tournament with team participants": {
"description": "/tournaments/1590/rosters",
"value": {
"rosters": [
{
"acronym": "TES",
"current_videogame": {
"id": 1,
"name": "LoL",
"slug": "league-of-legends"
},
"id": 126059,
"image_url": "https://cdn.dev.pandascore.co/images/team/image/126059/top-esports.png",
"location": "CN",
"modified_at": "2021-04-01T06:00:36Z",
"name": "Top Esports",
"players": [
{
"birth_year": 1997,
"birthday": "1997-03-04",
"first_name": "Wen",
"hometown": "China",
"id": 145,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/145/corn.png",
"last_name": "Lei",
"name": "Corn",
"nationality": "CN",
"role": "mid",
"slug": "corn"
},
{
"birth_year": 1995,
"birthday": "1995-08-11",
"first_name": "Yao",
"hometown": "China",
"id": 199,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/199/0.png",
"last_name": "Wu",
"name": "Cat",
"nationality": "CN",
"role": "sup",
"slug": "cat"
},
{
"birth_year": 1997,
"birthday": "1997-12-28",
"first_name": "Haotian",
"hometown": "China",
"id": 2512,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/2512/220px_lgd_lies_2020_split_2.png",
"last_name": "Guo",
"name": "Lies",
"nationality": "CN",
"role": "top",
"slug": "lies"
},
{
"birth_year": 1998,
"birthday": "1998-04-17",
"first_name": "Ming",
"hometown": "China",
"id": 2514,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/2514/tes_qiu_qiu_2020_wc.png",
"last_name": "Zhang",
"name": "QiuQiu",
"nationality": "CN",
"role": "sup",
"slug": "qiuqiu"
},
{
"birth_year": 1997,
"birthday": "1997-08-23",
"first_name": "Huidong",
"hometown": "China",
"id": 3488,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/3488/220px_tes_moyu_2020_split_2.png",
"last_name": "Xiong",
"name": "Moyu",
"nationality": "CN",
"role": "top",
"slug": "moyu"
},
{
"birth_year": 1997,
"birthday": "1997-06-18",
"first_name": "Yulong",
"hometown": "China",
"id": 8957,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/8957/220px_lng_xx_2020_split_2.png",
"last_name": "Xiong",
"name": "Xx",
"nationality": "CN",
"role": "jun",
"slug": "xx-yu-long-xiong"
}
],
"slug": "top-esports"
},
{
"acronym": "RW",
"current_videogame": {
"id": 1,
"name": "LoL",
"slug": "league-of-legends"
},
"id": 1569,
"image_url": "https://cdn.dev.pandascore.co/images/team/image/1569/rogue-warriors-1kvtwjow.png",
"location": "CN",
"modified_at": "2021-03-30T12:56:34Z",
"name": "Rogue Warriors",
"players": [
{
"birth_year": 1997,
"birthday": "1997-09-24",
"first_name": "Jin",
"hometown": "China",
"id": 423,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/423/220px_omg_smlz_2020_split_2.png",
"last_name": "Han",
"name": "Smlz",
"nationality": "CN",
"role": "adc",
"slug": "smlz"
},
{
"birth_year": 1996,
"birthday": "1996-12-30",
"first_name": "Tae-sang",
"hometown": "South Korea",
"id": 443,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/443/220px_fpx_doinb_2020_split_2.png",
"last_name": "Kim",
"name": "Doinb",
"nationality": "KR",
"role": "mid",
"slug": "doinb"
},
{
"birth_year": 1998,
"birthday": "1998-07-26",
"first_name": "Sung",
"hometown": "South Korea",
"id": 699,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/699/sp_flawless_2020_split_2.png",
"last_name": "Yeon-jun",
"name": "Flawless",
"nationality": "KR",
"role": "jun",
"slug": "flawless"
},
{
"birth_year": null,
"birthday": null,
"first_name": "Yuhao",
"hometown": "China",
"id": 1237,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/1237/mouse-azoja40o.png",
"last_name": "Chen",
"name": "Mouse",
"nationality": null,
"role": "top",
"slug": "mouse"
},
{
"birth_year": 1996,
"birthday": "1996-09-07",
"first_name": "Danyang",
"hometown": "China",
"id": 2511,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/2511/lgd_killua_2020_wc.png",
"last_name": "Liu",
"name": "Killua",
"nationality": "CN",
"role": "sup",
"slug": "killua"
},
{
"birth_year": 1997,
"birthday": "1997-07-26",
"first_name": "Yang",
"hometown": "China",
"id": 17117,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/17117/_.png",
"last_name": "Jie",
"name": "Kiwi",
"nationality": "CN",
"role": "jun",
"slug": "icy-edafac34-ac83-4658-8774-5c3103d98ebb"
},
{
"birth_year": 1998,
"birthday": "1998-06-25",
"first_name": "Bae",
"hometown": "South Korea",
"id": 17260,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/17260/220px_rw_holder_2020_split_2.png",
"last_name": "Jae-cheol",
"name": "Holder",
"nationality": "KR",
"role": "top",
"slug": "holder"
}
],
"slug": "rogue-warriors"
},
{
"acronym": "FPX",
"current_videogame": {
"id": 1,
"name": "LoL",
"slug": "league-of-legends"
},
"id": 1568,
"image_url": "https://cdn.dev.pandascore.co/images/team/image/1568/fun_plus_phoenixlogo_square.png",
"location": "CN",
"modified_at": "2021-04-14T13:48:11Z",
"name": "FunPlus Phoenix",
"players": [
{
"birth_year": null,
"birthday": null,
"first_name": "Jia-Jun",
"hometown": "China",
"id": 592,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/592/cool-esrj8abc.png",
"last_name": "Yu",
"name": "Cool",
"nationality": null,
"role": "mid",
"slug": "cool-jia-jun-yu"
},
{
"birth_year": 1995,
"birthday": "1995-12-31",
"first_name": "Kim",
"hometown": "South Korea",
"id": 882,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/882/220px_fpx_gim_goon_2020_split_2.png",
"last_name": "Han-saem",
"name": "GimGoon",
"nationality": "KR",
"role": "top",
"slug": "gimgoon"
},
{
"birth_year": 1998,
"birthday": "1998-04-30",
"first_name": "Weixiang",
"hometown": "China",
"id": 1577,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/1577/220px_fpx_lwx_2020_split_2.png",
"last_name": "Lin",
"name": "Lwx",
"nationality": "CN",
"role": "adc",
"slug": "lwx"
},
{
"birth_year": 1995,
"birthday": "1995-04-04",
"first_name": "Ping",
"hometown": "China",
"id": 1774,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/1774/220px_v5_ping_2020_split_2.png",
"last_name": "Chang",
"name": "Ping",
"nationality": "CN",
"role": "jun",
"slug": "xinyi"
},
{
"birth_year": 2000,
"birthday": "2000-01-22",
"first_name": "Yuming",
"hometown": "Taiwan",
"id": 3444,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/3444/220px-AHQ_Alex_2019_Split_1.png",
"last_name": "Chen",
"name": "Alex",
"nationality": "TW",
"role": "jun",
"slug": "alex"
},
{
"birth_year": 1998,
"birthday": "1998-08-19",
"first_name": "Qingsong",
"hometown": "China",
"id": 7646,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/7646/220px_fpx_crisp_2020_split_2.png",
"last_name": "Liu",
"name": "Crisp",
"nationality": "CN",
"role": "sup",
"slug": "crisp"
}
],
"slug": "funplus-phoenix"
},
{
"acronym": "TOP",
"current_videogame": {
"id": 1,
"name": "LoL",
"slug": "league-of-legends"
},
"id": 1567,
"image_url": "https://cdn.dev.pandascore.co/images/team/image/1567/topsports-gaming-hw655g3n.png",
"location": "CN",
"modified_at": "2019-06-30T11:24:46Z",
"name": "Topsports Gaming",
"players": [
{
"birth_year": 1997,
"birthday": "1997-03-04",
"first_name": "Wen",
"hometown": "China",
"id": 145,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/145/corn.png",
"last_name": "Lei",
"name": "Corn",
"nationality": "CN",
"role": "mid",
"slug": "corn"
},
{
"birth_year": 1993,
"birthday": "1993-06-26",
"first_name": "Byeong-jun",
"hometown": "Korea",
"id": 162,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/162/ggoong-ih98vvpm.png",
"last_name": "Yu",
"name": "GgooNg",
"nationality": "KR",
"role": "mid",
"slug": "ggoong"
},
{
"birth_year": 1995,
"birthday": "1995-08-11",
"first_name": "Yao",
"hometown": "China",
"id": 199,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/199/0.png",
"last_name": "Wu",
"name": "Cat",
"nationality": "CN",
"role": "sup",
"slug": "cat"
},
{
"birth_year": 1997,
"birthday": "1997-12-28",
"first_name": "Haotian",
"hometown": "China",
"id": 2512,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/2512/220px_lgd_lies_2020_split_2.png",
"last_name": "Guo",
"name": "Lies",
"nationality": "CN",
"role": "top",
"slug": "lies"
},
{
"birth_year": 1998,
"birthday": "1998-04-17",
"first_name": "Ming",
"hometown": "China",
"id": 2514,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/2514/tes_qiu_qiu_2020_wc.png",
"last_name": "Zhang",
"name": "QiuQiu",
"nationality": "CN",
"role": "sup",
"slug": "qiuqiu"
},
{
"birth_year": 1997,
"birthday": "1997-08-23",
"first_name": "Huidong",
"hometown": "China",
"id": 3488,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/3488/220px_tes_moyu_2020_split_2.png",
"last_name": "Xiong",
"name": "Moyu",
"nationality": "CN",
"role": "top",
"slug": "moyu"
},
{
"birth_year": 1997,
"birthday": "1997-06-18",
"first_name": "Yulong",
"hometown": "China",
"id": 8957,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/8957/220px_lng_xx_2020_split_2.png",
"last_name": "Xiong",
"name": "Xx",
"nationality": "CN",
"role": "jun",
"slug": "xx-yu-long-xiong"
}
],
"slug": "topsports-gaming"
},
{
"acronym": "SN",
"current_videogame": {
"id": 1,
"name": "LoL",
"slug": "league-of-legends"
},
"id": 652,
"image_url": "https://cdn.dev.pandascore.co/images/team/image/652/_.png",
"location": "CN",
"modified_at": "2021-04-13T12:29:15Z",
"name": "Suning",
"players": [
{
"birth_year": 1995,
"birthday": "1995-11-11",
"first_name": "Lee",
"hometown": "South Korea",
"id": 313,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/313/sn_fury_2020_split_1.png",
"last_name": "Jin-yong",
"name": "Fury",
"nationality": "KR",
"role": "adc",
"slug": "fury"
},
{
"birth_year": 1997,
"birthday": "1997-09-19",
"first_name": "Zhenying",
"hometown": "China",
"id": 3489,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/3489/lgd_langx_2020_wc.png",
"last_name": "Xie",
"name": "Langx",
"nationality": "CN",
"role": "top",
"slug": "xiaoal"
},
{
"birth_year": 1996,
"birthday": "1996-07-04",
"first_name": "Byung-yoon",
"hometown": "South Korea",
"id": 3491,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/3491/220px-GRX_Yoon_2019_Split_1.png",
"last_name": "Kim",
"name": "Yoon",
"nationality": "KR",
"role": "sup",
"slug": "yoon"
},
{
"birth_year": 1998,
"birthday": "1998-08-29",
"first_name": "Chen",
"hometown": "China",
"id": 3494,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/3494/220px_es_fenfen_2020_split_2.png",
"last_name": "Huang",
"name": "Fenfen",
"nationality": "CN",
"role": "mid",
"slug": "fenfen"
},
{
"birth_year": 1999,
"birthday": "1999-01-15",
"first_name": "Zhihao",
"hometown": "China",
"id": 3495,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/3495/220px_omg_h4cker_2020_split_2.png",
"last_name": "Yang",
"name": "H4cker",
"nationality": "CN",
"role": "jun",
"slug": "h4cker"
},
{
"birth_year": null,
"birthday": null,
"first_name": "Yi",
"hometown": "China",
"id": 7658,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/7658/brain-5tspba4p.png",
"last_name": "Wang",
"name": "Banks",
"nationality": "CN",
"role": "sup",
"slug": "brain"
},
{
"birth_year": 2000,
"birthday": "2000-07-24",
"first_name": "Tianliang",
"hometown": "China",
"id": 8953,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/8953/220px_fpx_tian_2020_split_2.png",
"last_name": "Gao",
"name": "Tian",
"nationality": "CN",
"role": "jun",
"slug": "tian"
},
{
"birth_year": 2000,
"birthday": "2000-09-16",
"first_name": "Tao",
"hometown": "China",
"id": 15186,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/15186/220px_sn_angel_2020_split_2.png",
"last_name": "Xiang",
"name": "Angel",
"nationality": "CN",
"role": "mid",
"slug": "angelo"
}
],
"slug": "sn-gaming"
},
{
"acronym": "IG",
"current_videogame": {
"id": 1,
"name": "LoL",
"slug": "league-of-legends"
},
"id": 411,
"image_url": "https://cdn.dev.pandascore.co/images/team/image/411/invictus-gaming.png",
"location": "CN",
"modified_at": "2021-04-01T06:00:30Z",
"name": "Invictus Gaming",
"players": [
{
"birth_year": 1994,
"birthday": "1994-12-19",
"first_name": "Ho-seong",
"hometown": "South Korea",
"id": 316,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/316/800px_ig_duke_2019_wc.png",
"last_name": "Lee",
"name": "Duke",
"nationality": "KR",
"role": "top",
"slug": "duke"
},
{
"birth_year": 1997,
"birthday": "1997-03-11",
"first_name": "Song",
"hometown": "South Korea",
"id": 390,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/390/220px_ig_rookie_2020_split_2.png",
"last_name": "Eui-jin",
"name": "Rookie",
"nationality": "KR",
"role": "mid",
"slug": "rookie"
},
{
"birth_year": 1998,
"birthday": "1998-03-12",
"first_name": "Zhenning",
"hometown": "China",
"id": 2508,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/2508/220px_ig_ning_2020_split_2.png",
"last_name": "Gao",
"name": "Ning",
"nationality": "CN",
"role": "jun",
"slug": "ning"
},
{
"birth_year": 1997,
"birthday": "1997-03-08",
"first_name": "Long",
"hometown": "China",
"id": 3479,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/3479/west.png",
"last_name": "Chen",
"name": "West",
"nationality": "CN",
"role": "adc",
"slug": "west"
},
{
"birth_year": 1999,
"birthday": "1999-11-11",
"first_name": "Seung-Lok",
"hometown": "South Korea",
"id": 3480,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/3480/220px_ig_the_shy_2020_split_2.png",
"last_name": "Kang",
"name": "TheShy",
"nationality": "KR",
"role": "top",
"slug": "theshy"
},
{
"birth_year": 1999,
"birthday": "1999-07-16",
"first_name": "Liuyi",
"hometown": "China",
"id": 7875,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/7875/220px_ig_baolan_2020_split_2.png",
"last_name": "Wang",
"name": "Baolan",
"nationality": "CN",
"role": "sup",
"slug": "baolan"
},
{
"birth_year": 2000,
"birthday": "2000-11-18",
"first_name": "Wenbo",
"hometown": "China",
"id": 8951,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/8951/220px_tes_jackey_love_2020_split_2.png",
"last_name": "Yu",
"name": "JackeyLove",
"nationality": "CN",
"role": "adc",
"slug": "jackeylove"
}
],
"slug": "invictus-gaming"
},
{
"acronym": "EDG",
"current_videogame": {
"id": 1,
"name": "LoL",
"slug": "league-of-legends"
},
"id": 405,
"image_url": "https://cdn.dev.pandascore.co/images/team/image/405/edward-gaming-52bsed1a.png",
"location": "CN",
"modified_at": "2021-04-09T12:33:55Z",
"name": "EDward Gaming",
"players": [
{
"birth_year": 1993,
"birthday": "1993-07-25",
"first_name": "Kai",
"hometown": "China",
"id": 123,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/123/clearlove.png",
"last_name": "Ming",
"name": "Clearlove",
"nationality": "CN",
"role": "jun",
"slug": "clearlove"
},
{
"birth_year": 1998,
"birthday": "1998-03-14",
"first_name": "Lee",
"hometown": "South Korea",
"id": 839,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/839/edg_scout_2020_split_2.png",
"last_name": "Ye-chan",
"name": "Scout",
"nationality": "KR",
"role": "mid",
"slug": "scout"
},
{
"birth_year": 1998,
"birthday": "1998-03-15",
"first_name": "Jeon",
"hometown": "South Korea",
"id": 1111,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/1111/r7_rey_2021_opening.png",
"last_name": "Ji-won",
"name": "Rey",
"nationality": "KR",
"role": "top",
"slug": "ray"
},
{
"birth_year": 1998,
"birthday": "1998-06-06",
"first_name": "Ye",
"hometown": "China",
"id": 2170,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/2170/220px_edg_meiko_2020_split_2.png",
"last_name": "Tian",
"name": "Meiko",
"nationality": "CN",
"role": "sup",
"slug": "meiko"
},
{
"birth_year": 2000,
"birthday": "2000-07-12",
"first_name": "Xianzhao",
"hometown": "China",
"id": 7650,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/7650/220px_vg_i_boy_2020_split_1.png",
"last_name": "Hu",
"name": "iBoy",
"nationality": "CN",
"role": "adc",
"slug": "iboy"
},
{
"birth_year": 1998,
"birthday": "1998-07-21",
"first_name": "Wenlin",
"hometown": "China",
"id": 8961,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/8961/220px_rw_haro_2020_split_2.png",
"last_name": "Chen",
"name": "Haro",
"nationality": "CN",
"role": "jun",
"slug": "haro"
}
],
"slug": "edward-gaming"
},
{
"acronym": "JDG",
"current_videogame": {
"id": 1,
"name": "LoL",
"slug": "league-of-legends"
},
"id": 318,
"image_url": "https://cdn.dev.pandascore.co/images/team/image/318/qg-reapers.png",
"location": "CN",
"modified_at": "2021-04-01T06:00:28Z",
"name": "JD Gaming",
"players": [
{
"birth_year": 1997,
"birthday": "1997-02-14",
"first_name": "Dong-wook",
"hometown": "South Korea",
"id": 1027,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/1027/220px_jdg_loke_n_2020_split_2.png",
"last_name": "Lee",
"name": "LokeN",
"nationality": "KR",
"role": "adc",
"slug": "loken"
},
{
"birth_year": 1999,
"birthday": "1999-07-07",
"first_name": "Kim",
"hometown": "South Korea",
"id": 1736,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/1736/220px_gen_clid_2020_split_1.png",
"last_name": "Tae-min",
"name": "Clid",
"nationality": "KR",
"role": "jun",
"slug": "clid"
},
{
"birth_year": 1996,
"birthday": "1996-03-07",
"first_name": "Minghao",
"hometown": "China",
"id": 3487,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/3487/220px_jdg_lv_mao_2020_split_2.png",
"last_name": "Zhuo",
"name": "LvMao",
"nationality": "CN",
"role": "sup",
"slug": "lvmao"
},
{
"birth_year": 1997,
"birthday": "1997-07-27",
"first_name": "Xingran",
"hometown": "China",
"id": 8968,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/8968/220px_jdg_zoom_2020_split_2.png",
"last_name": "Han",
"name": "Zoom",
"nationality": "CN",
"role": "top",
"slug": "zoom"
},
{
"birth_year": 1998,
"birthday": "1998-10-19",
"first_name": "Qi",
"hometown": "China",
"id": 8969,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/8969/220px_jdg_yagao_2020_split_2.png",
"last_name": "Zeng",
"name": "Yagao",
"nationality": "CN",
"role": "mid",
"slug": "yagao"
}
],
"slug": "qg-reapers"
},
{
"acronym": "RNG",
"current_videogame": {
"id": 1,
"name": "LoL",
"slug": "league-of-legends"
},
"id": 74,
"image_url": "https://cdn.dev.pandascore.co/images/team/image/74/royal-never-give-up-cyacqft1.png",
"location": "CN",
"modified_at": "2021-04-18T15:11:37Z",
"name": "Royal Never Give Up",
"players": [
{
"birth_year": 1997,
"birthday": "1997-04-05",
"first_name": "Zihao",
"hometown": "China",
"id": 146,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/146/220px_rng_uzi_2020_split_1.png",
"last_name": "Jian",
"name": "Uzi",
"nationality": "CN",
"role": "adc",
"slug": "uzi"
},
{
"birth_year": 1997,
"birthday": "1997-08-25",
"first_name": "Zhihao",
"hometown": "China",
"id": 368,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/368/zz1tai-hadyl6ic.png",
"last_name": "Liu",
"name": "Zz1tai",
"nationality": "CN",
"role": "mid",
"slug": "zz1tai"
},
{
"birth_year": null,
"birthday": null,
"first_name": "Shi-Yu",
"hometown": "China",
"id": 388,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/388/0.png",
"last_name": "Liu",
"name": "Mlxg",
"nationality": null,
"role": "jun",
"slug": "mlxg"
},
{
"birth_year": 1997,
"birthday": "1997-02-14",
"first_name": "Haohsuan",
"hometown": "Taiwan",
"id": 418,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/418/220px_tes_karsa_2020_split_2.png",
"last_name": "Hung",
"name": "Karsa",
"nationality": "TW",
"role": "jun",
"slug": "karsa"
},
{
"birth_year": 1998,
"birthday": "1998-01-28",
"first_name": "Yuanhao",
"hometown": "China",
"id": 429,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/429/220px_rng_xiaohu_2020_split_2.png",
"last_name": "Li",
"name": "Xiaohu",
"nationality": "CN",
"role": "top",
"slug": "xiaohu"
},
{
"birth_year": null,
"birthday": null,
"first_name": "Junze",
"hometown": "China",
"id": 726,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/726/0.png",
"last_name": "Yan",
"name": "Letme",
"nationality": null,
"role": "top",
"slug": "letme"
},
{
"birth_year": 1998,
"birthday": "1998-12-22",
"first_name": "Senming",
"hometown": "China",
"id": 1584,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/1584/220px_rng_ming_2020_split_2.png",
"last_name": "Shi",
"name": "Ming",
"nationality": "CN",
"role": "sup",
"slug": "ming"
},
{
"birth_year": 2000,
"birthday": "2000-02-24",
"first_name": "Zhichun",
"hometown": "China",
"id": 8963,
"image_url": "https://cdn.dev.pandascore.co/images/player/image/8963/0.png",
"last_name": "Dai",
"name": "Able",
"nationality": "CN",
"role": "adc",
"slug": "able"
}
],
"slug": "royal-never-give-up"
}
],
"type": "Team"
}
}
},
"schema": {
"$ref": "#/components/schemas/TournamentRosters"
}
}
},
"description": "Tournament rosters (team or player)"
},
"Videogame": {
"content": {
"application/json": {
"examples": {
"/videogames/dota-2": {
"description": "/videogames/dota-2",
"value": {
"current_version": null,
"id": 4,
"leagues": [
{
"id": 4106,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4106/The_International_2011.png",
"modified_at": "2019-02-26T14:08:56Z",
"name": "The International",
"series": [
{
"begin_at": "2016-06-24T22:00:00Z",
"description": null,
"end_at": "2016-06-29T22:00:00Z",
"full_name": "Americas qualifier 6 2016",
"id": 2158,
"league_id": 4106,
"modified_at": "2020-03-05T00:44:45Z",
"name": "Americas qualifier 6",
"season": null,
"slug": "the-international-americas-qualifier-6-2016",
"tier": null,
"winner_id": 1653,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2016-06-24T22:00:00Z",
"description": null,
"end_at": "2016-06-29T22:00:00Z",
"full_name": "Europe qualifier 6 2016",
"id": 2159,
"league_id": 4106,
"modified_at": "2020-03-05T00:45:35Z",
"name": "Europe qualifier 6",
"season": null,
"slug": "the-international-europe-qualifier-6-2016",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2016
},
{
"begin_at": "2016-06-25T02:00:00Z",
"description": null,
"end_at": "2016-06-29T22:00:00Z",
"full_name": "Southeast Asia qualifier 6 2016",
"id": 2157,
"league_id": 4106,
"modified_at": "2020-03-08T06:18:19Z",
"name": "Southeast Asia qualifier 6",
"season": null,
"slug": "the-international-southeast-asia-qualifier-6-2016",
"tier": null,
"winner_id": 1655,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2016-06-26T02:30:00Z",
"description": null,
"end_at": "2016-06-29T22:00:00Z",
"full_name": "China qualifier 6 2016",
"id": 2160,
"league_id": 4106,
"modified_at": "2019-12-20T09:54:02Z",
"name": "China qualifier 6",
"season": null,
"slug": "the-international-china-qualifier-6-2016",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2016
},
{
"begin_at": "2016-08-02T22:00:00Z",
"description": null,
"end_at": "2016-08-13T22:00:00Z",
"full_name": "Season 6 2016",
"id": 1382,
"league_id": 4106,
"modified_at": "2018-02-10T03:09:47Z",
"name": null,
"season": "6",
"slug": "the-international-6-2016-c8b0c008-ccd9-406a-b0dd-72085325be2b",
"tier": null,
"winner_id": 1720,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2017-06-26T02:00:00Z",
"description": null,
"end_at": "2017-06-29T22:00:00Z",
"full_name": "Southeast Asia qualifier season 7 2017",
"id": 2156,
"league_id": 4106,
"modified_at": "2019-12-20T09:54:24Z",
"name": "Southeast Asia qualifier",
"season": "7",
"slug": "the-international-southeast-asia-qualifier-7-2017",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2017
},
{
"begin_at": "2017-06-26T08:00:00Z",
"description": null,
"end_at": "2017-06-29T19:36:00Z",
"full_name": "Europe qualifier season 7 2017",
"id": 2153,
"league_id": 4106,
"modified_at": "2019-11-17T19:34:55Z",
"name": "Europe qualifier",
"season": "7",
"slug": "the-international-europe-qualifier-7-2017",
"tier": null,
"winner_id": 1666,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2017-06-26T08:00:00Z",
"description": null,
"end_at": "2017-06-29T17:10:00Z",
"full_name": "CIS qualifier season 7 2017",
"id": 2154,
"league_id": 4106,
"modified_at": "2019-11-17T20:08:01Z",
"name": "CIS qualifier",
"season": "7",
"slug": "the-international-cis-qualifier-7-2017",
"tier": null,
"winner_id": 1649,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2017-06-26T16:00:00Z",
"description": null,
"end_at": "2017-06-30T00:15:00Z",
"full_name": "South America qualifier season 7 2017",
"id": 2152,
"league_id": 4106,
"modified_at": "2019-11-17T19:09:53Z",
"name": "South America qualifier",
"season": "7",
"slug": "the-international-south-america-qualifier-7-2017",
"tier": null,
"winner_id": 1659,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2017-06-26T17:00:00Z",
"description": null,
"end_at": "2017-06-30T04:35:00Z",
"full_name": "North America qualifier season 7 2017",
"id": 2151,
"league_id": 4106,
"modified_at": "2019-11-17T18:39:17Z",
"name": "North America qualifier",
"season": "7",
"slug": "the-international-north-america-qualifier-2017",
"tier": null,
"winner_id": 1688,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2017-06-27T02:00:00Z",
"description": null,
"end_at": "2017-06-30T08:09:00Z",
"full_name": "China qualifier season 7 2017",
"id": 2155,
"league_id": 4106,
"modified_at": "2020-01-02T10:48:14Z",
"name": "China qualifier",
"season": "7",
"slug": "the-international-china-qualifier-7-2017",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2017
},
{
"begin_at": "2017-08-01T22:00:00Z",
"description": null,
"end_at": "2017-08-12T22:00:00Z",
"full_name": "Season 7 2017",
"id": 1380,
"league_id": 4106,
"modified_at": "2018-02-10T03:09:47Z",
"name": null,
"season": "7",
"slug": "the-international-7-2017-9785411d-af04-48f9-bf86-b568b8126055",
"tier": null,
"winner_id": 1647,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2018-06-18T02:00:00Z",
"description": null,
"end_at": "2018-06-21T08:30:00Z",
"full_name": "China main qualifier season 8 2018",
"id": 2033,
"league_id": 4106,
"modified_at": "2019-11-10T04:53:40Z",
"name": "China main qualifier",
"season": "8",
"slug": "the-international-china-main-qualifier-8-2018",
"tier": null,
"winner_id": 2594,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-06-18T08:00:00Z",
"description": null,
"end_at": "2018-06-21T20:30:00Z",
"full_name": "CIS main qualifier season 8 2018",
"id": 2032,
"league_id": 4106,
"modified_at": "2019-11-20T15:34:12Z",
"name": "CIS main qualifier",
"season": "8",
"slug": "the-international-cis-main-qualifier-8-2018",
"tier": null,
"winner_id": 2576,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-06-18T16:00:00Z",
"description": null,
"end_at": "2018-06-24T00:30:00Z",
"full_name": "South America main qualifier season 8 2018",
"id": 2034,
"league_id": 4106,
"modified_at": "2019-11-10T05:00:50Z",
"name": "South America main qualifier",
"season": "8",
"slug": "the-international-south-america-main-qualifier-8-2018",
"tier": null,
"winner_id": 1819,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-06-22T03:00:00Z",
"description": null,
"end_at": "2018-06-25T11:00:00Z",
"full_name": "Southeast Asia main qualifier season 8 2018",
"id": 2030,
"league_id": 4106,
"modified_at": "2019-11-10T04:12:38Z",
"name": "Southeast Asia main qualifier",
"season": "8",
"slug": "the-international-southeast-asia-main-qualifier-8-2018",
"tier": null,
"winner_id": 1664,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-06-22T09:00:00Z",
"description": null,
"end_at": "2018-06-25T21:00:00Z",
"full_name": "Europe main qualifier season 8 2018",
"id": 2029,
"league_id": 4106,
"modified_at": "2019-11-10T02:30:11Z",
"name": "Europe main qualifier",
"season": "8",
"slug": "the-international-europe-main-qualifier-8-2018",
"tier": null,
"winner_id": 1654,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-06-22T18:00:00Z",
"description": null,
"end_at": "2018-06-26T00:00:00Z",
"full_name": "North America main qualifier season 8 2018",
"id": 2031,
"league_id": 4106,
"modified_at": "2019-11-10T04:23:14Z",
"name": "North America main qualifier",
"season": "8",
"slug": "the-international-north-america-main-qualifier-8-2018",
"tier": null,
"winner_id": 1816,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-08-20T00:00:00Z",
"description": null,
"end_at": "2018-08-25T00:00:00Z",
"full_name": "Season 8 2018",
"id": 1466,
"league_id": 4106,
"modified_at": "2018-09-20T10:43:27Z",
"name": null,
"season": "8",
"slug": "the-international-8-2018",
"tier": null,
"winner_id": 1654,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2019-07-07T02:00:00Z",
"description": null,
"end_at": "2019-08-26T18:00:00Z",
"full_name": "Season 9 2019",
"id": 1821,
"league_id": 4106,
"modified_at": "2019-08-25T20:39:38Z",
"name": null,
"season": "9",
"slug": "the-international-2019",
"tier": null,
"winner_id": 1654,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-07-07T03:00:00Z",
"description": null,
"end_at": "2019-07-10T12:30:00Z",
"full_name": "Southeast Asia qualifier season 9 2019",
"id": 1927,
"league_id": 4106,
"modified_at": "2019-11-07T14:31:10Z",
"name": "Southeast Asia qualifier",
"season": "9",
"slug": "the-international-southeast-asia-qualifier-9-2019",
"tier": null,
"winner_id": 1677,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-07-07T10:00:00Z",
"description": null,
"end_at": "2019-07-10T18:30:00Z",
"full_name": "CIS qualifier season 9 2019",
"id": 1926,
"league_id": 4106,
"modified_at": "2019-11-07T14:31:16Z",
"name": "CIS qualifier",
"season": "9",
"slug": "the-international-cis-qualifier-9-2019",
"tier": null,
"winner_id": 1699,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-07-07T17:00:00Z",
"description": null,
"end_at": "2019-07-11T00:00:00Z",
"full_name": "South America qualifier season 9 2019",
"id": 1924,
"league_id": 4106,
"modified_at": "2019-11-07T14:31:21Z",
"name": "South America qualifier",
"season": "9",
"slug": "the-international-south-america-qualifier-9-2019",
"tier": null,
"winner_id": 1659,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-07-10T22:00:00Z",
"description": null,
"end_at": "2019-07-15T18:00:00Z",
"full_name": "North America qualifier season 9 2019",
"id": 1921,
"league_id": 4106,
"modified_at": "2019-11-07T14:31:38Z",
"name": "North America qualifier",
"season": "9",
"slug": "the-international-north-america-qualifier-9-2019",
"tier": null,
"winner_id": 3372,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-07-10T22:00:00Z",
"description": null,
"end_at": "2019-07-15T18:00:00Z",
"full_name": "Europe qualifier season 9 2019",
"id": 1922,
"league_id": 4106,
"modified_at": "2019-11-07T14:31:33Z",
"name": "Europe qualifier",
"season": "9",
"slug": "the-international-europe-qualifier-9-2019",
"tier": null,
"winner_id": 125180,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-07-11T03:00:00Z",
"description": null,
"end_at": "2019-07-14T12:30:00Z",
"full_name": "China qualifier season 9 2019",
"id": 1923,
"league_id": 4106,
"modified_at": "2019-11-07T14:31:28Z",
"name": "China qualifier",
"season": "9",
"slug": "the-international-china-qualifier-9-2019",
"tier": null,
"winner_id": 3364,
"winner_type": "Team",
"year": 2019
}
],
"slug": "the-international",
"url": null
},
{
"id": 4107,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4107/Dota_Major_Championships_Announcement.png",
"modified_at": "2021-04-08T19:27:10Z",
"name": "Dota Major Championships",
"series": [
{
"begin_at": "2015-10-09T22:00:00Z",
"description": null,
"end_at": "2015-10-12T22:00:00Z",
"full_name": "The Frankfurt Major : America qualifier 2015",
"id": 2091,
"league_id": 4107,
"modified_at": "2019-11-12T16:20:53Z",
"name": "The Frankfurt Major : America qualifier",
"season": null,
"slug": "dota-major-championships-the-frankfurt-major-america-qualifier-2015",
"tier": null,
"winner_id": 3223,
"winner_type": "Team",
"year": 2015
},
{
"begin_at": "2015-10-09T22:00:00Z",
"description": null,
"end_at": "2015-10-12T22:00:00Z",
"full_name": "The Frankfurt Major : Europe qualifier 2015",
"id": 2093,
"league_id": 4107,
"modified_at": "2019-11-12T16:34:05Z",
"name": "The Frankfurt Major : Europe qualifier",
"season": null,
"slug": "dota-major-championships-the-frankfurt-major-europe-qualifier-2015",
"tier": null,
"winner_id": 1793,
"winner_type": "Team",
"year": 2015
},
{
"begin_at": "2015-10-09T22:00:00Z",
"description": null,
"end_at": "2015-10-12T22:00:00Z",
"full_name": "The Frankfurt Major : Southeast Asia qualifier 2015",
"id": 2094,
"league_id": 4107,
"modified_at": "2019-11-12T16:39:15Z",
"name": "The Frankfurt Major : Southeast Asia qualifier",
"season": null,
"slug": "dota-major-championships-the-frankfurt-major-southeast-asia-qualifier-2015",
"tier": null,
"winner_id": 1677,
"winner_type": "Team",
"year": 2015
},
{
"begin_at": "2015-10-10T22:00:00Z",
"description": null,
"end_at": "2015-10-13T22:00:00Z",
"full_name": "The Frankfurt Major : China qualifier 2015",
"id": 2092,
"league_id": 4107,
"modified_at": "2019-11-12T16:27:54Z",
"name": "The Frankfurt Major : China qualifier",
"season": null,
"slug": "dota-major-championships-the-frankfurt-major-china-qualifier-2015",
"tier": null,
"winner_id": 1652,
"winner_type": "Team",
"year": 2015
},
{
"begin_at": "2015-11-13T00:00:00Z",
"description": null,
"end_at": "2015-11-21T00:00:00Z",
"full_name": "The Frankfurt Major 2015",
"id": 1391,
"league_id": 4107,
"modified_at": "2018-02-10T03:09:48Z",
"name": "The Frankfurt Major",
"season": null,
"slug": "dota-major-championships-2015",
"tier": null,
"winner_id": 1654,
"winner_type": "Team",
"year": 2015
},
{
"begin_at": "2016-01-06T23:00:00Z",
"description": null,
"end_at": "2016-01-09T23:00:00Z",
"full_name": "The Shanghai Major : America qualifier 2016",
"id": 2099,
"league_id": 4107,
"modified_at": "2019-11-12T17:32:02Z",
"name": "The Shanghai Major : America qualifier",
"season": null,
"slug": "dota-major-championships-the-shanghai-major-america-qualifier-2016",
"tier": null,
"winner_id": 1771,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2016-01-06T23:00:00Z",
"description": null,
"end_at": "2016-01-09T23:00:00Z",
"full_name": "The Shanghai Major : China qualifier 2016",
"id": 2101,
"league_id": 4107,
"modified_at": "2019-11-12T17:45:12Z",
"name": "The Shanghai Major : China qualifier",
"season": null,
"slug": "dota-major-championships-the-shanghai-major-china-qualifier-2016",
"tier": null,
"winner_id": 1657,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2016-01-06T23:00:00Z",
"description": null,
"end_at": "2016-01-09T23:00:00Z",
"full_name": "The Shanghai Major : Europe qualifier 2016",
"id": 2108,
"league_id": 4107,
"modified_at": "2019-11-13T10:32:57Z",
"name": "The Shanghai Major : Europe qualifier",
"season": null,
"slug": "dota-major-championships-the-shanghai-major-europe-qualifier-2016",
"tier": null,
"winner_id": 3183,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2016-01-06T23:00:00Z",
"description": null,
"end_at": "2016-01-09T23:00:00Z",
"full_name": "The Shanghai Major : Southeast Asia qualifier 2016",
"id": 2109,
"league_id": 4107,
"modified_at": "2019-11-13T10:39:40Z",
"name": "The Shanghai Major : Southeast Asia qualifier",
"season": null,
"slug": "dota-major-championships-the-shanghai-major-southeast-asia-qualifier-2016",
"tier": null,
"winner_id": 3217,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2016-02-25T00:00:00Z",
"description": null,
"end_at": "2016-03-06T00:00:00Z",
"full_name": "The Shanghai Major 2016",
"id": 1389,
"league_id": 4107,
"modified_at": "2018-02-10T03:09:48Z",
"name": "The Shanghai Major",
"season": null,
"slug": "dota-major-championships-2016-2e103038-c8ab-433e-a452-b00ef40a49c5",
"tier": null,
"winner_id": 1656,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2016-05-02T22:00:00Z",
"description": null,
"end_at": "2016-05-05T22:00:00Z",
"full_name": "The Manila Major : America qualifier 2016",
"id": 2095,
"league_id": 4107,
"modified_at": "2019-11-12T16:50:37Z",
"name": "The Manila Major : America qualifier",
"season": null,
"slug": "dota-major-championships-the-manila-major-america-qualifier-2016",
"tier": null,
"winner_id": 125180,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2016-05-02T22:00:00Z",
"description": null,
"end_at": "2016-05-05T22:00:00Z",
"full_name": "The Manila Major : China qualifier 2016",
"id": 2096,
"league_id": 4107,
"modified_at": "2019-11-20T15:27:04Z",
"name": "The Manila Major : China qualifier",
"season": null,
"slug": "dota-major-championships-the-manila-major-china-qualifier-2016",
"tier": null,
"winner_id": 1652,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2016-05-02T22:00:00Z",
"description": null,
"end_at": "2016-05-05T22:00:00Z",
"full_name": "The Manila Major : Europe qualifier 2016",
"id": 2097,
"league_id": 4107,
"modified_at": "2019-11-12T17:11:37Z",
"name": "The Manila Major : Europe qualifier",
"season": null,
"slug": "dota-major-championships-the-manila-major-europe-qualifier-2016",
"tier": null,
"winner_id": 1649,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2016-05-02T22:00:00Z",
"description": null,
"end_at": "2016-05-05T22:00:00Z",
"full_name": "The Manila Major : Southeast Asia qualifier 2016",
"id": 2098,
"league_id": 4107,
"modified_at": "2019-11-20T15:33:29Z",
"name": "The Manila Major : Southeast Asia qualifier",
"season": null,
"slug": "dota-major-championships-the-manila-major-southeast-asia-qualifier-2016",
"tier": null,
"winner_id": 1677,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2016-06-03T00:00:00Z",
"description": null,
"end_at": "2016-06-12T00:00:00Z",
"full_name": "The Manila Major 2016",
"id": 1387,
"league_id": 4107,
"modified_at": "2018-02-10T03:09:47Z",
"name": "The Manila Major",
"season": null,
"slug": "dota-major-championships-2016-72be6bd6-826e-4f21-b17f-5d9d06bf979f",
"tier": null,
"winner_id": 1654,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2016-10-26T22:00:00Z",
"description": null,
"end_at": "2016-10-29T22:00:00Z",
"full_name": "The Boston Major : America qualifier 2016",
"id": 2087,
"league_id": 4107,
"modified_at": "2019-11-12T14:49:26Z",
"name": "The Boston Major : America qualifier",
"season": null,
"slug": "dota-major-championships-the-boston-major-america-qualifier-2016",
"tier": null,
"winner_id": 1688,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2016-10-26T22:00:00Z",
"description": null,
"end_at": "2016-10-29T22:00:00Z",
"full_name": "The Boston Major : Europe qualifier 2016",
"id": 2089,
"league_id": 4107,
"modified_at": "2019-11-12T15:34:39Z",
"name": "The Boston Major : Europe qualifier",
"season": null,
"slug": "dota-major-championships-the-boston-major-europe-qualifier-2016",
"tier": null,
"winner_id": 1757,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2016-10-26T22:00:00Z",
"description": null,
"end_at": "2016-10-29T23:00:00Z",
"full_name": "The Boston Major : Southeast Asia qualifier 2016",
"id": 2090,
"league_id": 4107,
"modified_at": "2019-11-12T16:03:36Z",
"name": "The Boston Major : Southeast Asia qualifier",
"season": null,
"slug": "dota-major-championships-the-boston-major-southeast-asia-qualifier-2016",
"tier": null,
"winner_id": 1712,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2016-10-27T22:00:00Z",
"description": null,
"end_at": "2016-10-30T23:00:00Z",
"full_name": "The Boston Major : China qualifier 2016",
"id": 2088,
"league_id": 4107,
"modified_at": "2019-11-12T15:04:02Z",
"name": "The Boston Major : China qualifier",
"season": null,
"slug": "dota-major-championships-the-boston-major-china-qualifier-2016",
"tier": null,
"winner_id": 1648,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2016-12-03T00:00:00Z",
"description": null,
"end_at": "2016-12-10T00:00:00Z",
"full_name": "The Boston Major 2016",
"id": 1385,
"league_id": 4107,
"modified_at": "2018-02-10T03:09:47Z",
"name": "The Boston Major",
"season": null,
"slug": "dota-major-championships-2016",
"tier": null,
"winner_id": 1654,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2017-03-09T23:00:00Z",
"description": null,
"end_at": "2017-03-12T23:00:00Z",
"full_name": "The Kiev Major : North America qualifier 2017",
"id": 2035,
"league_id": 4107,
"modified_at": "2019-11-10T12:46:59Z",
"name": "The Kiev Major : North America qualifier",
"season": null,
"slug": "dota-major-championships-the-kiev-major-north-america-qualifier-2017",
"tier": null,
"winner_id": 1734,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2017-03-09T23:00:00Z",
"description": null,
"end_at": "2017-03-12T23:00:00Z",
"full_name": "The Kiev Major : South America qualifier 2017",
"id": 2036,
"league_id": 4107,
"modified_at": "2019-11-10T12:48:45Z",
"name": "The Kiev Major : South America qualifier",
"season": null,
"slug": "dota-major-championships-the-kiev-major-south-america-qualifier-2017",
"tier": null,
"winner_id": 1735,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2017-03-09T23:00:00Z",
"description": null,
"end_at": "2017-03-12T23:00:00Z",
"full_name": "The Kiev Major : Europe qualifier 2017",
"id": 2037,
"league_id": 4107,
"modified_at": "2019-11-10T12:53:53Z",
"name": "The Kiev Major : Europe qualifier",
"season": null,
"slug": "dota-major-championships-the-kiev-major-europe-qualifier-2017",
"tier": null,
"winner_id": 1656,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2017-03-09T23:00:00Z",
"description": null,
"end_at": "2017-03-12T23:00:00Z",
"full_name": "The Kiev Major : CIS qualifier 2017",
"id": 2038,
"league_id": 4107,
"modified_at": "2019-11-10T12:57:02Z",
"name": "The Kiev Major : CIS qualifier",
"season": null,
"slug": "dota-major-championships-the-kiev-major-cis-qualifier-2017",
"tier": null,
"winner_id": 1651,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2017-03-09T23:00:00Z",
"description": null,
"end_at": "2017-03-12T23:00:00Z",
"full_name": "The Kiev Major : Southeast Asia 2017",
"id": 2040,
"league_id": 4107,
"modified_at": "2019-11-10T14:36:02Z",
"name": "The Kiev Major : Southeast Asia",
"season": null,
"slug": "dota-major-championships-the-kiev-major-southeast-asia-2017",
"tier": null,
"winner_id": 1712,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2017-03-10T23:00:00Z",
"description": null,
"end_at": "2017-03-13T23:00:00Z",
"full_name": "The Kiev Major : China qualifier 2017",
"id": 2039,
"league_id": 4107,
"modified_at": "2019-11-10T13:00:10Z",
"name": "The Kiev Major : China qualifier",
"season": null,
"slug": "dota-major-championships-the-kiev-major-china-qualifier-2017",
"tier": null,
"winner_id": 1650,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2017-04-24T00:00:00Z",
"description": null,
"end_at": "2017-04-30T00:00:00Z",
"full_name": "The Kiev Major 2017",
"id": 1383,
"league_id": 4107,
"modified_at": "2018-02-10T03:09:47Z",
"name": "The Kiev Major",
"season": null,
"slug": "dota-major-championships-2017",
"tier": null,
"winner_id": 1654,
"winner_type": "Team",
"year": 2017
}
],
"slug": "dota-major-championships",
"url": null
},
{
"id": 4108,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4108/PGL.png",
"modified_at": "2019-02-08T23:03:56Z",
"name": "PGL",
"series": [
{
"begin_at": "2017-09-10T22:00:00Z",
"description": null,
"end_at": "2017-09-10T22:00:00Z",
"full_name": "Open Bucharest: South America qualifier 2017",
"id": 2279,
"league_id": 4108,
"modified_at": "2019-11-24T17:57:50Z",
"name": "Open Bucharest: South America qualifier",
"season": null,
"slug": "pgl-open-bucharest-south-america-qualifier-2018",
"tier": null,
"winner_id": 1659,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2017-09-17T22:00:00Z",
"description": null,
"end_at": "2017-09-19T22:00:00Z",
"full_name": "Open Bucharest: CIS qualifier 2017",
"id": 2281,
"league_id": 4108,
"modified_at": "2019-11-24T18:04:19Z",
"name": "Open Bucharest: CIS qualifier",
"season": null,
"slug": "pgl-open-bucharest-cis-qualifier-2017",
"tier": null,
"winner_id": 1699,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2017-09-18T00:00:00Z",
"description": null,
"end_at": "2017-09-23T00:00:00Z",
"full_name": "Open Bucharest: North America qualifier 2017",
"id": 2280,
"league_id": 4108,
"modified_at": "2019-11-24T18:02:50Z",
"name": "Open Bucharest: North America qualifier",
"season": null,
"slug": "pgl-open-bucharest-north-america-qualifier-2017",
"tier": null,
"winner_id": 1803,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2017-09-18T22:00:00Z",
"description": null,
"end_at": "2017-09-24T22:00:00Z",
"full_name": "Open Bucharest: Europe qualifier 2017",
"id": 2282,
"league_id": 4108,
"modified_at": "2019-11-24T18:06:20Z",
"name": "Open Bucharest: Europe qualifier",
"season": null,
"slug": "pgl-open-bucharest-europe-qualifier-2017",
"tier": null,
"winner_id": 1656,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2017-10-19T00:00:00Z",
"description": null,
"end_at": "2017-10-22T00:00:00Z",
"full_name": "Open Bucharest 2017",
"id": 1393,
"league_id": 4108,
"modified_at": "2018-02-10T03:09:48Z",
"name": "Open Bucharest",
"season": null,
"slug": "pgl-2017",
"tier": null,
"winner_id": 1677,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2018-01-03T23:00:00Z",
"description": null,
"end_at": "2018-01-06T23:00:00Z",
"full_name": "The Bucharest Major: China qualifier 2018",
"id": 2274,
"league_id": 4108,
"modified_at": "2019-11-24T16:16:20Z",
"name": "The Bucharest Major: China qualifier",
"season": null,
"slug": "pgl-the-bucharest-major-china-qualifier-2018",
"tier": null,
"winner_id": 1804,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-01-09T23:00:00Z",
"description": null,
"end_at": "2018-01-14T23:00:00Z",
"full_name": "The Bucharest Major: SoutheEast Asia qualifier 2018",
"id": 2273,
"league_id": 4108,
"modified_at": "2019-11-24T14:24:28Z",
"name": "The Bucharest Major: SoutheEast Asia qualifier",
"season": null,
"slug": "pgl-the-bucharest-major-southeeast-asia-qualifier-2018",
"tier": null,
"winner_id": 1655,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-01-09T23:00:00Z",
"description": null,
"end_at": "2018-01-12T23:00:00Z",
"full_name": "The Bucharest Major: CIS qualifier 2018",
"id": 2275,
"league_id": 4108,
"modified_at": "2019-11-24T16:32:49Z",
"name": "The Bucharest Major: CIS qualifier",
"season": null,
"slug": "pgl-the-bucharest-major-cis-qualifier-2018",
"tier": null,
"winner_id": 1671,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-01-09T23:00:00Z",
"description": null,
"end_at": "2018-01-12T23:00:00Z",
"full_name": "The Bucharest Major: Europe qualifier 2018",
"id": 2276,
"league_id": 4108,
"modified_at": "2019-11-24T16:41:19Z",
"name": "The Bucharest Major: Europe qualifier",
"season": null,
"slug": "pgl-the-bucharest-major-europe-qualifier-2018",
"tier": null,
"winner_id": 1654,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-01-09T23:00:00Z",
"description": null,
"end_at": "2018-01-12T23:00:00Z",
"full_name": "The Bucharest Major: South America qualifier 2018",
"id": 2277,
"league_id": 4108,
"modified_at": "2019-11-24T16:59:46Z",
"name": "The Bucharest Major: South America qualifier",
"season": null,
"slug": "pgl-the-bucharest-major-south-america-qualifier-2018",
"tier": null,
"winner_id": 1819,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-01-09T23:00:00Z",
"description": null,
"end_at": "2018-01-12T23:00:00Z",
"full_name": "The Bucharest Major: North America qualifier 2018",
"id": 2278,
"league_id": 4108,
"modified_at": "2019-11-24T17:12:41Z",
"name": "The Bucharest Major: North America qualifier",
"season": null,
"slug": "pgl-the-bucharest-major-north-america-qualifier-2018",
"tier": null,
"winner_id": 1817,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-03-04T00:00:00Z",
"description": null,
"end_at": "2018-03-11T00:00:00Z",
"full_name": "The Bucharest Major 2018",
"id": 1394,
"league_id": 4108,
"modified_at": "2018-02-10T03:09:48Z",
"name": "The Bucharest Major",
"season": null,
"slug": "pgl-2018",
"tier": null,
"winner_id": 1651,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-09-16T01:00:00Z",
"description": null,
"end_at": "2018-09-18T13:30:00Z",
"full_name": "The Kuala Lumpur Major: China qualifier 2018",
"id": 2022,
"league_id": 4108,
"modified_at": "2019-11-09T23:57:01Z",
"name": "The Kuala Lumpur Major: China qualifier",
"season": null,
"slug": "pgl-the-kuala-lumpur-major-china-qualifier-2018",
"tier": null,
"winner_id": 1657,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-09-16T07:00:00Z",
"description": null,
"end_at": "2018-09-18T19:30:00Z",
"full_name": "The Kuala Lumpur Major: CIS qualifier 2018",
"id": 2023,
"league_id": 4108,
"modified_at": "2019-11-10T00:18:53Z",
"name": "The Kuala Lumpur Major: CIS qualifier",
"season": null,
"slug": "pgl-the-kuala-lumpur-major-cis-qualifier-2018",
"tier": null,
"winner_id": 1651,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-09-16T16:00:00Z",
"description": null,
"end_at": "2018-09-19T01:00:00Z",
"full_name": "The Kuala Lumpur Major: South America qualifier 2018",
"id": 2024,
"league_id": 4108,
"modified_at": "2019-11-10T00:27:33Z",
"name": "The Kuala Lumpur Major: South America qualifier",
"season": null,
"slug": "pgl-the-kuala-lumpur-major-south-america-qualifier-2018",
"tier": null,
"winner_id": 1819,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-09-19T01:00:00Z",
"description": null,
"end_at": "2018-09-21T11:00:00Z",
"full_name": "The Kuala Lumpur Major: Southeast Asia qualifier 2018",
"id": 2020,
"league_id": 4108,
"modified_at": "2019-11-09T23:35:55Z",
"name": "The Kuala Lumpur Major: Southeast Asia qualifier",
"season": null,
"slug": "pgl-the-kuala-lumpur-major-southeast-asia-qualifier-2018",
"tier": null,
"winner_id": 1664,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-09-19T08:00:00Z",
"description": null,
"end_at": "2018-09-21T16:00:00Z",
"full_name": "The Kuala Lumpur Major: Europe qualifier 2018",
"id": 2021,
"league_id": 4108,
"modified_at": "2019-11-09T23:47:33Z",
"name": "The Kuala Lumpur Major: Europe qualifier",
"season": null,
"slug": "pgl-the-kuala-lumpur-major-europe-qualifier-2018",
"tier": null,
"winner_id": 1656,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-09-19T17:00:00Z",
"description": null,
"end_at": "2018-09-22T00:30:00Z",
"full_name": "The Kuala Lumpur Major: North America qualifier 2018",
"id": 2019,
"league_id": 4108,
"modified_at": "2019-11-09T23:08:08Z",
"name": "The Kuala Lumpur Major: North America qualifier",
"season": null,
"slug": "pgl-the-kuala-lumpur-major-north-america-qualifier-2018",
"tier": null,
"winner_id": 1653,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-11-08T23:00:00Z",
"description": null,
"end_at": "2018-11-17T23:00:00Z",
"full_name": "The Kuala Lumpur Major 2018",
"id": 1603,
"league_id": 4108,
"modified_at": "2018-11-18T12:03:00Z",
"name": "The Kuala Lumpur Major",
"season": null,
"slug": "pgl-the-kuala-lumpur-major-2018",
"tier": null,
"winner_id": 1651,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-12-02T23:00:00Z",
"description": null,
"end_at": "2018-12-06T19:00:00Z",
"full_name": "The Bucharest Minor: North America qualifier 2019",
"id": 1970,
"league_id": 4108,
"modified_at": "2019-11-07T15:18:52Z",
"name": "The Bucharest Minor: North America qualifier",
"season": null,
"slug": "pgl-the-bucharest-minor-north-america-qualifier-2019",
"tier": null,
"winner_id": 3370,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2018-12-02T23:00:00Z",
"description": null,
"end_at": "2018-12-06T19:00:00Z",
"full_name": "The Bucharest Minor: South America qualifier 2019",
"id": 1971,
"league_id": 4108,
"modified_at": "2019-11-07T15:18:59Z",
"name": "The Bucharest Minor: South America qualifier",
"season": null,
"slug": "pgl-the-bucharest-minor-south-america-qualifier-2019",
"tier": null,
"winner_id": 3441,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2018-12-02T23:00:00Z",
"description": null,
"end_at": "2018-12-06T19:00:00Z",
"full_name": "The Bucharest Minor: Europe qualifier 2019",
"id": 1972,
"league_id": 4108,
"modified_at": "2019-11-07T15:18:46Z",
"name": "The Bucharest Minor: Europe qualifier",
"season": null,
"slug": "pgl-the-bucharest-minor-europe-qualifier-2019",
"tier": null,
"winner_id": 1654,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2018-12-02T23:00:00Z",
"description": null,
"end_at": "2018-12-06T19:00:00Z",
"full_name": "The Bucharest Minor: CIS qualifier 2019",
"id": 1973,
"league_id": 4108,
"modified_at": "2019-11-07T15:18:29Z",
"name": "The Bucharest Minor: CIS qualifier",
"season": null,
"slug": "pgl-the-bucharest-minor-cis-qualifier-2019",
"tier": null,
"winner_id": 3359,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2018-12-02T23:00:00Z",
"description": null,
"end_at": "2018-12-06T19:00:00Z",
"full_name": "The Bucharest Minor: China qualifier 2019",
"id": 1974,
"league_id": 4108,
"modified_at": "2019-11-07T15:18:37Z",
"name": "The Bucharest Minor: China qualifier",
"season": null,
"slug": "pgl-the-bucharest-minor-china-qualifier-2019",
"tier": null,
"winner_id": 1673,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2018-12-02T23:00:00Z",
"description": null,
"end_at": "2018-12-06T19:00:00Z",
"full_name": "The Bucharest Minor: Southeast Asia qualifier 2019",
"id": 1975,
"league_id": 4108,
"modified_at": "2019-11-07T15:19:06Z",
"name": "The Bucharest Minor: Southeast Asia qualifier",
"season": null,
"slug": "pgl-the-bucharest-minor-southeast-asia-qualifier-2019",
"tier": null,
"winner_id": 1825,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-01-08T23:00:00Z",
"description": null,
"end_at": "2019-01-12T23:00:00Z",
"full_name": "The Bucharest Minor 2019",
"id": 1635,
"league_id": 4108,
"modified_at": "2019-01-13T16:34:04Z",
"name": "The Bucharest Minor",
"season": null,
"slug": "pgl-the-bucharest-minor-2019",
"tier": null,
"winner_id": 1687,
"winner_type": "Team",
"year": 2019
}
],
"slug": "pgl",
"url": null
},
{
"id": 4109,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4109/GESC.png",
"modified_at": "2019-01-31T12:33:30Z",
"name": "GESC",
"series": [
{
"begin_at": "2018-01-05T23:00:00Z",
"description": null,
"end_at": "2018-01-07T23:00:00Z",
"full_name": "Indonesia - Jakarta: CIS qualifier 2018",
"id": 2261,
"league_id": 4109,
"modified_at": "2019-11-22T19:24:57Z",
"name": "Indonesia - Jakarta: CIS qualifier",
"season": null,
"slug": "gesc-indonesia-jakarta-cis-qualifier-2018",
"tier": null,
"winner_id": 1699,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-01-05T23:00:00Z",
"description": null,
"end_at": "2018-01-07T23:00:00Z",
"full_name": "Indonesia - Jakarta: Qualifier south america 2018 2018",
"id": 2297,
"league_id": 4109,
"modified_at": "2019-11-25T15:34:45Z",
"name": "Indonesia - Jakarta: Qualifier south america 2018",
"season": null,
"slug": "gesc-indonesia-jakarta-qualifier-south-america-2018-2018",
"tier": null,
"winner_id": 1659,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-01-15T23:00:00Z",
"description": null,
"end_at": "2018-01-17T23:00:00Z",
"full_name": "Indonesia - Jakarta: North American qualifier 2018",
"id": 2259,
"league_id": 4109,
"modified_at": "2019-11-22T19:22:41Z",
"name": "Indonesia - Jakarta: North American qualifier",
"season": null,
"slug": "gesc-indonesia-jakarta-north-american-qualifier-2018",
"tier": null,
"winner_id": 125180,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-01-15T23:00:00Z",
"description": null,
"end_at": "2018-01-17T23:00:00Z",
"full_name": "Indonesia - Jakarta: Southeast Asia qualifier 2018",
"id": 2260,
"league_id": 4109,
"modified_at": "2019-11-22T19:23:36Z",
"name": "Indonesia - Jakarta: Southeast Asia qualifier",
"season": null,
"slug": "gesc-indonesia-jakarta-southeast-asia-qualifier-2018",
"tier": null,
"winner_id": 1664,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-02-09T23:00:00Z",
"description": null,
"end_at": "2018-02-11T23:00:00Z",
"full_name": "Indonesia - Jakarta: Europe qualifier 2018",
"id": 2257,
"league_id": 4109,
"modified_at": "2019-11-22T19:19:15Z",
"name": "Indonesia - Jakarta: Europe qualifier",
"season": null,
"slug": "gesc-indonesia-jakarta-europe-qualifier-2018",
"tier": null,
"winner_id": 1814,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-02-09T23:00:00Z",
"description": null,
"end_at": "2018-02-10T23:00:00Z",
"full_name": "Indonesia - Jakarta: China qualifier 2018",
"id": 2258,
"league_id": 4109,
"modified_at": "2019-11-22T19:21:52Z",
"name": "Indonesia - Jakarta: China qualifier",
"season": null,
"slug": "gesc-indonesia-jakarta-china-qualifier-2018",
"tier": null,
"winner_id": 1804,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-03-01T23:00:00Z",
"description": null,
"end_at": "2018-03-03T23:00:00Z",
"full_name": "Thailand - Bangkok: South America qualifier 2018",
"id": 2222,
"league_id": 4109,
"modified_at": "2019-11-21T19:39:18Z",
"name": "Thailand - Bangkok: South America qualifier",
"season": null,
"slug": "gesc-thailand-bangkok-south-america-qualifier-2018",
"tier": null,
"winner_id": 1735,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-03-14T23:00:00Z",
"description": null,
"end_at": "2018-03-17T23:00:00Z",
"full_name": "Indonesia - Jakarta 2018",
"id": 1395,
"league_id": 4109,
"modified_at": "2018-02-10T03:09:48Z",
"name": "Indonesia - Jakarta",
"season": null,
"slug": "gesc-2018",
"tier": null,
"winner_id": 1653,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-03-21T23:00:00Z",
"description": null,
"end_at": "2018-03-24T23:00:00Z",
"full_name": "Thailand - Bangkok: North America qualifier 2018",
"id": 2221,
"league_id": 4109,
"modified_at": "2019-11-21T19:38:38Z",
"name": "Thailand - Bangkok: North America qualifier",
"season": null,
"slug": "gesc-thailand-bangkok-north-america-qualifier-2018",
"tier": null,
"winner_id": 1816,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-03-29T22:00:00Z",
"description": null,
"end_at": "2018-03-31T22:00:00Z",
"full_name": "Thailand - Bangkok: CIS qualifier 2018",
"id": 2220,
"league_id": 4109,
"modified_at": "2019-11-21T19:37:08Z",
"name": "Thailand - Bangkok: CIS qualifier",
"season": null,
"slug": "gesc-thailand-bangkok-cis-qualifier-2018",
"tier": null,
"winner_id": 1671,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-04-05T22:00:00Z",
"description": null,
"end_at": "2018-04-22T22:00:00Z",
"full_name": "Thailand - Bangkok: Thailand qualifier 2018",
"id": 2219,
"league_id": 4109,
"modified_at": "2019-11-21T19:32:46Z",
"name": "Thailand - Bangkok: Thailand qualifier",
"season": null,
"slug": "gesc-thailand-bangkok-thailand-qualifier-2018",
"tier": null,
"winner_id": 2218,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-04-16T22:00:00Z",
"description": null,
"end_at": "2018-04-21T22:00:00Z",
"full_name": "Thailand - Bangkok: Europe qualifier 2018",
"id": 2217,
"league_id": 4109,
"modified_at": "2019-11-21T19:30:56Z",
"name": "Thailand - Bangkok: Europe qualifier",
"season": null,
"slug": "gesc-thailand-bangkok-europe-qualifier-2018",
"tier": null,
"winner_id": 1814,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-04-16T22:00:00Z",
"description": null,
"end_at": "2018-04-19T22:00:00Z",
"full_name": "Thailand - Bangkok: Southeast Asia qualifier 2018",
"id": 2218,
"league_id": 4109,
"modified_at": "2019-11-21T19:31:48Z",
"name": "Thailand - Bangkok: Southeast Asia qualifier",
"season": null,
"slug": "gesc-thailand-bangkok-southeast-asia-qualifier-2018",
"tier": null,
"winner_id": 1664,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-04-22T22:00:00Z",
"description": null,
"end_at": "2018-04-24T22:00:00Z",
"full_name": "Thailand - Bangkok: China qualifier 2018",
"id": 2216,
"league_id": 4109,
"modified_at": "2019-11-21T19:17:59Z",
"name": "Thailand - Bangkok: China qualifier",
"season": null,
"slug": "gesc-thailand-bangkok-china-qualifier-2018",
"tier": null,
"winner_id": 1673,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-05-08T22:00:00Z",
"description": null,
"end_at": "2018-05-11T22:00:00Z",
"full_name": "Thailand - Bangkok 2018",
"id": 1457,
"league_id": 4109,
"modified_at": "2018-05-12T12:43:13Z",
"name": "Thailand - Bangkok",
"season": null,
"slug": "gesc-thailand-bangkok-2018",
"tier": null,
"winner_id": 1816,
"winner_type": "Team",
"year": 2018
}
],
"slug": "gesc",
"url": null
},
{
"id": 4110,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4110/Perfect_World_Masters_2017.png",
"modified_at": "2021-04-08T18:51:36Z",
"name": "Perfect World",
"series": [
{
"begin_at": "2017-09-25T00:00:00Z",
"description": null,
"end_at": "2017-09-27T00:00:00Z",
"full_name": "Masters: North America qualifier 2017",
"id": 2254,
"league_id": 4110,
"modified_at": "2019-11-22T14:57:54Z",
"name": "Masters: North America qualifier",
"season": null,
"slug": "perfect-world-masters-masters-north-america-qualifier-2017",
"tier": null,
"winner_id": 1681,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2017-09-25T00:00:00Z",
"description": null,
"end_at": "2017-09-27T00:00:00Z",
"full_name": "Masters: South America qualifier 2017",
"id": 2255,
"league_id": 4110,
"modified_at": "2019-11-22T14:59:01Z",
"name": "Masters: South America qualifier",
"season": null,
"slug": "perfect-world-masters-masters-south-america-qualifier-2017",
"tier": null,
"winner_id": 1735,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2017-09-25T00:00:00Z",
"description": null,
"end_at": "2017-09-30T00:00:00Z",
"full_name": "Masters: Southeast Asia qualifier 2017",
"id": 2256,
"league_id": 4110,
"modified_at": "2019-11-22T14:59:46Z",
"name": "Masters: Southeast Asia qualifier",
"season": null,
"slug": "perfect-world-masters-masters-southeast-asia-qualifier-2017",
"tier": null,
"winner_id": 1677,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2017-09-26T00:00:00Z",
"description": null,
"end_at": "2017-10-01T00:00:00Z",
"full_name": "Masters: Europe qualifier 2017",
"id": 2253,
"league_id": 4110,
"modified_at": "2019-11-22T14:57:08Z",
"name": "Masters: Europe qualifier",
"season": null,
"slug": "perfect-world-masters-masters-europe-qualifier-2017",
"tier": null,
"winner_id": 1832,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2017-09-27T00:00:00Z",
"description": null,
"end_at": "2017-09-30T00:00:00Z",
"full_name": "Masters: China qualifier 2017",
"id": 2252,
"league_id": 4110,
"modified_at": "2019-11-22T14:56:10Z",
"name": "Masters: China qualifier",
"season": null,
"slug": "perfect-world-masters-masters-china-qualifier-2017",
"tier": null,
"winner_id": 1657,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2017-09-28T00:00:00Z",
"description": null,
"end_at": "2017-09-30T00:00:00Z",
"full_name": "Masters: CIS qualifier 2017",
"id": 2251,
"league_id": 4110,
"modified_at": "2019-11-22T14:54:33Z",
"name": "Masters: CIS qualifier",
"season": null,
"slug": "perfect-world-masters-masters-cis-qualifier-2017",
"tier": null,
"winner_id": 1671,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2017-11-19T00:00:00Z",
"description": null,
"end_at": "2017-11-26T00:00:00Z",
"full_name": "Masters 2017",
"id": 1396,
"league_id": 4110,
"modified_at": "2018-02-10T03:09:48Z",
"name": "Masters",
"season": null,
"slug": "perfect-world-masters-masters-2017",
"tier": null,
"winner_id": 1652,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2018-04-19T22:00:00Z",
"description": null,
"end_at": "2018-04-23T22:00:00Z",
"full_name": "China Dota2 Supermajor: Europe qualifier 2018",
"id": 2223,
"league_id": 4110,
"modified_at": "2019-11-22T06:02:56Z",
"name": "China Dota2 Supermajor: Europe qualifier",
"season": null,
"slug": "perfect-world-masters-china-dota2-supermajor-europe-qualifier-2018",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2018
},
{
"begin_at": "2018-04-21T22:00:00Z",
"description": null,
"end_at": "2018-04-23T22:00:00Z",
"full_name": "China Dota2 Supermajor: China qualifier 2018",
"id": 2224,
"league_id": 4110,
"modified_at": "2019-11-22T06:05:34Z",
"name": "China Dota2 Supermajor: China qualifier",
"season": null,
"slug": "perfect-world-masters-china-dota2-supermajor-china-qualifier-2018",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2018
},
{
"begin_at": "2018-04-22T22:00:00Z",
"description": null,
"end_at": "2018-04-24T22:00:00Z",
"full_name": "China Dota2 Supermajor: Southeast Asia 2018",
"id": 2225,
"league_id": 4110,
"modified_at": "2019-11-22T06:06:37Z",
"name": "China Dota2 Supermajor: Southeast Asia",
"season": null,
"slug": "perfect-world-masters-china-dota2-supermajor-southeast-asia-2018",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2018
},
{
"begin_at": "2018-04-22T22:00:00Z",
"description": null,
"end_at": "2018-04-24T22:00:00Z",
"full_name": "China Dota2 Supermajor: North America qualifier 2018",
"id": 2226,
"league_id": 4110,
"modified_at": "2019-11-22T06:07:31Z",
"name": "China Dota2 Supermajor: North America qualifier",
"season": null,
"slug": "perfect-world-masters-china-dota2-supermajor-north-america-qualifier-2018",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2018
},
{
"begin_at": "2018-06-02T22:00:00Z",
"description": null,
"end_at": "2018-06-09T22:00:00Z",
"full_name": "China Dota2 Supermajor 2018",
"id": 1469,
"league_id": 4110,
"modified_at": "2018-06-10T11:33:02Z",
"name": "China Dota2 Supermajor",
"season": null,
"slug": "perfect-world-masters-china-dota2-supermajor-2018",
"tier": null,
"winner_id": 1647,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2020-10-28T11:00:00Z",
"description": null,
"end_at": "2020-11-08T17:00:00Z",
"full_name": "Dota 2 League - Division A season 1 2020",
"id": 3074,
"league_id": 4110,
"modified_at": "2020-11-18T11:41:19Z",
"name": "Dota 2 League - Division A",
"season": "1",
"slug": "perfect-world-masters-dota-2-league-division-a-2020",
"tier": "c",
"winner_id": null,
"winner_type": null,
"year": 2020
},
{
"begin_at": "2020-11-18T09:45:00Z",
"description": null,
"end_at": "2020-11-29T13:26:00Z",
"full_name": "Dota 2 League - Division A season 2 2020",
"id": 3126,
"league_id": 4110,
"modified_at": "2020-11-30T08:42:02Z",
"name": "Dota 2 League - Division A",
"season": "2",
"slug": "perfect-world-masters-dota-2-league-division-a-2-2020",
"tier": "c",
"winner_id": 127867,
"winner_type": "Team",
"year": 2020
},
{
"begin_at": "2020-12-08T05:00:00Z",
"description": null,
"end_at": "2020-12-09T09:04:00Z",
"full_name": "Dota 2 League Season 2 - Relegation season 2 2020",
"id": 3176,
"league_id": 4110,
"modified_at": "2020-12-09T17:23:23Z",
"name": "Dota 2 League Season 2 - Relegation",
"season": "2",
"slug": "perfect-world-masters-dota-2-league-season-2-relegation-2-2020",
"tier": "d",
"winner_id": null,
"winner_type": null,
"year": 2020
},
{
"begin_at": "2020-12-09T11:00:00Z",
"description": null,
"end_at": "2020-12-20T12:12:00Z",
"full_name": "Dota 2 League Division A season 3 2020",
"id": 3175,
"league_id": 4110,
"modified_at": "2020-12-20T12:14:27Z",
"name": "Dota 2 League Division A",
"season": "3",
"slug": "perfect-world-masters-dota-2-league-division-a-3-2020",
"tier": "c",
"winner_id": 128046,
"winner_type": "Team",
"year": 2020
}
],
"slug": "perfect-world-masters",
"url": null
},
{
"id": 4111,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4111/Epicenter.png",
"modified_at": "2019-02-18T14:15:37Z",
"name": "EPICENTER",
"series": [
{
"begin_at": "2016-03-14T23:00:00Z",
"description": null,
"end_at": "2016-03-30T22:00:00Z",
"full_name": "North America qualifier season 1 2016",
"id": 2295,
"league_id": 4111,
"modified_at": "2019-11-25T13:21:58Z",
"name": "North America qualifier",
"season": "1",
"slug": "dota-2-epicenter-north-america-qualifier-1-2016",
"tier": null,
"winner_id": 1681,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2016-03-15T23:00:00Z",
"description": null,
"end_at": "2016-04-09T22:00:00Z",
"full_name": "Europe qualifier season 1 2016",
"id": 2293,
"league_id": 4111,
"modified_at": "2019-11-25T13:10:52Z",
"name": "Europe qualifier",
"season": "1",
"slug": "dota-2-epicenter-europe-qualifier-1-2016",
"tier": null,
"winner_id": 1723,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2016-03-20T23:00:00Z",
"description": null,
"end_at": "2016-03-27T22:00:00Z",
"full_name": "Southeast Asia qualifier season 1 2016",
"id": 2296,
"league_id": 4111,
"modified_at": "2019-11-25T13:25:33Z",
"name": "Southeast Asia qualifier",
"season": "1",
"slug": "dota-2-epicenter-southeast-asia-qualifier-1-2016",
"tier": null,
"winner_id": 1664,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2016-03-28T22:00:00Z",
"description": null,
"end_at": "2016-04-04T22:00:00Z",
"full_name": "China qualifier season 1 2016",
"id": 2294,
"league_id": 4111,
"modified_at": "2019-11-25T13:17:31Z",
"name": "China qualifier",
"season": "1",
"slug": "dota-2-epicenter-china-qualifier-1-2016",
"tier": null,
"winner_id": 1652,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2016-05-08T22:00:00Z",
"description": null,
"end_at": "2016-05-14T22:00:00Z",
"full_name": "Season 1 2016",
"id": 1397,
"league_id": 4111,
"modified_at": "2018-02-10T03:09:49Z",
"name": null,
"season": "1",
"slug": "epicenter-moscow-1-2016",
"tier": null,
"winner_id": 1647,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2017-05-05T22:00:00Z",
"description": null,
"end_at": "2017-05-18T22:00:00Z",
"full_name": "Europe/CIS qualifier season 2 2017",
"id": 2130,
"league_id": 4111,
"modified_at": "2019-11-15T12:22:32Z",
"name": "Europe/CIS qualifier",
"season": "2",
"slug": "dota-2-epicenter-europe-cis-qualifier-2-2017",
"tier": null,
"winner_id": 1656,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2017-05-05T22:00:00Z",
"description": null,
"end_at": "2017-05-06T22:00:00Z",
"full_name": "China qualifier season 2 2017",
"id": 2132,
"league_id": 4111,
"modified_at": "2019-11-15T12:06:32Z",
"name": "China qualifier",
"season": "2",
"slug": "dota-2-epicenter-china-qualifier-2-2017",
"tier": null,
"winner_id": 1648,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2017-05-06T22:00:00Z",
"description": null,
"end_at": "2017-05-13T22:00:00Z",
"full_name": "North America qualifier season 2 2017",
"id": 2129,
"league_id": 4111,
"modified_at": "2019-11-15T12:07:46Z",
"name": "North America qualifier",
"season": "2",
"slug": "dota-2-epicenter-north-america-qualifier-2-2017",
"tier": null,
"winner_id": 1679,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2017-05-06T22:00:00Z",
"description": null,
"end_at": "2017-05-13T22:00:00Z",
"full_name": "Southeast Asia qualifier season 2 2017",
"id": 2131,
"league_id": 4111,
"modified_at": "2019-11-15T12:07:29Z",
"name": "Southeast Asia qualifier",
"season": "2",
"slug": "dota-2-epicenter-southeast-asia-qualifier-2-2017",
"tier": null,
"winner_id": 1675,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2017-06-03T22:00:00Z",
"description": null,
"end_at": "2017-06-10T22:00:00Z",
"full_name": "Season 2 2017",
"id": 1398,
"league_id": 4111,
"modified_at": "2018-02-10T03:09:49Z",
"name": null,
"season": "2",
"slug": "epicenter-moscow-2-2016",
"tier": null,
"winner_id": 1647,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2018-02-10T06:00:00Z",
"description": null,
"end_at": "2018-02-12T14:30:00Z",
"full_name": "XL: Southeast Asia qualifier season 3 2018",
"id": 2073,
"league_id": 4111,
"modified_at": "2019-11-11T18:56:27Z",
"name": "XL: Southeast Asia qualifier",
"season": "3",
"slug": "dota-2-epicenter-xl-southeast-asia-qualifier-3-2018",
"tier": null,
"winner_id": 1677,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-02-12T13:00:00Z",
"description": null,
"end_at": "2018-02-17T19:00:00Z",
"full_name": "XL: Europe qualifier season 3 2018",
"id": 2071,
"league_id": 4111,
"modified_at": "2019-11-11T17:52:56Z",
"name": "XL: Europe qualifier",
"season": "3",
"slug": "dota-2-epicenter-xl-europe-qualifier-3-2018",
"tier": null,
"winner_id": 1654,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-02-12T16:00:00Z",
"description": null,
"end_at": "2018-02-16T23:00:00Z",
"full_name": "XL: South America qualifier season 3 2018",
"id": 2072,
"league_id": 4111,
"modified_at": "2019-11-11T18:51:34Z",
"name": "XL: South America qualifier",
"season": "3",
"slug": "dota-2-epicenter-xl-south-america-qualifier-3-2018",
"tier": null,
"winner_id": 1819,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-02-12T19:00:00Z",
"description": null,
"end_at": "2018-02-17T02:30:00Z",
"full_name": "XL: North America qualifier season 3 2018",
"id": 2070,
"league_id": 4111,
"modified_at": "2019-11-11T17:44:22Z",
"name": "XL: North America qualifier",
"season": "3",
"slug": "dota-2-epicenter-xl-north-america-qualifier-3-2018",
"tier": null,
"winner_id": 1681,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-02-26T11:00:00Z",
"description": null,
"end_at": "2018-03-08T22:00:00Z",
"full_name": "XL: CIS qualifier season 3 2018",
"id": 2069,
"league_id": 4111,
"modified_at": "2019-11-11T17:33:23Z",
"name": "XL: CIS qualifier",
"season": "3",
"slug": "dota-2-epicenter-xl-cis-qualifier-3-2018",
"tier": null,
"winner_id": 1649,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-03-21T06:00:00Z",
"description": null,
"end_at": "2018-03-25T12:00:00Z",
"full_name": "XL: China qualifier season 3 2018",
"id": 2067,
"league_id": 4111,
"modified_at": "2019-11-11T17:25:24Z",
"name": "XL: China qualifier",
"season": "3",
"slug": "dota-2-epicenter-xl-china-qualifier-3-2018",
"tier": null,
"winner_id": 1657,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-03-25T11:00:00Z",
"description": null,
"end_at": "2018-03-25T14:00:00Z",
"full_name": "XL: Madness qualifier season 3 2018",
"id": 2066,
"league_id": 4111,
"modified_at": "2019-11-11T17:15:02Z",
"name": "XL: Madness qualifier",
"season": "3",
"slug": "dota-2-epicenter-xl-madness-qualifier-3-2018",
"tier": null,
"winner_id": 2576,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-04-26T22:00:00Z",
"description": null,
"end_at": "2018-05-05T22:00:00Z",
"full_name": "XL season 3 2018",
"id": 1454,
"league_id": 4111,
"modified_at": "2018-05-06T18:26:40Z",
"name": "XL",
"season": "3",
"slug": "epicenter-moscow-xl-3-2018",
"tier": null,
"winner_id": 1657,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-12-06T23:00:00Z",
"description": null,
"end_at": "2018-12-08T23:00:00Z",
"full_name": "MegaFon Clash Winter 2018",
"id": 1664,
"league_id": 4111,
"modified_at": "2018-12-09T19:16:20Z",
"name": "MegaFon Clash",
"season": "Winter",
"slug": "epicenter-moscow-megafon-clash-winter-2018",
"tier": null,
"winner_id": 1647,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2019-05-15T11:00:00Z",
"description": null,
"end_at": "2019-05-18T18:00:00Z",
"full_name": "Major: Europe qualifier 2019",
"id": 1933,
"league_id": 4111,
"modified_at": "2019-10-31T04:09:15Z",
"name": "Major: Europe qualifier",
"season": null,
"slug": "dota-2-epicenter-major-europe-qualifier-2019",
"tier": null,
"winner_id": 1656,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-05-15T12:00:00Z",
"description": null,
"end_at": "2019-05-18T20:30:00Z",
"full_name": "Major: CIS qualifier 2019",
"id": 1934,
"league_id": 4111,
"modified_at": "2019-10-31T04:17:59Z",
"name": "Major: CIS qualifier",
"season": null,
"slug": "dota-2-epicenter-major-cis-qualifier-2019",
"tier": null,
"winner_id": 3359,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-05-15T16:30:00Z",
"description": null,
"end_at": "2019-05-19T00:00:00Z",
"full_name": "Major: South America qualifier 2019",
"id": 1930,
"league_id": 4111,
"modified_at": "2019-10-30T08:37:23Z",
"name": "Major: South America qualifier",
"season": null,
"slug": "dota-2-epicenter-major-south-america-qualifier-2019",
"tier": null,
"winner_id": 1819,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-05-15T17:00:00Z",
"description": null,
"end_at": "2019-05-19T01:30:00Z",
"full_name": "Major: North America qualifier 2019",
"id": 1929,
"league_id": 4111,
"modified_at": "2019-10-30T08:25:39Z",
"name": "Major: North America qualifier",
"season": null,
"slug": "dota-2-epicenter-major-north-america-qualifier-2019",
"tier": null,
"winner_id": 3372,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-05-16T02:00:00Z",
"description": null,
"end_at": "2019-05-19T16:30:00Z",
"full_name": "Major: Southeast Asia qualifier 2019",
"id": 1928,
"league_id": 4111,
"modified_at": "2019-10-30T08:21:20Z",
"name": "Major: Southeast Asia qualifier",
"season": null,
"slug": "dota-2-epicenter-major-southeast-asia-qualifier-2019",
"tier": null,
"winner_id": 1655,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-05-16T02:00:00Z",
"description": null,
"end_at": "2019-05-19T11:30:00Z",
"full_name": "Major: China qualifier 2019",
"id": 1935,
"league_id": 4111,
"modified_at": "2019-10-31T04:26:06Z",
"name": "Major: China qualifier",
"season": "",
"slug": "dota-2-epicenter-major-china-qualifier-2019",
"tier": null,
"winner_id": 1657,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-06-23T10:00:00Z",
"description": null,
"end_at": "2019-06-30T18:30:00Z",
"full_name": "Major 2019",
"id": 1790,
"league_id": 4111,
"modified_at": "2019-10-30T08:00:01Z",
"name": "Major",
"season": null,
"slug": "dota-2-epicenter-major-2019",
"tier": null,
"winner_id": 1676,
"winner_type": "Team",
"year": 2019
}
],
"slug": "dota-2-epicenter",
"url": null
},
{
"id": 4112,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4112/Captains_Draft_4.0.png",
"modified_at": "2019-01-31T12:35:40Z",
"name": "Captains Draft",
"series": [
{
"begin_at": "2016-01-18T23:00:00Z",
"description": null,
"end_at": "2016-02-16T23:00:00Z",
"full_name": "3.0 season 3 2016",
"id": 1399,
"league_id": 4112,
"modified_at": "2018-02-10T03:09:49Z",
"name": "3.0",
"season": "3",
"slug": "captains-draft-3-0-3-2016",
"tier": null,
"winner_id": 1653,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2016-01-18T23:00:00Z",
"description": null,
"end_at": "2016-02-16T23:00:00Z",
"full_name": "3.0 3: Main qualifier season 3 2016",
"id": 2192,
"league_id": 4112,
"modified_at": "2019-11-19T17:43:07Z",
"name": "3.0 3: Main qualifier",
"season": "3",
"slug": "captains-draft-3-0-3-main-qualifier-3-2016",
"tier": null,
"winner_id": 1653,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2017-10-27T22:00:00Z",
"description": null,
"end_at": "2017-10-29T23:00:00Z",
"full_name": "4.0 4: South America qualifier 2018",
"id": 2106,
"league_id": 4112,
"modified_at": "2019-11-12T23:01:55Z",
"name": "4.0 4: South America qualifier",
"season": null,
"slug": "captains-draft-4-0-4-south-america-qualifier-2018",
"tier": null,
"winner_id": 1680,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2017-10-31T23:00:00Z",
"description": null,
"end_at": "2017-11-04T23:00:00Z",
"full_name": "4.0 4: CIS qualifier 2018",
"id": 2104,
"league_id": 4112,
"modified_at": "2019-11-12T22:26:48Z",
"name": "4.0 4: CIS qualifier",
"season": null,
"slug": "captains-draft-4-0-4-cis-qualifier-2018",
"tier": null,
"winner_id": 1649,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2017-10-31T23:00:00Z",
"description": null,
"end_at": "2017-11-04T23:00:00Z",
"full_name": "4.0 4: Southeast Asia qualifier 2018",
"id": 2105,
"league_id": 4112,
"modified_at": "2019-11-12T22:47:33Z",
"name": "4.0 4: Southeast Asia qualifier",
"season": null,
"slug": "captains-draft-4-0-4-southeast-asia-qualifier-2018",
"tier": null,
"winner_id": 1677,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2017-11-06T23:00:00Z",
"description": null,
"end_at": "2017-11-08T23:00:00Z",
"full_name": "4.0 4: North America qualifier 2018",
"id": 2107,
"league_id": 4112,
"modified_at": "2019-11-12T23:09:12Z",
"name": "4.0 4: North America qualifier",
"season": null,
"slug": "captains-draft-4-0-4-north-america-qualifier-2018",
"tier": null,
"winner_id": 1681,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2017-11-08T23:00:00Z",
"description": null,
"end_at": "2017-11-14T23:00:00Z",
"full_name": "4.0 4: China qualifier 2018",
"id": 2103,
"league_id": 4112,
"modified_at": "2019-11-12T22:12:16Z",
"name": "4.0 4: China qualifier",
"season": null,
"slug": "captains-draft-4-0-4-china-qualifier-2018",
"tier": null,
"winner_id": 1676,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2017-11-09T23:00:00Z",
"description": null,
"end_at": "2017-11-13T23:00:00Z",
"full_name": "4.0 4: Europe qualifier 2018",
"id": 2102,
"league_id": 4112,
"modified_at": "2019-11-12T20:45:20Z",
"name": "4.0 4: Europe qualifier",
"season": null,
"slug": "captains-draft-4-0-4-europe-qualifier-2018",
"tier": null,
"winner_id": 1654,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-01-03T23:00:00Z",
"description": null,
"end_at": "2018-01-06T23:00:00Z",
"full_name": "4.0 season 4 2018",
"id": 1400,
"league_id": 4112,
"modified_at": "2018-02-10T03:09:49Z",
"name": "4.0",
"season": "4",
"slug": "captains-draft-4-0-4-2018",
"tier": null,
"winner_id": 1656,
"winner_type": "Team",
"year": 2018
}
],
"slug": "captains-draft",
"url": null
},
{
"id": 4113,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4113/DAC.png",
"modified_at": "2021-04-08T19:31:38Z",
"name": "Dota Asia Championships",
"series": [
{
"begin_at": "2018-02-04T23:00:00Z",
"description": null,
"end_at": "2018-02-08T23:00:00Z",
"full_name": "China qualifier 2018",
"id": 2161,
"league_id": 4113,
"modified_at": "2020-03-08T10:46:42Z",
"name": "China qualifier",
"season": null,
"slug": "dota-2-asia-championship-china-qualifier-2018",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2018
},
{
"begin_at": "2018-02-05T23:00:00Z",
"description": null,
"end_at": "2018-02-09T22:00:00Z",
"full_name": "Europe qualifier 2018",
"id": 2162,
"league_id": 4113,
"modified_at": "2020-03-08T10:45:12Z",
"name": "Europe qualifier",
"season": null,
"slug": "dota-2-asia-championship-europe-qualifier-2018",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2018
},
{
"begin_at": "2018-02-05T23:00:00Z",
"description": null,
"end_at": "2018-02-08T22:00:00Z",
"full_name": "North America qualifier 2018",
"id": 2164,
"league_id": 4113,
"modified_at": "2020-03-08T10:48:37Z",
"name": "North America qualifier",
"season": null,
"slug": "dota-2-asia-championship-north-america-qualifier-2019",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2018
},
{
"begin_at": "2018-02-05T23:00:00Z",
"description": null,
"end_at": "2018-02-09T22:00:00Z",
"full_name": "South America qualifier 2018",
"id": 2165,
"league_id": 4113,
"modified_at": "2020-03-08T10:49:03Z",
"name": "South America qualifier",
"season": null,
"slug": "dota-2-asia-championship-south-america-qualifier-2018",
"tier": null,
"winner_id": 1819,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-02-05T23:00:00Z",
"description": null,
"end_at": "2018-02-09T22:00:00Z",
"full_name": "Southeast Asia qualifier 2018",
"id": 2166,
"league_id": 4113,
"modified_at": "2020-03-08T10:49:26Z",
"name": "Southeast Asia qualifier",
"season": null,
"slug": "dota-2-asia-championship-southeast-asia-qualifier-2018",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2018
},
{
"begin_at": "2018-02-09T23:00:00Z",
"description": null,
"end_at": "2018-02-13T22:00:00Z",
"full_name": "CIS qualifier 2018",
"id": 2163,
"league_id": 4113,
"modified_at": "2020-03-08T10:47:01Z",
"name": "CIS qualifier",
"season": null,
"slug": "dota-2-asia-championship-cis-qualifier-2018",
"tier": null,
"winner_id": 2561,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-03-30T00:00:00Z",
"description": null,
"end_at": "2018-04-07T00:00:00Z",
"full_name": "2018",
"id": 1455,
"league_id": 4113,
"modified_at": "2018-02-16T21:03:05Z",
"name": null,
"season": "",
"slug": "dota-2-asia-championship-2018",
"tier": null,
"winner_id": 1677,
"winner_type": "Team",
"year": 2018
}
],
"slug": "dota-2-asia-championship",
"url": null
},
{
"id": 4114,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4114/esl-one_logo.png",
"modified_at": "2019-03-03T17:08:01Z",
"name": "ESL One",
"series": [
{
"begin_at": "2016-02-04T23:00:00Z",
"description": null,
"end_at": "2016-02-16T23:00:00Z",
"full_name": "Manila : Europe qualifier 2016",
"id": 2119,
"league_id": 4114,
"modified_at": "2019-11-13T12:11:57Z",
"name": "Manila : Europe qualifier",
"season": null,
"slug": "esl-one-manila-europe-qualifier-2016",
"tier": null,
"winner_id": 1649,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2016-02-04T23:00:00Z",
"description": null,
"end_at": "2016-02-15T23:00:00Z",
"full_name": "Manila : America qualifier 2016",
"id": 2120,
"league_id": 4114,
"modified_at": "2019-11-13T12:15:18Z",
"name": "Manila : America qualifier",
"season": null,
"slug": "esl-one-manila-america-qualifier-2016",
"tier": null,
"winner_id": 1681,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2016-03-14T23:00:00Z",
"description": null,
"end_at": "2016-03-19T23:00:00Z",
"full_name": "Manila : Philippines qualifier 2016",
"id": 2118,
"league_id": 4114,
"modified_at": "2019-11-13T12:08:39Z",
"name": "Manila : Philippines qualifier",
"season": null,
"slug": "esl-one-manila-philippines-qualifier-2016",
"tier": null,
"winner_id": 1677,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2016-03-20T23:00:00Z",
"description": null,
"end_at": "2016-03-23T23:00:00Z",
"full_name": "Manila : China qualifier 2016",
"id": 2117,
"league_id": 4114,
"modified_at": "2019-11-13T12:08:15Z",
"name": "Manila : China qualifier",
"season": null,
"slug": "esl-one-manila-china-qualifier-2016",
"tier": null,
"winner_id": 1720,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2016-03-21T23:00:00Z",
"description": null,
"end_at": "2016-03-30T22:00:00Z",
"full_name": "Manila : Southeast Asia qualifier 2016",
"id": 2116,
"league_id": 4114,
"modified_at": "2019-11-13T11:35:47Z",
"name": "Manila : Southeast Asia qualifier",
"season": null,
"slug": "esl-one-manila-southeast-asia-qualifier-2016",
"tier": null,
"winner_id": 1664,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2016-04-03T22:00:00Z",
"description": null,
"end_at": "2016-04-20T22:00:00Z",
"full_name": "Frankfurt : Europe qualifier 2016",
"id": 2121,
"league_id": 4114,
"modified_at": "2019-11-13T13:27:21Z",
"name": "Frankfurt : Europe qualifier",
"season": null,
"slug": "esl-one-frankfurt-europe-qualifier-2016",
"tier": null,
"winner_id": 1671,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2016-04-06T22:00:00Z",
"description": null,
"end_at": "2016-04-11T22:00:00Z",
"full_name": "Frankfurt : Southeast Asia qualifier 2016",
"id": 2122,
"league_id": 4114,
"modified_at": "2019-11-13T13:31:31Z",
"name": "Frankfurt : Southeast Asia qualifier",
"season": null,
"slug": "esl-one-frankfurt-southeast-asia-qualifier-2016",
"tier": null,
"winner_id": 1664,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2016-04-11T22:00:00Z",
"description": null,
"end_at": "2016-06-18T22:00:00Z",
"full_name": "Frankfurt : North America qualifier 2016",
"id": 2123,
"league_id": 4114,
"modified_at": "2019-11-13T13:35:09Z",
"name": "Frankfurt : North America qualifier",
"season": null,
"slug": "esl-one-frankfurt-north-america-qualifier-2016",
"tier": null,
"winner_id": 1681,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2016-04-21T22:00:00Z",
"description": null,
"end_at": "2016-04-23T22:00:00Z",
"full_name": "Manila 2016",
"id": 1404,
"league_id": 4114,
"modified_at": "2018-02-10T03:09:49Z",
"name": "Manila",
"season": null,
"slug": "esl-one-2016-65845bb0-108e-4fed-9459-4a092c78ebf2",
"tier": null,
"winner_id": 1720,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2016-05-12T22:00:00Z",
"description": null,
"end_at": "2016-05-15T22:00:00Z",
"full_name": "Frankfurt : China qualifier 2016",
"id": 2124,
"league_id": 4114,
"modified_at": "2019-11-13T13:38:52Z",
"name": "Frankfurt : China qualifier",
"season": null,
"slug": "esl-one-frankfurt-china-qualifier-2016",
"tier": null,
"winner_id": 1657,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2016-06-16T22:00:00Z",
"description": null,
"end_at": "2016-06-18T22:00:00Z",
"full_name": "Frankfurt 2016",
"id": 1403,
"league_id": 4114,
"modified_at": "2018-02-10T03:09:49Z",
"name": "Frankfurt",
"season": null,
"slug": "esl-one-2016",
"tier": null,
"winner_id": 1654,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2016-10-30T23:00:00Z",
"description": null,
"end_at": "2016-11-07T23:00:00Z",
"full_name": "Genting: North America qualifier 2017",
"id": 2246,
"league_id": 4114,
"modified_at": "2019-11-22T12:45:43Z",
"name": "Genting: North America qualifier",
"season": null,
"slug": "esl-one-genting-north-america-qualifier-2017",
"tier": null,
"winner_id": 1688,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2016-10-30T23:00:00Z",
"description": null,
"end_at": "2016-11-05T23:00:00Z",
"full_name": "Genting: Europe qualifier 2017",
"id": 2247,
"league_id": 4114,
"modified_at": "2019-11-22T12:50:54Z",
"name": "Genting: Europe qualifier",
"season": null,
"slug": "esl-one-genting-europe-qualifier-2017",
"tier": null,
"winner_id": 1651,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2016-11-15T23:00:00Z",
"description": null,
"end_at": "2016-11-20T23:00:00Z",
"full_name": "Genting: Southeast Asia qualifier 2017",
"id": 2248,
"league_id": 4114,
"modified_at": "2019-11-22T12:59:40Z",
"name": "Genting: Southeast Asia qualifier",
"season": null,
"slug": "esl-one-genting-southeast-asia-qualifier-2017",
"tier": null,
"winner_id": 1660,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2016-11-15T23:00:00Z",
"description": null,
"end_at": "2016-11-24T23:00:00Z",
"full_name": "Genting: China qualifier 2017",
"id": 2249,
"league_id": 4114,
"modified_at": "2019-11-22T13:11:44Z",
"name": "Genting: China qualifier",
"season": null,
"slug": "esl-one-genting-china-qualifier-2017",
"tier": null,
"winner_id": 1652,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2016-12-16T23:00:00Z",
"description": null,
"end_at": "2016-12-17T23:00:00Z",
"full_name": "Genting: Malaysia qualifier 2017",
"id": 2250,
"league_id": 4114,
"modified_at": "2019-11-22T13:46:41Z",
"name": "Genting: Malaysia qualifier",
"season": null,
"slug": "esl-one-genting-malaysia-qualifier-2017",
"tier": null,
"winner_id": 2059,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2017-01-05T23:00:00Z",
"description": null,
"end_at": "2017-01-07T23:00:00Z",
"full_name": "Genting 2017",
"id": 1402,
"league_id": 4114,
"modified_at": "2019-01-16T19:45:05Z",
"name": "Genting",
"season": null,
"slug": "esl-one-2017",
"tier": null,
"winner_id": 125180,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2017-09-17T22:00:00Z",
"description": null,
"end_at": "2017-09-19T22:00:00Z",
"full_name": "Hamburg : China qualifier 2017",
"id": 2115,
"league_id": 4114,
"modified_at": "2019-11-13T11:28:07Z",
"name": "Hamburg : China qualifier",
"season": null,
"slug": "esl-one-hamburg-china-qualifier-2017",
"tier": null,
"winner_id": 1673,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2017-09-20T22:00:00Z",
"description": null,
"end_at": "2017-09-23T22:00:00Z",
"full_name": "Hamburg : North America qualifier 2017",
"id": 2110,
"league_id": 4114,
"modified_at": "2019-11-13T11:05:51Z",
"name": "Hamburg : North America qualifier",
"season": null,
"slug": "esl-one-hamburg-north-america-qualifier-2017",
"tier": null,
"winner_id": 1653,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2017-09-20T22:00:00Z",
"description": null,
"end_at": "2017-09-23T22:00:00Z",
"full_name": "Hamburg : South America qualifier 2017",
"id": 2111,
"league_id": 4114,
"modified_at": "2019-11-13T11:11:32Z",
"name": "Hamburg : South America qualifier",
"season": null,
"slug": "esl-one-hamburg-south-america-qualifier-2017",
"tier": null,
"winner_id": 1735,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2017-09-20T22:00:00Z",
"description": null,
"end_at": "2017-09-23T22:00:00Z",
"full_name": "Hamburg : Europe qualifier 2017",
"id": 2112,
"league_id": 4114,
"modified_at": "2019-11-13T11:14:41Z",
"name": "Hamburg : Europe qualifier",
"season": null,
"slug": "esl-one-hamburg-europe-qualifier-2017",
"tier": null,
"winner_id": 1656,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2017-09-20T22:00:00Z",
"description": null,
"end_at": "2017-09-23T22:00:00Z",
"full_name": "Hamburg : Cis qualifier 2017",
"id": 2113,
"league_id": 4114,
"modified_at": "2019-11-13T11:18:48Z",
"name": "Hamburg : Cis qualifier",
"season": null,
"slug": "esl-one-hamburg-cis-qualifier-2017",
"tier": null,
"winner_id": 1651,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2017-09-20T22:00:00Z",
"description": null,
"end_at": "2017-09-23T22:00:00Z",
"full_name": "Hamburg : Southeast Asia qualifier 2017",
"id": 2114,
"league_id": 4114,
"modified_at": "2019-11-13T11:24:58Z",
"name": "Hamburg : Southeast Asia qualifier",
"season": null,
"slug": "esl-one-hamburg-southeast-asia-qualifier-2017",
"tier": null,
"winner_id": 1709,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2017-10-25T22:00:00Z",
"description": null,
"end_at": "2017-10-28T22:00:00Z",
"full_name": "Hamburg 2017",
"id": 1405,
"league_id": 4114,
"modified_at": "2018-02-10T03:09:49Z",
"name": "Hamburg",
"season": null,
"slug": "esl-one-2017-51fc646b-4e4c-4726-beea-58842aa44325",
"tier": null,
"winner_id": 1651,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2018-01-08T23:00:00Z",
"description": null,
"end_at": "2018-01-11T23:00:00Z",
"full_name": "Katowice: North America qualifier 2018",
"id": 2283,
"league_id": 4114,
"modified_at": "2019-11-24T18:18:39Z",
"name": "Katowice: North America qualifier",
"season": null,
"slug": "esl-one-katowice-north-america-qualifier-2018",
"tier": null,
"winner_id": 1681,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-01-08T23:00:00Z",
"description": null,
"end_at": "2018-01-11T23:00:00Z",
"full_name": "Katowice: South America qualifier 2018",
"id": 2284,
"league_id": 4114,
"modified_at": "2020-01-06T18:23:29Z",
"name": "Katowice: South America qualifier",
"season": null,
"slug": "esl-one-katowice-south-america-qualifier-2018",
"tier": null,
"winner_id": 1659,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-01-08T23:00:00Z",
"description": null,
"end_at": "2018-01-11T23:00:00Z",
"full_name": "Katowice: Europe qualifier 2018",
"id": 2286,
"league_id": 4114,
"modified_at": "2020-01-06T18:23:41Z",
"name": "Katowice: Europe qualifier",
"season": null,
"slug": "esl-one-katowice-europe-qualifier-2018",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2018
},
{
"begin_at": "2018-01-08T23:00:00Z",
"description": null,
"end_at": "2018-01-11T23:00:00Z",
"full_name": "Katowice: CIS qualifier 2018",
"id": 2287,
"league_id": 4114,
"modified_at": "2020-01-06T18:23:22Z",
"name": "Katowice: CIS qualifier",
"season": null,
"slug": "esl-one-katowice-cis-qualifier-2018",
"tier": null,
"winner_id": 2561,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-01-08T23:00:00Z",
"description": null,
"end_at": "2018-01-11T23:00:00Z",
"full_name": "Katowice: China qualifier 2018",
"id": 2288,
"league_id": 4114,
"modified_at": "2020-01-06T18:23:54Z",
"name": "Katowice: China qualifier",
"season": null,
"slug": "esl-one-katowice-china-qualifier-2018",
"tier": null,
"winner_id": 1657,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-01-08T23:00:00Z",
"description": null,
"end_at": "2018-01-11T23:00:00Z",
"full_name": "Katowice: Southeast Asia qualifier 2018",
"id": 2289,
"league_id": 4114,
"modified_at": "2020-01-06T18:24:03Z",
"name": "Katowice: Southeast Asia qualifier",
"season": null,
"slug": "esl-one-katowice-southeast-asia-qualifier-2018",
"tier": null,
"winner_id": 1664,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-01-21T23:00:00Z",
"description": null,
"end_at": "2018-01-24T23:00:00Z",
"full_name": "Katowice: North America last chance qualifier 2018",
"id": 2290,
"league_id": 4114,
"modified_at": "2019-11-25T13:32:55Z",
"name": "Katowice: North America last chance qualifier",
"season": null,
"slug": "esl-one-katowice-north-america-last-chance-qualifier-2018",
"tier": null,
"winner_id": 1817,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-01-22T23:00:00Z",
"description": null,
"end_at": "2018-01-27T23:00:00Z",
"full_name": "Genting 2018",
"id": 1407,
"league_id": 4114,
"modified_at": "2018-02-10T03:09:50Z",
"name": "Genting",
"season": null,
"slug": "esl-one-2018-cc18650e-4939-4560-ab02-229cd07ffdbb",
"tier": null,
"winner_id": 1652,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-02-19T23:00:00Z",
"description": null,
"end_at": "2018-02-24T23:00:00Z",
"full_name": "Katowice 2018",
"id": 1406,
"league_id": 4114,
"modified_at": "2018-02-10T03:09:50Z",
"name": "Katowice",
"season": null,
"slug": "esl-one-2018",
"tier": null,
"winner_id": 1651,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-04-16T22:00:00Z",
"description": null,
"end_at": "2018-04-18T22:00:00Z",
"full_name": "Birmingham: China qualifier 2018",
"id": 2015,
"league_id": 4114,
"modified_at": "2019-11-09T04:12:10Z",
"name": "Birmingham: China qualifier",
"season": null,
"slug": "esl-one-birmingham-china-qualifier-2018",
"tier": null,
"winner_id": 1648,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-04-18T22:00:00Z",
"description": null,
"end_at": "2018-04-18T22:00:00Z",
"full_name": "Birmingham: Southeast Asia qualifier 2018",
"id": 2010,
"league_id": 4114,
"modified_at": "2019-11-09T04:07:31Z",
"name": "Birmingham: Southeast Asia qualifier",
"season": null,
"slug": "esl-one-birmingham-southeast-asia-qualifier-2018",
"tier": null,
"winner_id": 1664,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-04-18T22:00:00Z",
"description": null,
"end_at": "2018-04-21T22:00:00Z",
"full_name": "Birmingham: Europe qualifier 2018",
"id": 2011,
"league_id": 4114,
"modified_at": "2019-11-09T04:08:59Z",
"name": "Birmingham: Europe qualifier",
"season": null,
"slug": "esl-one-birmingham-europe-qualifier-2018",
"tier": null,
"winner_id": 1654,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-04-18T22:00:00Z",
"description": null,
"end_at": "2018-04-21T22:00:00Z",
"full_name": "Birmingham: North America qualifier 2018",
"id": 2012,
"league_id": 4114,
"modified_at": "2019-11-09T04:09:58Z",
"name": "Birmingham: North America qualifier",
"season": null,
"slug": "esl-one-birmingham-north-america-qualifier-2018",
"tier": null,
"winner_id": 1817,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-04-18T22:00:00Z",
"description": null,
"end_at": "2018-04-21T22:00:00Z",
"full_name": "Birmingham: South America qualifier 2018",
"id": 2013,
"league_id": 4114,
"modified_at": "2019-11-09T04:10:43Z",
"name": "Birmingham: South America qualifier",
"season": null,
"slug": "esl-one-birmingham-south-america-qualifier-2018",
"tier": null,
"winner_id": 1819,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-04-18T22:00:00Z",
"description": null,
"end_at": "2018-04-21T22:00:00Z",
"full_name": "Birmingham: CIS qualifier 2018",
"id": 2014,
"league_id": 4114,
"modified_at": "2019-11-09T04:11:26Z",
"name": "Birmingham: CIS qualifier",
"season": null,
"slug": "esl-one-birmingham-cis-qualifier-2018",
"tier": null,
"winner_id": 1699,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-05-23T00:00:00Z",
"description": null,
"end_at": "2018-05-27T00:00:00Z",
"full_name": "Birmingham 2018",
"id": 1462,
"league_id": 4114,
"modified_at": "2018-05-27T17:45:45Z",
"name": "Birmingham",
"season": null,
"slug": "esl-one-birmingham-2018",
"tier": null,
"winner_id": 1651,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-09-29T07:00:00Z",
"description": null,
"end_at": "2018-09-30T12:00:00Z",
"full_name": "Hamburg: Southeast Asia qualifier 2018",
"id": 1989,
"league_id": 4114,
"modified_at": "2019-11-08T07:37:23Z",
"name": "Hamburg: Southeast Asia qualifier",
"season": null,
"slug": "esl-one-hamburg-southeast-asia-qualifier-2018",
"tier": null,
"winner_id": 1655,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-09-29T10:00:00Z",
"description": null,
"end_at": "2018-10-05T09:00:00Z",
"full_name": "Hamburg: China qualifier 2018",
"id": 1988,
"league_id": 4114,
"modified_at": "2019-11-08T07:36:27Z",
"name": "Hamburg: China qualifier",
"season": null,
"slug": "esl-one-hamburg-china-qualifier-2018",
"tier": null,
"winner_id": 3360,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-09-29T13:00:00Z",
"description": null,
"end_at": "2018-09-30T21:00:00Z",
"full_name": "Hamburg: Europe qualifier 2018",
"id": 1987,
"league_id": 4114,
"modified_at": "2019-11-08T07:31:31Z",
"name": "Hamburg: Europe qualifier",
"season": null,
"slug": "esl-one-hamburg-europe-qualifier-2018",
"tier": null,
"winner_id": 1706,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-09-29T19:00:00Z",
"description": null,
"end_at": "2018-10-01T05:00:00Z",
"full_name": "Hamburg: North America qualifier 2018",
"id": 1986,
"league_id": 4114,
"modified_at": "2019-11-08T07:28:59Z",
"name": "Hamburg: North America qualifier",
"season": null,
"slug": "esl-one-hamburg-north-america-qualifier-2018",
"tier": null,
"winner_id": 1681,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-10-22T22:00:00Z",
"description": null,
"end_at": "2018-10-27T22:00:00Z",
"full_name": "Hamburg 2018",
"id": 1606,
"league_id": 4114,
"modified_at": "2018-10-28T21:39:27Z",
"name": "Hamburg",
"season": null,
"slug": "esl-one-hamburg-2018",
"tier": null,
"winner_id": 1656,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-12-08T07:00:00Z",
"description": null,
"end_at": "2018-12-09T13:30:00Z",
"full_name": "Katowice: Southeast Asia qualifier 2019",
"id": 1963,
"league_id": 4114,
"modified_at": "2019-11-07T03:47:07Z",
"name": "Katowice: Southeast Asia qualifier",
"season": null,
"slug": "esl-one-katowice-southeast-asia-qualifier-2019",
"tier": null,
"winner_id": 1655,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2018-12-08T14:00:00Z",
"description": null,
"end_at": "2018-12-09T21:00:00Z",
"full_name": "Katowice: Europe qualifier 2019",
"id": 1961,
"league_id": 4114,
"modified_at": "2019-11-07T03:38:35Z",
"name": "Katowice: Europe qualifier",
"season": null,
"slug": "esl-one-katowice-europe-qualifier-2019",
"tier": null,
"winner_id": 3359,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2018-12-08T20:00:00Z",
"description": null,
"end_at": "2018-12-10T02:00:00Z",
"full_name": "Katowice: North America qualifier 2019",
"id": 1962,
"league_id": 4114,
"modified_at": "2019-11-07T03:41:02Z",
"name": "Katowice: North America qualifier",
"season": null,
"slug": "esl-one-katowice-north-america-qualifier-2019",
"tier": null,
"winner_id": 1681,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2018-12-19T06:00:00Z",
"description": null,
"end_at": "2018-12-20T15:00:00Z",
"full_name": "Katowice: China qualifier 2019",
"id": 1960,
"league_id": 4114,
"modified_at": "2019-11-07T03:35:43Z",
"name": "Katowice: China qualifier",
"season": null,
"slug": "esl-one-katowice-china-qualifier-2019",
"tier": null,
"winner_id": 1687,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-02-21T23:00:00Z",
"description": null,
"end_at": "2019-02-23T23:00:00Z",
"full_name": "Katowice 2019",
"id": 1668,
"league_id": 4114,
"modified_at": "2019-02-24T21:08:58Z",
"name": "Katowice",
"season": null,
"slug": "esl-one-katowice-2019",
"tier": null,
"winner_id": 1656,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-02-26T23:00:00Z",
"description": null,
"end_at": "2019-03-02T19:00:00Z",
"full_name": "Mumbai: Europe/CIS qualifier 2019",
"id": 1917,
"league_id": 4114,
"modified_at": "2019-10-29T17:52:43Z",
"name": "Mumbai: Europe/CIS qualifier",
"season": null,
"slug": "esl-one-mumbai-europe-cis-qualifier-2019",
"tier": null,
"winner_id": 13525,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-02-26T23:00:00Z",
"description": null,
"end_at": "2019-03-02T19:00:00Z",
"full_name": "Mumbai: North America qualifier 2019",
"id": 1918,
"league_id": 4114,
"modified_at": "2019-10-29T18:00:53Z",
"name": "Mumbai: North America qualifier",
"season": null,
"slug": "esl-one-mumbai-north-america-qualifier-2019",
"tier": null,
"winner_id": 3385,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-02-26T23:00:00Z",
"description": null,
"end_at": "2019-03-02T19:00:00Z",
"full_name": "Mumbai: China qualifier 2019",
"id": 1919,
"league_id": 4114,
"modified_at": "2019-10-29T18:03:05Z",
"name": "Mumbai: China qualifier",
"season": null,
"slug": "esl-one-mumbai-china-qualifier-2019",
"tier": null,
"winner_id": 1673,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-02-26T23:00:00Z",
"description": null,
"end_at": "2019-03-02T19:00:00Z",
"full_name": "Mumbai: Southeast Asia qualifier 2019",
"id": 1920,
"league_id": 4114,
"modified_at": "2019-10-29T18:04:44Z",
"name": "Mumbai: Southeast Asia qualifier",
"season": null,
"slug": "esl-one-mumbai-southeast-asia-qualifier-2019",
"tier": null,
"winner_id": 1655,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-02-28T23:00:00Z",
"description": null,
"end_at": "2019-03-04T19:00:00Z",
"full_name": "Mumbai: India qualifier 2019",
"id": 1916,
"league_id": 4114,
"modified_at": "2019-10-29T17:50:46Z",
"name": "Mumbai: India qualifier",
"season": null,
"slug": "esl-one-mumbai-india-qualifier-2019",
"tier": null,
"winner_id": 3397,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-04-09T22:00:00Z",
"description": null,
"end_at": "2019-04-13T18:00:00Z",
"full_name": "Birmingham: North America qualifier 2019",
"id": 1913,
"league_id": 4114,
"modified_at": "2019-10-29T17:27:04Z",
"name": "Birmingham: North America qualifier",
"season": null,
"slug": "esl-one-birmingham-north-america-qualifier-2019",
"tier": null,
"winner_id": 3372,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-04-10T09:00:00Z",
"description": null,
"end_at": "2019-04-14T18:00:00Z",
"full_name": "Birmingham: Southeast Asia qualifier 2019",
"id": 1914,
"league_id": 4114,
"modified_at": "2019-10-29T17:28:16Z",
"name": "Birmingham: Southeast Asia qualifier",
"season": null,
"slug": "esl-one-birmingham-southeast-asia-qualifier-2019",
"tier": null,
"winner_id": 1655,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-04-10T09:00:00Z",
"description": null,
"end_at": "2019-04-13T18:00:00Z",
"full_name": "Birmingham: China qualifier 2019",
"id": 1915,
"league_id": 4114,
"modified_at": "2019-10-29T17:29:24Z",
"name": "Birmingham: China qualifier",
"season": null,
"slug": "esl-one-birmingham-china-qualifier-2019",
"tier": null,
"winner_id": 1673,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-04-18T23:00:00Z",
"description": null,
"end_at": "2019-04-20T22:00:00Z",
"full_name": "Mumbai 2019",
"id": 1754,
"league_id": 4114,
"modified_at": "2019-04-30T09:07:04Z",
"name": "Mumbai",
"season": null,
"slug": "esl-one-mumbai-2019",
"tier": null,
"winner_id": 1673,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-05-27T22:00:00Z",
"description": null,
"end_at": "2019-06-01T22:00:00Z",
"full_name": "Birmingham 2019",
"id": 1669,
"league_id": 4114,
"modified_at": "2019-06-03T09:54:23Z",
"name": "Birmingham",
"season": null,
"slug": "esl-one-birmingham-2019",
"tier": null,
"winner_id": 1656,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-09-26T22:00:00Z",
"description": null,
"end_at": "2019-09-30T18:00:00Z",
"full_name": "Hamburg 2019",
"id": 1850,
"league_id": 4114,
"modified_at": "2019-09-16T13:53:26Z",
"name": "Hamburg",
"season": null,
"slug": "esl-one-hamburg-2019",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2019
},
{
"begin_at": "2019-09-26T22:00:00Z",
"description": null,
"end_at": "2019-09-30T18:00:00Z",
"full_name": "Hamburg: Europe qualifier 2019",
"id": 1903,
"league_id": 4114,
"modified_at": "2019-10-29T12:23:46Z",
"name": "Hamburg: Europe qualifier",
"season": null,
"slug": "esl-one-hamburg-europe-qualifier-2019",
"tier": null,
"winner_id": 126226,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-09-26T22:00:00Z",
"description": null,
"end_at": "2019-09-30T18:00:00Z",
"full_name": "Hamburg: North America qualifier 2019",
"id": 1904,
"league_id": 4114,
"modified_at": "2019-10-29T12:24:01Z",
"name": "Hamburg: North America qualifier",
"season": null,
"slug": "esl-one-hamburg-north-america-qualifier-2019",
"tier": null,
"winner_id": 126228,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-09-26T22:00:00Z",
"description": null,
"end_at": "2019-09-30T18:00:00Z",
"full_name": "Hamburg: China qualifier 2019",
"id": 1905,
"league_id": 4114,
"modified_at": "2019-10-29T12:23:28Z",
"name": "Hamburg: China qualifier",
"season": null,
"slug": "esl-one-hamburg-china-qualifier-2019",
"tier": null,
"winner_id": 1662,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-09-26T22:00:00Z",
"description": null,
"end_at": "2019-09-30T18:00:00Z",
"full_name": "Hamburg: Southeast Asia qualifier 2019",
"id": 1906,
"league_id": 4114,
"modified_at": "2019-10-29T12:28:27Z",
"name": "Hamburg: Southeast Asia qualifier",
"season": null,
"slug": "esl-one-hamburg-southeast-asia-qualifier-2019",
"tier": null,
"winner_id": 1714,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2020-02-08T23:00:00Z",
"description": null,
"end_at": "2020-02-13T01:26:00Z",
"full_name": "Los Angeles: South America qualifier 2020",
"id": 2431,
"league_id": 4114,
"modified_at": "2020-02-19T09:32:58Z",
"name": "Los Angeles: South America qualifier",
"season": null,
"slug": "esl-one-los-angeles-south-america-qualifier-2020",
"tier": null,
"winner_id": 2671,
"winner_type": "Team",
"year": 2020
},
{
"begin_at": "2020-02-08T23:00:00Z",
"description": null,
"end_at": "2020-02-12T15:07:00Z",
"full_name": "Los Angeles Major: Europe qualifier 2020",
"id": 2432,
"league_id": 4114,
"modified_at": "2020-02-19T09:33:28Z",
"name": "Los Angeles Major: Europe qualifier",
"season": null,
"slug": "esl-one-los-angeles-major-europe-qualifier-2020",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2020
},
{
"begin_at": "2020-02-08T23:00:00Z",
"description": null,
"end_at": "2020-02-12T07:47:00Z",
"full_name": "Los Angeles Major: SEA qualifier 2020",
"id": 2436,
"league_id": 4114,
"modified_at": "2020-02-19T09:37:40Z",
"name": "Los Angeles Major: SEA qualifier",
"season": null,
"slug": "esl-one-los-angeles-major-sea-qualifier-2020",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2020
},
{
"begin_at": "2020-02-09T09:00:00Z",
"description": null,
"end_at": "2020-02-12T15:05:00Z",
"full_name": "Los Angeles Major: CIS qualifier 2020",
"id": 2433,
"league_id": 4114,
"modified_at": "2020-02-19T09:35:17Z",
"name": "Los Angeles Major: CIS qualifier",
"season": null,
"slug": "esl-one-los-angeles-major-cis-qualifier-2020",
"tier": null,
"winner_id": 1699,
"winner_type": "Team",
"year": 2020
},
{
"begin_at": "2020-02-09T17:00:00Z",
"description": null,
"end_at": "2020-02-13T22:00:00Z",
"full_name": "Los Angeles Major: North America qualifier 2020",
"id": 2425,
"league_id": 4114,
"modified_at": "2020-02-19T09:30:52Z",
"name": "Los Angeles Major: North America qualifier",
"season": null,
"slug": "esl-one-los-angeles-major-north-america-qualifier-2020",
"tier": null,
"winner_id": 1653,
"winner_type": "Team",
"year": 2020
},
{
"begin_at": "2020-02-13T23:00:00Z",
"description": null,
"end_at": "2020-02-17T08:19:00Z",
"full_name": "Los Angeles Major: China qualifier 2020",
"id": 2434,
"league_id": 4114,
"modified_at": "2020-02-19T09:36:44Z",
"name": "Los Angeles Major: China qualifier",
"season": null,
"slug": "esl-one-los-angeles-major-china-qualifier-2020",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2020
},
{
"begin_at": "2020-03-14T23:00:00Z",
"description": null,
"end_at": "2020-03-26T23:00:00Z",
"full_name": "Los Angeles Major 2020",
"id": 2424,
"league_id": 4114,
"modified_at": "2020-03-25T19:55:27Z",
"name": "Los Angeles Major",
"season": "",
"slug": "esl-one-los-angeles-major-2020",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2020
},
{
"begin_at": "2020-03-27T23:00:00Z",
"description": null,
"end_at": "2020-04-19T19:34:00Z",
"full_name": "Los Angeles EU + CIS 2020",
"id": 2562,
"league_id": 4114,
"modified_at": "2020-04-19T23:23:28Z",
"name": "Los Angeles EU + CIS",
"season": null,
"slug": "esl-one-los-angeles-eu-cis-2020",
"tier": null,
"winner_id": 1651,
"winner_type": "Team",
"year": 2020
},
{
"begin_at": "2020-03-27T23:00:00Z",
"description": null,
"end_at": "2020-04-03T00:03:00Z",
"full_name": "Los Angeles NA 2020",
"id": 2563,
"league_id": 4114,
"modified_at": "2020-04-04T06:28:47Z",
"name": "Los Angeles NA",
"season": null,
"slug": "esl-one-los-angeles-na-2020",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2020
},
{
"begin_at": "2020-03-27T23:00:00Z",
"description": null,
"end_at": "2020-04-02T11:23:00Z",
"full_name": "Los Angeles SEA 2020",
"id": 2564,
"league_id": 4114,
"modified_at": "2020-04-04T06:30:36Z",
"name": "Los Angeles SEA",
"season": null,
"slug": "esl-one-los-angeles-sea-2020",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2020
},
{
"begin_at": "2020-03-27T23:00:00Z",
"description": null,
"end_at": "2020-04-03T22:41:00Z",
"full_name": "Los Angeles SA 2020",
"id": 2565,
"league_id": 4114,
"modified_at": "2020-04-03T22:50:13Z",
"name": "Los Angeles SA",
"season": null,
"slug": "esl-one-los-angeles-sa-2020",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2020
},
{
"begin_at": "2020-03-27T23:00:00Z",
"description": null,
"end_at": "2020-04-05T12:06:00Z",
"full_name": "Los Angeles CN 2020",
"id": 2566,
"league_id": 4114,
"modified_at": "2020-04-08T22:50:17Z",
"name": "Los Angeles CN",
"season": null,
"slug": "esl-one-los-angeles-cn-2020",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2020
},
{
"begin_at": "2020-05-11T22:00:00Z",
"description": null,
"end_at": "2020-05-14T21:00:00Z",
"full_name": "Birmingham Online: Europe qualifier 2020",
"id": 2687,
"league_id": 4114,
"modified_at": "2020-05-12T14:18:34Z",
"name": "Birmingham Online: Europe qualifier",
"season": null,
"slug": "esl-one-birmingham-online-europe-qualifier-2020",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2020
},
{
"begin_at": "2020-05-12T09:00:00Z",
"description": null,
"end_at": "2020-05-14T18:10:00Z",
"full_name": "Birmingham Online: Southeast Asia qualifier 2020",
"id": 2685,
"league_id": 4114,
"modified_at": "2020-05-15T22:56:48Z",
"name": "Birmingham Online: Southeast Asia qualifier",
"season": null,
"slug": "esl-one-birmingham-online-southeast-asia-qualifier-2020",
"tier": null,
"winner_id": 126297,
"winner_type": "Team",
"year": 2020
},
{
"begin_at": "2020-05-12T09:00:00Z",
"description": null,
"end_at": "2020-05-14T14:02:00Z",
"full_name": "Birmingham Online: China qualifier 2020",
"id": 2686,
"league_id": 4114,
"modified_at": "2020-05-15T22:55:54Z",
"name": "Birmingham Online: China qualifier",
"season": null,
"slug": "esl-one-birmingham-online-china-qualifier-2020",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2020
},
{
"begin_at": "2020-05-12T21:00:00Z",
"description": null,
"end_at": "2020-05-15T02:46:00Z",
"full_name": "Birmingham Online: North and South America qualifier 2020",
"id": 2688,
"league_id": 4114,
"modified_at": "2020-05-20T22:10:20Z",
"name": "Birmingham Online: North and South America qualifier",
"season": null,
"slug": "esl-one-birmingham-online-north-and-south-america-qualifier-2020",
"tier": null,
"winner_id": 2671,
"winner_type": "Team",
"year": 2020
},
{
"begin_at": "2020-05-20T22:00:00Z",
"description": null,
"end_at": "2020-05-31T13:19:00Z",
"full_name": "Birmingham Online: Southeast Asia 2020",
"id": 2706,
"league_id": 4114,
"modified_at": "2020-05-31T23:15:20Z",
"name": "Birmingham Online: Southeast Asia",
"season": null,
"slug": "esl-one-birmingham-online-southeast-asia-2020",
"tier": "a",
"winner_id": 1664,
"winner_type": "Team",
"year": 2020
},
{
"begin_at": "2020-05-23T22:00:00Z",
"description": null,
"end_at": "2020-06-06T22:00:00Z",
"full_name": "Birmingham Online: Europe/CIS 2020",
"id": 2715,
"league_id": 4114,
"modified_at": "2020-05-20T20:22:07Z",
"name": "Birmingham Online: Europe/CIS",
"season": null,
"slug": "esl-one-birmingham-online-europe-cis-2020",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2020
},
{
"begin_at": "2020-05-24T22:00:00Z",
"description": null,
"end_at": "2020-06-07T21:00:00Z",
"full_name": "Birmingham Online: North/South America 2020",
"id": 2716,
"league_id": 4114,
"modified_at": "2020-05-20T20:54:01Z",
"name": "Birmingham Online: North/South America",
"season": null,
"slug": "esl-one-birmingham-online-north-south-america-2020",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2020
},
{
"begin_at": "2020-05-25T22:00:00Z",
"description": null,
"end_at": "2020-06-07T21:00:00Z",
"full_name": "Birmingham Online: China 2020",
"id": 2717,
"league_id": 4114,
"modified_at": "2020-05-20T21:12:35Z",
"name": "Birmingham Online: China",
"season": null,
"slug": "esl-one-birmingham-online-china-2020",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2020
},
{
"begin_at": "2020-07-31T21:00:00Z",
"description": null,
"end_at": "2020-08-03T02:26:00Z",
"full_name": "Thailand: Americas Closed Qualifier 2020",
"id": 2866,
"league_id": 4114,
"modified_at": "2020-08-17T13:05:08Z",
"name": "Thailand: Americas Closed Qualifier",
"season": "",
"slug": "esl-one-thailand-americas-closed-qualifier-2020",
"tier": "b",
"winner_id": null,
"winner_type": null,
"year": 2020
},
{
"begin_at": "2020-08-08T17:00:00Z",
"description": null,
"end_at": "2020-08-30T20:05:00Z",
"full_name": "Thailand: Americas 2020",
"id": 2849,
"league_id": 4114,
"modified_at": "2020-08-30T23:25:36Z",
"name": "Thailand: Americas",
"season": null,
"slug": "esl-one-thailand-americas-2020",
"tier": "b",
"winner_id": 126289,
"winner_type": "Team",
"year": 2020
},
{
"begin_at": "2020-08-17T09:00:00Z",
"description": null,
"end_at": "2020-08-19T22:00:00Z",
"full_name": "Thailand: Asia closed qualifier 2020",
"id": 2920,
"league_id": 4114,
"modified_at": "2020-08-22T06:47:41Z",
"name": "Thailand: Asia closed qualifier",
"season": null,
"slug": "esl-one-thailand-asia-closed-qualifier-2020",
"tier": "c",
"winner_id": null,
"winner_type": null,
"year": 2020
},
{
"begin_at": "2020-08-20T06:00:00Z",
"description": null,
"end_at": "2020-09-06T12:50:00Z",
"full_name": "Thailand: Asia 2020",
"id": 2877,
"league_id": 4114,
"modified_at": "2020-09-06T12:59:34Z",
"name": "Thailand: Asia",
"season": null,
"slug": "esl-one-thailand-asia-2020",
"tier": "b",
"winner_id": 1655,
"winner_type": "Team",
"year": 2020
},
{
"begin_at": "2020-09-25T09:00:00Z",
"description": null,
"end_at": "2020-09-27T20:30:00Z",
"full_name": "Germany: Closed Qualifier 2020",
"id": 3008,
"league_id": 4114,
"modified_at": "2020-09-27T22:53:10Z",
"name": "Germany: Closed Qualifier",
"season": null,
"slug": "esl-one-germany-closed-qualifier-2020",
"tier": "c",
"winner_id": null,
"winner_type": null,
"year": 2020
},
{
"begin_at": "2020-10-05T15:00:00Z",
"description": null,
"end_at": "2020-11-01T20:06:00Z",
"full_name": "Germany 2020",
"id": 3026,
"league_id": 4114,
"modified_at": "2020-11-02T10:15:35Z",
"name": "Germany",
"season": null,
"slug": "esl-one-germany-2020",
"tier": "a",
"winner_id": 1647,
"winner_type": "Team",
"year": 2020
},
{
"begin_at": "2021-01-07T10:00:00Z",
"description": null,
"end_at": "2021-01-11T15:39:00Z",
"full_name": "CIS Online Decider Tournament season 1 2021",
"id": 3229,
"league_id": 4114,
"modified_at": "2021-01-11T15:51:19Z",
"name": "CIS Online Decider Tournament",
"season": "1",
"slug": "esl-one-cis-online-decider-tournament-1-2021",
"tier": "c",
"winner_id": null,
"winner_type": "Team",
"year": 2021
},
{
"begin_at": "2021-01-18T14:00:00Z",
"description": null,
"end_at": "2021-02-25T16:57:00Z",
"full_name": "CIS Online: Lower Division season 1 2021",
"id": 3261,
"league_id": 4114,
"modified_at": "2021-02-26T11:43:49Z",
"name": "CIS Online: Lower Division",
"season": "1",
"slug": "esl-one-cis-online-lower-division-1-2021",
"tier": "b",
"winner_id": 128357,
"winner_type": "Team",
"year": 2021
},
{
"begin_at": "2021-01-21T17:00:00Z",
"description": null,
"end_at": "2021-02-28T22:00:00Z",
"full_name": "CIS Online: Upper Division season 1 2021",
"id": 3262,
"league_id": 4114,
"modified_at": "2021-02-26T08:15:08Z",
"name": "CIS Online: Upper Division",
"season": "1",
"slug": "esl-one-cis-online-upper-division-1-2021",
"tier": "a",
"winner_id": null,
"winner_type": null,
"year": 2021
},
{
"begin_at": "2021-03-18T11:00:00Z",
"description": null,
"end_at": "2021-03-21T16:26:00Z",
"full_name": "CIS Online Season 2: Closed Qualifier 2021",
"id": 3449,
"league_id": 4114,
"modified_at": "2021-03-21T16:38:06Z",
"name": "CIS Online Season 2: Closed Qualifier",
"season": "",
"slug": "esl-one-cis-online-season-2-closed-qualifier-2021",
"tier": "c",
"winner_id": null,
"winner_type": null,
"year": 2021
},
{
"begin_at": "2021-04-15T10:00:00Z",
"description": null,
"end_at": "2021-05-21T13:00:00Z",
"full_name": "CIS Online: Lower Division season 2 2021",
"id": 3521,
"league_id": 4114,
"modified_at": "2021-04-08T21:26:54Z",
"name": "CIS Online: Lower Division",
"season": "2",
"slug": "esl-one-cis-online-lower-division-2-2021",
"tier": "b",
"winner_id": null,
"winner_type": null,
"year": 2021
},
{
"begin_at": "2021-04-15T16:00:00Z",
"description": null,
"end_at": "2021-05-21T19:00:00Z",
"full_name": "CIS Online: Upper Division season 2 2021",
"id": 3520,
"league_id": 4114,
"modified_at": "2021-04-08T21:25:20Z",
"name": "CIS Online: Upper Division",
"season": "2",
"slug": "esl-one-cis-online-upper-division-2-2021",
"tier": "a",
"winner_id": null,
"winner_type": null,
"year": 2021
}
],
"slug": "esl-one",
"url": null
},
{
"id": 4115,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4115/WCA.png",
"modified_at": "2019-01-18T15:19:04Z",
"name": "World Cyber Arena",
"series": [
{
"begin_at": "2016-03-18T23:00:00Z",
"description": null,
"end_at": "2016-10-12T21:00:00Z",
"full_name": "China qualifier 2016",
"id": 1994,
"league_id": 4115,
"modified_at": "2020-03-08T10:37:07Z",
"name": "China qualifier",
"season": null,
"slug": "world-cyber-arena-china-qualifier-2016",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2016
},
{
"begin_at": "2016-04-14T22:00:00Z",
"description": null,
"end_at": "2016-05-20T21:00:00Z",
"full_name": "Southeast Asia qualifier 2016",
"id": 1996,
"league_id": 4115,
"modified_at": "2020-03-08T10:40:25Z",
"name": "Southeast Asia qualifier",
"season": null,
"slug": "world-cyber-arena-southeast-asia-qualifier-2016",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2016
},
{
"begin_at": "2016-07-26T22:00:00Z",
"description": null,
"end_at": "2016-08-31T22:00:00Z",
"full_name": "Europe qualifier 2016",
"id": 1995,
"league_id": 4115,
"modified_at": "2020-03-08T10:38:03Z",
"name": "Europe qualifier",
"season": null,
"slug": "world-cyber-arena-europe-qualifier-2016",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2016
},
{
"begin_at": "2016-12-08T23:00:00Z",
"description": null,
"end_at": "2016-12-11T22:00:00Z",
"full_name": "Grand Finals 2016",
"id": 1409,
"league_id": 4115,
"modified_at": "2020-03-08T09:43:21Z",
"name": "Grand Finals",
"season": null,
"slug": "world-cyber-arena-2016",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2016
},
{
"begin_at": "2017-05-13T22:00:00Z",
"description": null,
"end_at": "2017-06-01T22:00:00Z",
"full_name": "TPC qualifier 2017",
"id": 2234,
"league_id": 4115,
"modified_at": "2019-11-22T09:15:05Z",
"name": "TPC qualifier",
"season": null,
"slug": "world-cyber-arena-tpc-qualifier-2017",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2017
},
{
"begin_at": "2017-06-04T22:00:00Z",
"description": null,
"end_at": "2017-06-10T21:00:00Z",
"full_name": "2017",
"id": 1408,
"league_id": 4115,
"modified_at": "2020-03-08T09:31:22Z",
"name": null,
"season": null,
"slug": "world-cyber-arena-2017",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2017
}
],
"slug": "world-cyber-arena",
"url": null
},
{
"id": 4116,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4116/800px-WESG_2017.png",
"modified_at": "2021-04-08T19:14:15Z",
"name": "World Electronic Sports Games International",
"series": [
{
"begin_at": "2016-10-05T22:00:00Z",
"description": null,
"end_at": "2016-10-08T22:00:00Z",
"full_name": "WESC: Europe qualifier 2016",
"id": 2231,
"league_id": 4116,
"modified_at": "2019-11-22T08:21:03Z",
"name": "WESC: Europe qualifier",
"season": null,
"slug": "world-electronic-sports-games-international-wesc-europe-qualifier-2016",
"tier": null,
"winner_id": 1747,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2016-10-20T22:00:00Z",
"description": null,
"end_at": "2016-10-22T22:00:00Z",
"full_name": "WECS: America qualifier 2016",
"id": 2232,
"league_id": 4116,
"modified_at": "2019-11-22T08:22:23Z",
"name": "WECS: America qualifier",
"season": null,
"slug": "world-electronic-sports-games-international-wecs-america-qualifier-2016",
"tier": null,
"winner_id": 1659,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2016-11-09T23:00:00Z",
"description": null,
"end_at": "2016-11-12T23:00:00Z",
"full_name": "WECS: APAC qualifier 2016",
"id": 2233,
"league_id": 4116,
"modified_at": "2019-11-22T08:24:19Z",
"name": "WECS: APAC qualifier",
"season": null,
"slug": "world-electronic-sports-games-international-wecs-apac-qualifier-2016",
"tier": null,
"winner_id": 2236,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2017-01-11T23:00:00Z",
"description": null,
"end_at": "2017-01-14T23:00:00Z",
"full_name": "WESG 2016",
"id": 1413,
"league_id": 4116,
"modified_at": "2018-02-10T03:09:50Z",
"name": "WESG",
"season": null,
"slug": "world-electronic-sports-games-international-wesg-2016",
"tier": null,
"winner_id": 1655,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2020-02-14T23:00:00Z",
"description": null,
"end_at": "2020-02-21T17:30:00Z",
"full_name": "Russia Closed Qualifier 2020",
"id": 2480,
"league_id": 4116,
"modified_at": "2020-03-12T08:37:15Z",
"name": "Russia Closed Qualifier",
"season": null,
"slug": "world-electronic-sports-games-international-russia-closed-qualifier-2020",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2020
},
{
"begin_at": "2020-02-28T23:00:00Z",
"description": null,
"end_at": "2020-02-29T20:32:00Z",
"full_name": "Russia Finals 2020",
"id": 2509,
"league_id": 4116,
"modified_at": "2020-03-02T10:20:44Z",
"name": "Russia Finals",
"season": null,
"slug": "world-electronic-sports-games-international-russia-finals-2020",
"tier": null,
"winner_id": 1663,
"winner_type": "Team",
"year": 2020
}
],
"slug": "world-electronic-sports-games-international",
"url": null
},
{
"id": 4117,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4117/Dota_Summit_9_Logo.png",
"modified_at": "2019-02-22T22:22:13Z",
"name": "The Summit",
"series": [
{
"begin_at": "2016-05-07T22:00:00Z",
"description": null,
"end_at": "2016-05-25T22:00:00Z",
"full_name": "China qualifier season 5 2016",
"id": 2082,
"league_id": 4117,
"modified_at": "2019-11-19T00:10:16Z",
"name": "China qualifier",
"season": "5",
"slug": "the-summit-china-qualifier-5-2016",
"tier": null,
"winner_id": 1720,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2016-05-12T12:00:00Z",
"description": null,
"end_at": "2016-05-28T13:00:00Z",
"full_name": "Southeast Asia qualifier season 5 2016",
"id": 2184,
"league_id": 4117,
"modified_at": "2019-11-19T00:19:19Z",
"name": "Southeast Asia qualifier",
"season": "5",
"slug": "the-summit-southeast-asia-qualifier-5-2016",
"tier": null,
"winner_id": 1664,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2016-05-16T15:00:00Z",
"description": null,
"end_at": "2016-05-29T20:00:00Z",
"full_name": "Europe qualifier season 5 2016",
"id": 2183,
"league_id": 4117,
"modified_at": "2019-11-19T00:11:37Z",
"name": "Europe qualifier",
"season": "5",
"slug": "the-summit-europe-qualifier-5-2016",
"tier": null,
"winner_id": 1651,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2016-05-16T21:00:00Z",
"description": null,
"end_at": "2016-05-27T02:00:00Z",
"full_name": "American qualifier season 5 2016",
"id": 2185,
"league_id": 4117,
"modified_at": "2019-11-19T00:26:16Z",
"name": "American qualifier",
"season": "5",
"slug": "the-summit-american-qualifier-5-2016",
"tier": null,
"winner_id": 125180,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2016-07-12T22:00:00Z",
"description": null,
"end_at": "2016-07-16T22:00:00Z",
"full_name": "Season 5 2016",
"id": 1488,
"league_id": 4117,
"modified_at": "2018-07-24T07:19:15Z",
"name": null,
"season": "5",
"slug": "the-summit-5-2016",
"tier": null,
"winner_id": 1651,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2016-10-10T05:00:00Z",
"description": null,
"end_at": "2016-10-20T09:00:00Z",
"full_name": "China qualifier season 6 2016",
"id": 2188,
"league_id": 4117,
"modified_at": "2019-11-19T01:37:05Z",
"name": "China qualifier",
"season": "6",
"slug": "the-summit-china-qualifier-6-2016",
"tier": null,
"winner_id": 1687,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2016-10-10T07:00:00Z",
"description": null,
"end_at": "2016-10-16T14:30:00Z",
"full_name": "Southeast Asia qualifier season 6 2016",
"id": 2189,
"league_id": 4117,
"modified_at": "2019-11-19T01:48:35Z",
"name": "Southeast Asia qualifier",
"season": "6",
"slug": "the-summit-southeast-asia-qualifier-6-2016",
"tier": null,
"winner_id": 1712,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2016-10-11T02:00:00Z",
"description": null,
"end_at": "2016-10-18T21:00:00Z",
"full_name": "Europe qualifier season 6 2016",
"id": 2187,
"league_id": 4117,
"modified_at": "2019-11-19T01:28:38Z",
"name": "Europe qualifier",
"season": "6",
"slug": "the-summit-europe-qualifier-6-2016",
"tier": null,
"winner_id": 1651,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2016-10-13T21:00:00Z",
"description": null,
"end_at": "2016-10-18T03:00:00Z",
"full_name": "American qualifier season 6 2016",
"id": 2186,
"league_id": 4117,
"modified_at": "2019-11-19T01:25:18Z",
"name": "American qualifier",
"season": "6",
"slug": "the-summit-american-qualifier-6-2016",
"tier": null,
"winner_id": 1688,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2016-11-15T23:00:00Z",
"description": null,
"end_at": "2016-11-19T23:00:00Z",
"full_name": "Season 6 2016",
"id": 1487,
"league_id": 4117,
"modified_at": "2018-07-24T07:18:12Z",
"name": null,
"season": "6",
"slug": "the-summit-6-2016",
"tier": null,
"winner_id": 1651,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2017-04-05T22:00:00Z",
"description": null,
"end_at": "2017-06-17T22:00:00Z",
"full_name": "Season 7 2017",
"id": 1486,
"league_id": 4117,
"modified_at": "2018-07-24T07:12:59Z",
"name": null,
"season": "7",
"slug": "the-summit-7-2017",
"tier": null,
"winner_id": 1651,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2017-04-05T22:00:00Z",
"description": null,
"end_at": "2017-04-15T22:00:00Z",
"full_name": "Southeast Asia qualifier season 7 2017",
"id": 2200,
"league_id": 4117,
"modified_at": "2019-11-19T21:23:06Z",
"name": "Southeast Asia qualifier",
"season": "7",
"slug": "the-summit-southeast-asia-qualifier-7-2017",
"tier": null,
"winner_id": 1675,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2017-05-06T22:00:00Z",
"description": null,
"end_at": "2017-05-13T22:00:00Z",
"full_name": "7: Europe qualifier 2017",
"id": 2206,
"league_id": 4117,
"modified_at": "2019-11-20T23:38:21Z",
"name": "7: Europe qualifier",
"season": null,
"slug": "the-summit-7-europe-qualifier-2017",
"tier": null,
"winner_id": 1699,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2017-05-06T22:00:00Z",
"description": null,
"end_at": "2017-05-13T22:00:00Z",
"full_name": "7: Americas qualifier 2017",
"id": 2207,
"league_id": 4117,
"modified_at": "2019-11-20T23:39:13Z",
"name": "7: Americas qualifier",
"season": null,
"slug": "the-summit-7-americas-qualifier-2017",
"tier": null,
"winner_id": 1688,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2017-05-08T22:00:00Z",
"description": null,
"end_at": "2017-05-13T22:00:00Z",
"full_name": "China qualifier season 7 2017",
"id": 2199,
"league_id": 4117,
"modified_at": "2019-11-19T20:25:25Z",
"name": "China qualifier",
"season": "7",
"slug": "the-summit-china-qualifier-7-2017",
"tier": null,
"winner_id": 1683,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2017-09-05T22:00:00Z",
"description": null,
"end_at": "2017-09-19T22:00:00Z",
"full_name": "King's Cup : America 2017",
"id": 1489,
"league_id": 4117,
"modified_at": "2018-04-28T14:23:02Z",
"name": "King's Cup : America",
"season": null,
"slug": "the-summit-king-s-cup-america-2017",
"tier": null,
"winner_id": 1817,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2017-11-06T23:00:00Z",
"description": null,
"end_at": "2017-11-13T23:00:00Z",
"full_name": "CIS qualifier season 8 2017",
"id": 2195,
"league_id": 4117,
"modified_at": "2019-11-19T19:05:55Z",
"name": "CIS qualifier",
"season": "8",
"slug": "the-summit-cis-qualifier-8-2017",
"tier": null,
"winner_id": 1651,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2017-11-06T23:00:00Z",
"description": null,
"end_at": "2017-11-14T23:00:00Z",
"full_name": "China qualifier season 8 2017",
"id": 2198,
"league_id": 4117,
"modified_at": "2019-11-19T20:09:32Z",
"name": "China qualifier",
"season": "8",
"slug": "the-summit-china-qualifier-8-2017",
"tier": null,
"winner_id": 1657,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2017-11-08T23:00:00Z",
"description": null,
"end_at": "2017-11-11T23:00:00Z",
"full_name": "Southeast Asia qualifier season 8 2017",
"id": 2193,
"league_id": 4117,
"modified_at": "2019-11-19T18:36:37Z",
"name": "Southeast Asia qualifier",
"season": "8",
"slug": "the-summit-southeast-asia-qualifier-8-2017",
"tier": null,
"winner_id": 1664,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2017-11-08T23:00:00Z",
"description": null,
"end_at": "2017-11-11T23:00:00Z",
"full_name": "South America qualifier season 8 2017",
"id": 2196,
"league_id": 4117,
"modified_at": "2019-11-19T19:18:34Z",
"name": "South America qualifier",
"season": "8",
"slug": "the-summit-south-america-qualifier-8-2017",
"tier": null,
"winner_id": 1953,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2017-11-08T23:00:00Z",
"description": null,
"end_at": "2017-11-11T23:00:00Z",
"full_name": "Europe qualifier season 8 2017",
"id": 2197,
"league_id": 4117,
"modified_at": "2019-11-19T19:42:34Z",
"name": "Europe qualifier",
"season": "8",
"slug": "the-summit-europe-qualifier-8-2017",
"tier": null,
"winner_id": 1832,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2017-11-12T23:00:00Z",
"description": null,
"end_at": "2017-11-15T23:00:00Z",
"full_name": "North America qualifier season 8 2017",
"id": 2194,
"league_id": 4117,
"modified_at": "2019-11-19T18:57:21Z",
"name": "North America qualifier ",
"season": "8",
"slug": "the-summit-north-america-qualifier-8-2017",
"tier": null,
"winner_id": 1681,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2017-12-12T23:00:00Z",
"description": null,
"end_at": "2017-12-16T23:00:00Z",
"full_name": "Season 8 2017",
"id": 1415,
"league_id": 4117,
"modified_at": "2018-07-24T07:15:30Z",
"name": null,
"season": "8",
"slug": "the-summit-8-2016",
"tier": null,
"winner_id": 1651,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2018-07-24T22:00:00Z",
"description": null,
"end_at": "2018-07-28T22:00:00Z",
"full_name": "Season 9 2018",
"id": 1540,
"league_id": 4117,
"modified_at": "2018-07-30T10:48:14Z",
"name": null,
"season": "9",
"slug": "the-summit-9-2018",
"tier": null,
"winner_id": 1653,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-12-11T23:00:00Z",
"description": null,
"end_at": "2018-12-15T23:00:00Z",
"full_name": "I Can't Believe It's Not Summit! 2018",
"id": 1674,
"league_id": 4117,
"modified_at": "2018-12-17T14:38:55Z",
"name": "I Can't Believe It's Not Summit!",
"season": null,
"slug": "the-summit-i-can-t-believe-it-s-not-summit-2018",
"tier": null,
"winner_id": 1669,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2019-03-10T23:00:00Z",
"description": null,
"end_at": "2019-03-12T23:00:00Z",
"full_name": "Spring Cup 2019",
"id": 1758,
"league_id": 4117,
"modified_at": "2019-03-11T12:24:05Z",
"name": "Spring Cup",
"season": "",
"slug": "the-summit-spring-cup-spring-2019",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2019
},
{
"begin_at": "2019-07-24T22:00:00Z",
"description": null,
"end_at": "2019-07-29T18:00:00Z",
"full_name": "Season 10 2019",
"id": 1629,
"league_id": 4117,
"modified_at": "2019-07-29T09:16:43Z",
"name": "",
"season": "10",
"slug": "the-summit-10-2018",
"tier": null,
"winner_id": 1706,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-10-08T22:00:00Z",
"description": null,
"end_at": "2019-11-11T19:00:00Z",
"full_name": "Minor season 11 2019",
"id": 1875,
"league_id": 4117,
"modified_at": "2019-11-11T00:53:32Z",
"name": "Minor",
"season": "11",
"slug": "the-summit-minor-11-2019",
"tier": null,
"winner_id": 1662,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-10-08T22:00:00Z",
"description": null,
"end_at": "2019-10-11T18:00:00Z",
"full_name": "Minor: Qualifier NA season 11 2019",
"id": 1876,
"league_id": 4117,
"modified_at": "2019-11-07T14:37:11Z",
"name": "Minor: Qualifier NA",
"season": "11",
"slug": "the-summit-minor-qualifier-na-11-2019",
"tier": null,
"winner_id": 126289,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-10-08T22:00:00Z",
"description": null,
"end_at": "2019-10-11T18:00:00Z",
"full_name": "Minor: Qualifier SA season 11 2019",
"id": 1877,
"league_id": 4117,
"modified_at": "2019-11-07T14:37:06Z",
"name": "Minor: Qualifier SA",
"season": "11",
"slug": "the-summit-minor-qualifier-sa-11-2019",
"tier": null,
"winner_id": 1819,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-10-08T22:00:00Z",
"description": null,
"end_at": "2019-10-11T18:00:00Z",
"full_name": "Minor: Qualifier EU season 11 2019",
"id": 1878,
"league_id": 4117,
"modified_at": "2019-11-07T14:36:59Z",
"name": "Minor: Qualifier EU",
"season": "11",
"slug": "the-summit-minor-qualifier-eu-11-2019",
"tier": null,
"winner_id": 1794,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-10-08T22:00:00Z",
"description": null,
"end_at": "2019-10-11T18:00:00Z",
"full_name": "Minor: Qualifier China season 11 2019",
"id": 1879,
"league_id": 4117,
"modified_at": "2019-11-07T14:36:54Z",
"name": "Minor: Qualifier China",
"season": "11",
"slug": "the-summit-minor-qualifier-china-11-2019",
"tier": null,
"winner_id": 1662,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-10-08T22:00:00Z",
"description": null,
"end_at": "2019-10-11T18:00:00Z",
"full_name": "Minor: Qualifier SEA season 11 2019",
"id": 1880,
"league_id": 4117,
"modified_at": "2019-11-07T14:36:49Z",
"name": "Minor: Qualifier SEA",
"season": "11",
"slug": "the-summit-minor-qualifier-sea-11-2019",
"tier": null,
"winner_id": 1714,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-10-08T22:00:00Z",
"description": null,
"end_at": "2019-10-11T18:00:00Z",
"full_name": "Minor: Qualifier CIS season 11 2019",
"id": 1881,
"league_id": 4117,
"modified_at": "2019-11-07T14:36:29Z",
"name": "Minor: Qualifier CIS",
"season": "11",
"slug": "the-summit-minor-qualifier-cis-11-2019",
"tier": null,
"winner_id": 1651,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2020-03-09T23:00:00Z",
"description": null,
"end_at": "2020-03-13T22:53:00Z",
"full_name": "12 2020",
"id": 2527,
"league_id": 4117,
"modified_at": "2020-03-23T15:27:53Z",
"name": "12",
"season": null,
"slug": "the-summit-12-2020",
"tier": null,
"winner_id": 1664,
"winner_type": "Team",
"year": 2020
},
{
"begin_at": "2020-10-02T16:00:00Z",
"description": null,
"end_at": "2020-11-08T21:07:00Z",
"full_name": "Online: Europe & CIS season 13 2020",
"id": 3078,
"league_id": 4117,
"modified_at": "2020-11-08T21:56:22Z",
"name": "Online: Europe & CIS",
"season": "13",
"slug": "the-summit-online-europe-cis-13-2020",
"tier": "b",
"winner_id": null,
"winner_type": null,
"year": 2020
},
{
"begin_at": "2020-10-21T04:00:00Z",
"description": null,
"end_at": "2020-11-08T15:15:00Z",
"full_name": "Online: Southeast Asia season 13 2020",
"id": 3067,
"league_id": 4117,
"modified_at": "2020-11-08T21:56:38Z",
"name": "Online: Southeast Asia",
"season": "13",
"slug": "the-summit-online-southeast-asia-13-2020",
"tier": "b",
"winner_id": null,
"winner_type": null,
"year": 2020
},
{
"begin_at": "2020-10-21T20:00:00Z",
"description": null,
"end_at": "2020-11-09T03:59:00Z",
"full_name": "Online: Americas season 13 2020",
"id": 3068,
"league_id": 4117,
"modified_at": "2020-11-09T18:10:02Z",
"name": "Online: Americas",
"season": "13",
"slug": "the-summit-online-americas-13-2020",
"tier": "b",
"winner_id": 127846,
"winner_type": "Team",
"year": 2020
}
],
"slug": "the-summit",
"url": null
},
{
"id": 4118,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4118/702px-Galaxy_Battles.png",
"modified_at": "2021-04-08T19:32:56Z",
"name": "Galaxy Battle",
"series": [
{
"begin_at": "2017-06-14T22:00:00Z",
"description": null,
"end_at": "2017-06-17T22:00:00Z",
"full_name": "NESO 4th National E-Sports ShenShen Open Tournament season 1 2017",
"id": 1416,
"league_id": 4118,
"modified_at": "2018-11-27T20:54:27Z",
"name": "NESO 4th National E-Sports ShenShen Open Tournament",
"season": "1",
"slug": "galaxy-battle-2016",
"tier": null,
"winner_id": 1652,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2017-11-29T15:00:00Z",
"description": null,
"end_at": "2017-11-29T21:00:00Z",
"full_name": "Emerging Worlds: Europe qualifier season 2 2018",
"id": 2027,
"league_id": 4118,
"modified_at": "2019-11-10T01:13:57Z",
"name": "Emerging Worlds: Europe qualifier",
"season": "2",
"slug": "galaxy-battle-emerging-worlds-europe-qualifier-2-2018",
"tier": null,
"winner_id": 1656,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2017-11-29T22:00:00Z",
"description": null,
"end_at": "2017-11-30T00:00:00Z",
"full_name": "Emerging Worlds: North America qualifier season 2 2018",
"id": 2026,
"league_id": 4118,
"modified_at": "2019-11-10T01:11:32Z",
"name": "Emerging Worlds: North America qualifier",
"season": "2",
"slug": "galaxy-battle-emerging-worlds-north-america-qualifier-2-2018",
"tier": null,
"winner_id": 1817,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2017-11-30T19:00:00Z",
"description": null,
"end_at": "2017-12-01T02:30:00Z",
"full_name": "Emerging Worlds: South America qualifier season 2 2018",
"id": 2028,
"league_id": 4118,
"modified_at": "2019-11-10T01:15:54Z",
"name": "Emerging Worlds: South America qualifier",
"season": "2",
"slug": "galaxy-battle-emerging-worlds-south-america-qualifier-2-2018",
"tier": null,
"winner_id": 1819,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2017-12-18T03:00:00Z",
"description": null,
"end_at": "2017-12-24T11:00:00Z",
"full_name": "Emerging Worlds: China qualifier season 2 2018",
"id": 2025,
"league_id": 4118,
"modified_at": "2019-11-10T00:57:20Z",
"name": "Emerging Worlds: China qualifier",
"season": "2",
"slug": "galaxy-battle-emerging-worlds-china-qualifier-2-2018",
"tier": null,
"winner_id": 1804,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-01-18T23:00:00Z",
"description": null,
"end_at": "2018-01-20T23:00:00Z",
"full_name": "Emerging worlds season 2 2018",
"id": 1456,
"league_id": 4118,
"modified_at": "2018-11-27T20:55:35Z",
"name": "Emerging worlds",
"season": "2",
"slug": "galaxy-battle-emerging-worlds-2-2018",
"tier": null,
"winner_id": 1804,
"winner_type": "Team",
"year": 2018
}
],
"slug": "galaxy-battle",
"url": null
},
{
"id": 4119,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4119/3721.png",
"modified_at": "2019-02-18T08:16:11Z",
"name": "Zotac",
"series": [
{
"begin_at": "2017-04-21T22:00:00Z",
"description": null,
"end_at": "2017-04-22T22:00:00Z",
"full_name": "Southeast asia A qualifier 2017",
"id": 2074,
"league_id": 4119,
"modified_at": "2019-11-11T18:17:12Z",
"name": "Southeast asia A qualifier",
"season": null,
"slug": "zotac-southeast-asia-a-qualifier-2017",
"tier": null,
"winner_id": 1664,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2017-05-05T22:00:00Z",
"description": null,
"end_at": "2017-05-06T22:00:00Z",
"full_name": "Europe B qualifier 2017",
"id": 2076,
"league_id": 4119,
"modified_at": "2019-11-11T21:47:38Z",
"name": "Europe B qualifier",
"season": null,
"slug": "zotac-europe-b-qualifier-2017",
"tier": null,
"winner_id": 1672,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2017-05-12T22:00:00Z",
"description": null,
"end_at": "2017-05-14T22:00:00Z",
"full_name": "Southeast asia B qualifier 2017",
"id": 2075,
"league_id": 4119,
"modified_at": "2019-11-11T21:45:47Z",
"name": "Southeast asia B qualifier ",
"season": null,
"slug": "zotac-southeast-asia-b-qualifier-2017",
"tier": null,
"winner_id": 2059,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2017-05-29T22:00:00Z",
"description": null,
"end_at": "2017-06-03T21:00:00Z",
"full_name": "Cup Masters 2016",
"id": 1417,
"league_id": 4119,
"modified_at": "2020-03-08T09:49:50Z",
"name": "Cup Masters",
"season": null,
"slug": "zotac-2016",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2016
}
],
"slug": "zotac",
"url": null
},
{
"id": 4120,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4120/SL_logo.png",
"modified_at": "2021-04-08T17:58:32Z",
"name": "StarLadder",
"series": [
{
"begin_at": "2015-10-21T12:00:00Z",
"description": null,
"end_at": "2015-12-10T13:59:00Z",
"full_name": "I-League: SEA qualifier 2016",
"id": 2061,
"league_id": 4120,
"modified_at": "2019-11-11T13:18:45Z",
"name": "i-League: SEA qualifier",
"season": null,
"slug": "starladder-i-league-sea-qualifier-2016",
"tier": null,
"winner_id": 1664,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2015-10-24T15:00:00Z",
"description": null,
"end_at": "2015-12-07T19:59:00Z",
"full_name": "I-League: Europe/CIS qualifier 2016",
"id": 2059,
"league_id": 4120,
"modified_at": "2019-11-11T12:44:44Z",
"name": "i-League: Europe/CIS qualifier",
"season": null,
"slug": "starladder-i-league-europe-cis-qualifier-2016",
"tier": null,
"winner_id": null,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2015-10-27T00:30:00Z",
"description": null,
"end_at": "2015-11-28T03:49:00Z",
"full_name": "I-League: America qualifier 2016",
"id": 2060,
"league_id": 4120,
"modified_at": "2019-11-11T13:07:57Z",
"name": "i-League: America qualifier",
"season": null,
"slug": "starladder-i-league-america-qualifier-2016",
"tier": null,
"winner_id": 1681,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2015-11-14T05:00:00Z",
"description": null,
"end_at": "2015-11-29T14:57:00Z",
"full_name": "I-League: China qualifier 2016",
"id": 2062,
"league_id": 4120,
"modified_at": "2019-11-11T13:52:04Z",
"name": "i-League: China qualifier",
"season": null,
"slug": "starladder-i-league-china-qualifier-2016",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2016
},
{
"begin_at": "2016-01-12T23:00:00Z",
"description": null,
"end_at": "2016-01-16T23:00:00Z",
"full_name": "I-League 2016",
"id": 1422,
"league_id": 4120,
"modified_at": "2018-02-10T03:09:52Z",
"name": "i-League",
"season": null,
"slug": "starladder-2016",
"tier": null,
"winner_id": 1706,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2016-04-13T22:00:00Z",
"description": null,
"end_at": "2016-04-16T22:00:00Z",
"full_name": "I-League Invitational season 1 2016",
"id": 1421,
"league_id": 4120,
"modified_at": "2018-02-10T03:09:51Z",
"name": "i-League Invitational",
"season": "1",
"slug": "starladder-i-league-invitational-1-2016",
"tier": null,
"winner_id": 1722,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2016-05-13T09:00:00Z",
"description": null,
"end_at": "2016-05-25T12:00:00Z",
"full_name": "I-League StarSeries: SEA qualifier season 2 2016",
"id": 2064,
"league_id": 4120,
"modified_at": "2019-11-12T05:41:14Z",
"name": "i-League StarSeries: SEA qualifier",
"season": "2",
"slug": "starladder-i-league-starseries-sea-qualifier-2-2016",
"tier": null,
"winner_id": 1664,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2016-05-13T15:00:00Z",
"description": null,
"end_at": "2016-05-31T19:30:00Z",
"full_name": "I-League StarSeries: Europe qualifier season 2 2016",
"id": 2083,
"league_id": 4120,
"modified_at": "2019-11-12T11:44:41Z",
"name": "i-League StarSeries: Europe qualifier",
"season": "2",
"slug": "starladder-i-league-starseries-europe-qualifier-2-2016",
"tier": null,
"winner_id": 1651,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2016-05-16T12:00:00Z",
"description": null,
"end_at": "2016-06-23T13:30:00Z",
"full_name": "I-League StarSeries: China qualifier season 2 2016",
"id": 2084,
"league_id": 4120,
"modified_at": "2019-11-12T12:29:39Z",
"name": "i-League StarSeries: China qualifier",
"season": "2",
"slug": "starladder-i-league-starseries-china-qualifier-2-2016",
"tier": null,
"winner_id": 1726,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2016-05-17T21:00:00Z",
"description": null,
"end_at": "2016-05-29T01:55:00Z",
"full_name": "I-League StarSeries: America qualifier season 2 2016",
"id": 2063,
"league_id": 4120,
"modified_at": "2019-11-11T14:16:55Z",
"name": "i-League StarSeries: America qualifier",
"season": "2",
"slug": "starladder-i-league-starseries-america-qualifier-2-2016",
"tier": null,
"winner_id": 125180,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2016-07-20T22:00:00Z",
"description": null,
"end_at": "2016-07-23T22:00:00Z",
"full_name": "I-League StarSeries season 2 2016",
"id": 1420,
"league_id": 4120,
"modified_at": "2018-02-10T03:09:51Z",
"name": "i-League StarSeries",
"season": "2",
"slug": "starladder-i-league-starseries-2-2016",
"tier": null,
"winner_id": 1699,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2016-12-12T23:00:00Z",
"description": null,
"end_at": "2017-01-06T23:00:00Z",
"full_name": "I-League StarSeries: Chinese qualifier season 3 2016",
"id": 2227,
"league_id": 4120,
"modified_at": "2019-11-22T06:52:11Z",
"name": "i-League StarSeries: Chinese qualifier",
"season": "3",
"slug": "starladder-i-league-starseries-chinese-qualifier-3-2016",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2016
},
{
"begin_at": "2017-01-04T23:00:00Z",
"description": null,
"end_at": "2017-02-01T23:00:00Z",
"full_name": "I-League StarSeries: Europe qualifier season 3 2016",
"id": 2229,
"league_id": 4120,
"modified_at": "2019-11-22T07:55:21Z",
"name": "i-League StarSeries: Europe qualifier",
"season": "3",
"slug": "starladder-i-league-starseries-europe-qualifier-3-2016",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2016
},
{
"begin_at": "2017-01-15T23:00:00Z",
"description": null,
"end_at": "2017-01-24T23:00:00Z",
"full_name": "I-League StarSeries: Southeast Asia qualifier season 3 2016",
"id": 2228,
"league_id": 4120,
"modified_at": "2019-11-22T08:12:30Z",
"name": "i-League StarSeries: Southeast Asia qualifier",
"season": "3",
"slug": "starladder-i-league-starseries-southeast-asia-qualifier-3-2016",
"tier": null,
"winner_id": 1655,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2017-01-23T23:00:00Z",
"description": null,
"end_at": "2017-02-02T23:00:00Z",
"full_name": "I-League StarSeries: America qualifier season 3 2016",
"id": 2230,
"league_id": 4120,
"modified_at": "2019-11-22T08:13:40Z",
"name": "i-League StarSeries: America qualifier",
"season": "3",
"slug": "starladder-i-league-starseries-america-qualifier-3-2016",
"tier": null,
"winner_id": 125180,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2017-02-22T23:00:00Z",
"description": null,
"end_at": "2017-02-25T23:00:00Z",
"full_name": "I-League StarSeries season 3 2016",
"id": 1419,
"league_id": 4120,
"modified_at": "2018-02-10T03:09:51Z",
"name": "i-League StarSeries",
"season": "3",
"slug": "starladder-i-league-starseries-3-2016",
"tier": null,
"winner_id": 1647,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2017-04-11T08:00:00Z",
"description": null,
"end_at": "2017-04-16T14:00:00Z",
"full_name": "I-League Invitational: China qualifier season 2 2016",
"id": 1985,
"league_id": 4120,
"modified_at": "2019-11-08T07:23:10Z",
"name": "i-League Invitational: China qualifier",
"season": "2",
"slug": "starladder-i-league-invitational-china-qualifier-2-2016",
"tier": null,
"winner_id": 1662,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2017-04-18T15:00:00Z",
"description": null,
"end_at": "2017-04-23T15:00:00Z",
"full_name": "I-League Invitational: Europe qualifier season 2 2016",
"id": 1984,
"league_id": 4120,
"modified_at": "2019-11-08T07:19:54Z",
"name": "i-League Invitational: Europe qualifier",
"season": "2",
"slug": "starladder-i-league-invitational-europe-qualifier-2-2016",
"tier": null,
"winner_id": 1671,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2017-05-17T22:00:00Z",
"description": null,
"end_at": "2017-05-20T22:00:00Z",
"full_name": "I-League Invitational season 2 2016",
"id": 1418,
"league_id": 4120,
"modified_at": "2018-02-10T03:09:51Z",
"name": "i-League Invitational",
"season": "2",
"slug": "starladder-i-league-invitational-2-2016",
"tier": null,
"winner_id": 1647,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2017-09-10T22:00:00Z",
"description": null,
"end_at": "2017-09-16T22:00:00Z",
"full_name": "I-League Invitational : CIS qualifier season 3 2017",
"id": 2263,
"league_id": 4120,
"modified_at": "2019-11-23T04:42:20Z",
"name": "i-League Invitational : CIS qualifier ",
"season": "3",
"slug": "starladder-i-league-invitational-cis-qualifier-3-2017",
"tier": null,
"winner_id": 1699,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2017-09-10T22:00:00Z",
"description": null,
"end_at": "2017-09-16T22:00:00Z",
"full_name": "I-League Invitational : South America qualifier season 3 2017",
"id": 2268,
"league_id": 4120,
"modified_at": "2019-11-23T12:08:23Z",
"name": "i-League Invitational : South America qualifier",
"season": "3",
"slug": "starladder-i-league-invitational-south-america-qualifier-3-2017",
"tier": null,
"winner_id": 1735,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2017-09-10T22:00:00Z",
"description": null,
"end_at": "2017-09-16T22:00:00Z",
"full_name": "I-League Invitational : Southeast Asia qualifier season 3 2017",
"id": 2269,
"league_id": 4120,
"modified_at": "2019-11-23T12:12:15Z",
"name": "i-League Invitational : Southeast Asia qualifier",
"season": "3",
"slug": "starladder-i-league-invitational-southeast-asia-qualifier-3-2017",
"tier": null,
"winner_id": 1677,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2017-09-17T22:00:00Z",
"description": null,
"end_at": "2017-09-25T22:00:00Z",
"full_name": "I-League Invitational : Europe qualifier season 3 2017",
"id": 2172,
"league_id": 4120,
"modified_at": "2019-11-18T15:49:03Z",
"name": "i-League Invitational : Europe qualifier",
"season": "3",
"slug": "starladder-i-league-invitational-europe-qualifier-3-2017",
"tier": null,
"winner_id": 1656,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2017-09-17T22:00:00Z",
"description": null,
"end_at": "2017-09-23T22:00:00Z",
"full_name": "I-League Invitational : North America qualifier season 3 2017",
"id": 2264,
"league_id": 4120,
"modified_at": "2019-11-23T04:53:12Z",
"name": "i-League Invitational : North America qualifier",
"season": "3",
"slug": "starladder-i-league-invitational-north-america-qualifier-3-2017",
"tier": null,
"winner_id": 1681,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2017-09-17T22:00:00Z",
"description": null,
"end_at": "2017-09-23T22:00:00Z",
"full_name": "I-League Invitational : China qualifier season 3 2017",
"id": 2267,
"league_id": 4120,
"modified_at": "2019-11-23T12:03:55Z",
"name": "i-League Invitational : China qualifier",
"season": "3",
"slug": "starladder-i-league-invitational-china-qualifier-3-2017",
"tier": null,
"winner_id": 1676,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2017-10-11T22:00:00Z",
"description": null,
"end_at": "2017-10-14T22:00:00Z",
"full_name": "I-League Invitational season 3 2017",
"id": 1423,
"league_id": 4120,
"modified_at": "2018-02-10T03:09:52Z",
"name": "i-League Invitational",
"season": "3",
"slug": "starladder-i-league-invitational-3-2017",
"tier": null,
"winner_id": 1647,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2017-12-17T23:00:00Z",
"description": null,
"end_at": "2017-12-21T23:00:00Z",
"full_name": "I-League Invitational: Europe qualifier season 4 2018",
"id": 2239,
"league_id": 4120,
"modified_at": "2019-11-22T09:58:28Z",
"name": "i-League Invitational: Europe qualifier",
"season": "4",
"slug": "starladder-i-league-invitational-europe-qualifier-4-2018",
"tier": null,
"winner_id": 1832,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2017-12-17T23:00:00Z",
"description": null,
"end_at": "2017-12-21T23:00:00Z",
"full_name": "I-League Invitational: South America qualifier season 4 2018",
"id": 2240,
"league_id": 4120,
"modified_at": "2019-11-22T12:13:19Z",
"name": "i-League Invitational: South America qualifier",
"season": "4",
"slug": "starladder-i-league-invitational-south-america-qualifier-4-2018",
"tier": null,
"winner_id": 1735,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2017-12-17T23:00:00Z",
"description": null,
"end_at": "2017-12-22T23:00:00Z",
"full_name": "I-League Invitational: CIS qualifier season 4 2018",
"id": 2241,
"league_id": 4120,
"modified_at": "2019-11-22T12:22:02Z",
"name": "i-League Invitational: CIS qualifier",
"season": "4",
"slug": "starladder-i-league-invitational-cis-qualifier-4-2018",
"tier": null,
"winner_id": 1649,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-01-07T23:00:00Z",
"description": null,
"end_at": "2018-01-11T23:00:00Z",
"full_name": "I-League Invitational: Southeast Asia qualifier season 4 2018",
"id": 2243,
"league_id": 4120,
"modified_at": "2019-11-22T12:32:49Z",
"name": "i-League Invitational: Southeast Asia qualifier",
"season": "4",
"slug": "starladder-i-league-invitational-southeast-asia-qualifier-4-2018",
"tier": null,
"winner_id": 1677,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-01-07T23:00:00Z",
"description": null,
"end_at": "2018-01-11T23:00:00Z",
"full_name": "I-League Invitational: North America qualifier season 4 2018",
"id": 2245,
"league_id": 4120,
"modified_at": "2019-11-22T12:38:37Z",
"name": "i-League Invitational: North America qualifier",
"season": "4",
"slug": "starladder-i-league-invitational-north-america-qualifier-4-2018",
"tier": null,
"winner_id": 1681,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-01-08T23:00:00Z",
"description": null,
"end_at": "2018-01-11T23:00:00Z",
"full_name": "I-League Invitational: China qualifier season 4 2018",
"id": 2242,
"league_id": 4120,
"modified_at": "2019-11-22T12:28:03Z",
"name": "i-League Invitational: China qualifier",
"season": "4",
"slug": "starladder-i-league-invitational-china-qualifier-4-2018",
"tier": null,
"winner_id": 1657,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-01-31T23:00:00Z",
"description": null,
"end_at": "2018-02-03T23:00:00Z",
"full_name": "I-League Invitational season 4 2018",
"id": 1424,
"league_id": 4120,
"modified_at": "2018-02-10T03:09:52Z",
"name": "i-League Invitational",
"season": "4",
"slug": "starladder-i-league-invitational-4-2018",
"tier": null,
"winner_id": 1647,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-03-11T23:00:00Z",
"description": null,
"end_at": "2018-03-14T19:00:00Z",
"full_name": "I-League Invitational: Southeast Asia qualifier season 5 2018",
"id": 2051,
"league_id": 4120,
"modified_at": "2019-11-10T18:13:03Z",
"name": "i-League Invitational: Southeast Asia qualifier",
"season": "5",
"slug": "starladder-i-league-invitational-southeast-asia-qualifier-5-2018",
"tier": null,
"winner_id": 1664,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-03-13T23:00:00Z",
"description": null,
"end_at": "2018-03-25T21:00:00Z",
"full_name": "I-League Invitational: North America qualifier season 5 2018",
"id": 2050,
"league_id": 4120,
"modified_at": "2019-11-10T18:05:49Z",
"name": "i-League Invitational: North America qualifier",
"season": "5",
"slug": "starladder-i-league-invitational-north-america-qualifier-5-2018",
"tier": null,
"winner_id": 1817,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-03-17T23:00:00Z",
"description": null,
"end_at": "2018-03-27T19:00:00Z",
"full_name": "I-League Invitational: CIS qualifier season 5 2018",
"id": 2049,
"league_id": 4120,
"modified_at": "2019-11-10T17:56:55Z",
"name": "i-League Invitational: CIS qualifier",
"season": "5",
"slug": "starladder-i-league-invitational-cis-qualifier-5-2018",
"tier": null,
"winner_id": 2576,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-03-19T23:00:00Z",
"description": null,
"end_at": "2018-03-24T23:00:00Z",
"full_name": "I-League Invitational: South America qualifier season 5 2018",
"id": 2048,
"league_id": 4120,
"modified_at": "2019-11-10T17:50:33Z",
"name": "i-League Invitational: South America qualifier",
"season": "5",
"slug": "starladder-i-league-invitational-south-america-qualifier-5-2018",
"tier": null,
"winner_id": 1735,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-03-20T23:00:00Z",
"description": null,
"end_at": "2018-03-27T21:00:00Z",
"full_name": "I-League Invitational: Europe qualifier season 5 2018",
"id": 2047,
"league_id": 4120,
"modified_at": "2019-11-10T17:43:36Z",
"name": "i-League Invitational: Europe qualifier",
"season": "5",
"slug": "starladder-i-league-invitational-europe-qualifier-5-2018",
"tier": null,
"winner_id": 1832,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-03-21T23:00:00Z",
"description": null,
"end_at": "2018-03-25T10:00:00Z",
"full_name": "I-League Invitational: China qualifier season 5 2018",
"id": 2046,
"league_id": 4120,
"modified_at": "2019-11-10T17:31:00Z",
"name": "i-League Invitational: China qualifier",
"season": "5",
"slug": "starladder-i-league-invitational-china-qualifier-5-2018",
"tier": null,
"winner_id": 1657,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-04-11T00:00:00Z",
"description": null,
"end_at": "2018-04-15T00:00:00Z",
"full_name": "I-League Invitational season 5 2018",
"id": 1465,
"league_id": 4120,
"modified_at": "2018-03-15T16:45:10Z",
"name": "i-League Invitational",
"season": "5",
"slug": "starladder-i-league-invitational-5-2018",
"tier": null,
"winner_id": 1817,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-11-24T23:00:00Z",
"description": null,
"end_at": "2018-11-28T19:00:00Z",
"full_name": "The Chongqing Major: South America qualifier 2019",
"id": 1977,
"league_id": 4120,
"modified_at": "2019-11-07T16:20:01Z",
"name": "The Chongqing Major: South America qualifier",
"season": null,
"slug": "starladder-the-chongqing-major-south-america-qualifier-2019",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2019
},
{
"begin_at": "2018-11-24T23:00:00Z",
"description": null,
"end_at": "2018-11-28T19:00:00Z",
"full_name": "The Chongqing Major: CIS qualifier 2019",
"id": 1980,
"league_id": 4120,
"modified_at": "2019-11-07T16:20:56Z",
"name": "The Chongqing Major: CIS qualifier",
"season": null,
"slug": "starladder-the-chongqing-major-cis-qualifier-2019",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2019
},
{
"begin_at": "2018-11-24T23:00:00Z",
"description": null,
"end_at": "2018-11-28T19:00:00Z",
"full_name": "The Chongqing Major: Southeast Asia qualifier 2019",
"id": 1983,
"league_id": 4120,
"modified_at": "2019-11-07T16:24:08Z",
"name": "The Chongqing Major: Southeast Asia qualifier",
"season": null,
"slug": "starladder-the-chongqing-major-southeast-asia-qualifier-2019",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2019
},
{
"begin_at": "2018-11-27T23:00:00Z",
"description": null,
"end_at": "2018-12-01T19:00:00Z",
"full_name": "The Chongqing Major: North America qualifier 2019",
"id": 1976,
"league_id": 4120,
"modified_at": "2019-11-07T16:15:06Z",
"name": "The Chongqing Major: North America qualifier",
"season": null,
"slug": "starladder-the-chongqing-major-north-america-qualifier-2019",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2019
},
{
"begin_at": "2018-11-27T23:00:00Z",
"description": null,
"end_at": "2018-12-01T19:00:00Z",
"full_name": "The Chongqing Major: Europe qualifier 2019",
"id": 1978,
"league_id": 4120,
"modified_at": "2019-11-07T16:18:12Z",
"name": "The Chongqing Major: Europe qualifier",
"season": null,
"slug": "starladder-the-chongqing-major-europe-qualifier-2019",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2019
},
{
"begin_at": "2018-11-27T23:00:00Z",
"description": null,
"end_at": "2018-12-01T19:00:00Z",
"full_name": "The Chongqing Major: China qualifier 2019",
"id": 1982,
"league_id": 4120,
"modified_at": "2019-11-07T16:23:16Z",
"name": "The Chongqing Major: China qualifier",
"season": null,
"slug": "starladder-the-chongqing-major-china-qualifier-2019",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2019
},
{
"begin_at": "2019-01-18T23:00:00Z",
"description": null,
"end_at": "2019-01-26T23:00:00Z",
"full_name": "The Chongqing Major 2019",
"id": 1636,
"league_id": 4120,
"modified_at": "2019-01-27T12:43:53Z",
"name": "The Chongqing Major",
"season": null,
"slug": "starladder-the-chongqing-major-2019",
"tier": null,
"winner_id": 1656,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-02-08T23:00:00Z",
"description": null,
"end_at": "2019-02-11T19:00:00Z",
"full_name": "Kiev Minor: North America qualifier 2019",
"id": 1969,
"league_id": 4120,
"modified_at": "2019-11-07T14:46:26Z",
"name": "Kiev Minor: North America qualifier",
"season": null,
"slug": "starladder-kiev-minor-north-america-qualifier-2019",
"tier": null,
"winner_id": 13391,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-02-09T00:00:00Z",
"description": null,
"end_at": "2019-02-11T20:00:00Z",
"full_name": "Kiev Minor: Southeast Asia qualifier 2019",
"id": 1964,
"league_id": 4120,
"modified_at": "2019-11-07T14:46:46Z",
"name": "Kiev Minor: Southeast Asia qualifier",
"season": null,
"slug": "starladder-kiev-minor-southeast-asia-qualifier-2019",
"tier": null,
"winner_id": 1825,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-02-09T00:00:00Z",
"description": null,
"end_at": "2019-02-11T20:00:00Z",
"full_name": "Kiev Minor: CIS qualifier 2019",
"id": 1966,
"league_id": 4120,
"modified_at": "2019-11-07T14:46:10Z",
"name": "Kiev Minor: CIS qualifier",
"season": null,
"slug": "starladder-kiev-minor-cis-qualifier-2019",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2019
},
{
"begin_at": "2019-02-10T23:00:00Z",
"description": null,
"end_at": "2019-02-13T19:00:00Z",
"full_name": "Kiev Minor: China qualifier 2019",
"id": 1965,
"league_id": 4120,
"modified_at": "2019-11-07T14:44:54Z",
"name": "Kiev Minor: China qualifier",
"season": null,
"slug": "starladder-kiev-minor-china-qualifier-2019",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2019
},
{
"begin_at": "2019-02-10T23:00:00Z",
"description": null,
"end_at": "2019-02-14T19:00:00Z",
"full_name": "Kiev Minor: Europe qualifier 2019",
"id": 1967,
"league_id": 4120,
"modified_at": "2019-11-07T14:43:33Z",
"name": "Kiev Minor: Europe qualifier",
"season": null,
"slug": "starladder-kiev-minor-europe-qualifier-2019",
"tier": null,
"winner_id": 1654,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-02-10T23:00:00Z",
"description": null,
"end_at": "2019-02-13T19:00:00Z",
"full_name": "Kiev Minor: South America qualifier 2019",
"id": 1968,
"league_id": 4120,
"modified_at": "2019-11-07T14:43:16Z",
"name": "Kiev Minor: South America qualifier",
"season": null,
"slug": "starladder-kiev-minor-south-america-qualifier-2019",
"tier": null,
"winner_id": 125712,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-03-06T23:00:00Z",
"description": null,
"end_at": "2019-03-09T23:00:00Z",
"full_name": "Kiev Minor 2019",
"id": 1723,
"league_id": 4120,
"modified_at": "2019-03-11T08:06:07Z",
"name": "Kiev Minor",
"season": null,
"slug": "starladder-kiev-minor-2019",
"tier": null,
"winner_id": 1676,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-05-20T22:00:00Z",
"description": null,
"end_at": "2019-06-20T18:00:00Z",
"full_name": "ImbaTV Minor season 2 2019",
"id": 1793,
"league_id": 4120,
"modified_at": "2019-07-29T09:17:59Z",
"name": "ImbaTV Minor",
"season": "2",
"slug": "starladder-imbatv-minor-2-2019",
"tier": null,
"winner_id": 3356,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-05-20T22:00:00Z",
"description": null,
"end_at": "2019-05-23T17:00:00Z",
"full_name": "ImbaTV Minor: North America qualifier season 2 2019",
"id": 1907,
"league_id": 4120,
"modified_at": "2019-11-07T14:34:56Z",
"name": "ImbaTV Minor: North America qualifier",
"season": "2",
"slug": "starladder-imbatv-minor-north-america-qualifier-2-2019",
"tier": null,
"winner_id": 1681,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-05-20T22:00:00Z",
"description": null,
"end_at": "2019-05-23T18:00:00Z",
"full_name": "ImbaTV Minor: South America qualifier season 2 2019",
"id": 1908,
"league_id": 4120,
"modified_at": "2019-11-07T14:34:52Z",
"name": "ImbaTV Minor: South America qualifier",
"season": "2",
"slug": "starladder-imbatv-minor-south-america-qualifier-2-2019",
"tier": null,
"winner_id": 126053,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-05-20T22:00:00Z",
"description": null,
"end_at": "2019-05-23T18:00:00Z",
"full_name": "ImbaTV Minor: Southest Asia qualifier season 2 2019",
"id": 1909,
"league_id": 4120,
"modified_at": "2019-11-07T14:32:46Z",
"name": "ImbaTV Minor: Southest Asia qualifier",
"season": "2",
"slug": "starladder-imbatv-minor-southest-asia-qualifier-2-2019",
"tier": null,
"winner_id": 1677,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-05-20T22:00:00Z",
"description": null,
"end_at": "2019-05-23T18:00:00Z",
"full_name": "ImbaTV Minor: China qualifier season 2 2019",
"id": 1910,
"league_id": 4120,
"modified_at": "2019-11-07T14:32:40Z",
"name": "ImbaTV Minor: China qualifier",
"season": "2",
"slug": "starladder-imbatv-minor-china-qualifier-2-2019",
"tier": null,
"winner_id": 1687,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-05-20T22:00:00Z",
"description": null,
"end_at": "2019-05-23T18:00:00Z",
"full_name": "ImbaTV Minor: CIS qualifier season 2 2019",
"id": 1911,
"league_id": 4120,
"modified_at": "2019-11-07T14:32:35Z",
"name": "ImbaTV Minor: CIS qualifier",
"season": "2",
"slug": "starladder-imbatv-minor-cis-qualifier-2-2019",
"tier": null,
"winner_id": 2576,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-05-20T22:00:00Z",
"description": null,
"end_at": "2019-05-23T18:00:00Z",
"full_name": "ImbaTV Minor: Europe qualifier season 2 2019",
"id": 1912,
"league_id": 4120,
"modified_at": "2019-11-07T14:32:31Z",
"name": "ImbaTV Minor: Europe qualifier",
"season": "2",
"slug": "starladder-imbatv-minor-europe-qualifier-2-2019",
"tier": null,
"winner_id": 3356,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2020-02-12T23:00:00Z",
"description": null,
"end_at": "2020-02-15T00:01:00Z",
"full_name": "ImbaTV Minor Season 3: North America Qualifier 2020",
"id": 2466,
"league_id": 4120,
"modified_at": "2020-02-19T09:46:40Z",
"name": "ImbaTV Minor Season 3: North America Qualifier",
"season": null,
"slug": "starladder-imbatv-minor-season-3-north-america-qualifier-2020",
"tier": null,
"winner_id": 126972,
"winner_type": "Team",
"year": 2020
},
{
"begin_at": "2020-02-12T23:00:00Z",
"description": null,
"end_at": "2020-02-15T00:51:00Z",
"full_name": "ImbaTV Minor Season 3: South America Qualifier 2020",
"id": 2467,
"league_id": 4120,
"modified_at": "2020-02-19T09:43:36Z",
"name": "ImbaTV Minor Season 3: South America Qualifier",
"season": null,
"slug": "starladder-imbatv-minor-season-3-south-america-qualifier-2020",
"tier": null,
"winner_id": 126053,
"winner_type": "Team",
"year": 2020
},
{
"begin_at": "2020-02-12T23:00:00Z",
"description": null,
"end_at": "2020-02-14T17:46:00Z",
"full_name": "ImbaTV Minor Season 3: Europe Qualifier 2020",
"id": 2468,
"league_id": 4120,
"modified_at": "2020-02-19T09:44:48Z",
"name": "ImbaTV Minor Season 3: Europe Qualifier",
"season": null,
"slug": "starladder-imbatv-minor-season-3-europe-qualifier-2020",
"tier": null,
"winner_id": 1706,
"winner_type": "Team",
"year": 2020
},
{
"begin_at": "2020-02-12T23:00:00Z",
"description": null,
"end_at": "2020-02-14T17:06:00Z",
"full_name": "ImbaTV Minor Season 3: CIS Qualifier 2020",
"id": 2469,
"league_id": 4120,
"modified_at": "2020-02-19T09:47:28Z",
"name": "ImbaTV Minor Season 3: CIS Qualifier",
"season": null,
"slug": "starladder-imbatv-minor-season-3-cis-qualifier-2020",
"tier": null,
"winner_id": 3359,
"winner_type": "Team",
"year": 2020
},
{
"begin_at": "2020-02-12T23:00:00Z",
"description": null,
"end_at": "2020-02-14T09:28:00Z",
"full_name": "ImbaTV Minor Season 3: SEA Qualifier 2020",
"id": 2471,
"league_id": 4120,
"modified_at": "2020-02-19T09:45:28Z",
"name": "ImbaTV Minor Season 3: SEA Qualifier",
"season": null,
"slug": "starladder-imbatv-minor-season-3-sea-qualifier-2020",
"tier": null,
"winner_id": 126229,
"winner_type": "Team",
"year": 2020
},
{
"begin_at": "2020-02-17T23:00:00Z",
"description": null,
"end_at": "2020-02-19T22:00:00Z",
"full_name": "ImbaTV Minor Season 3: China Qualifier 2020",
"id": 2470,
"league_id": 4120,
"modified_at": "2020-02-27T00:00:05Z",
"name": "ImbaTV Minor Season 3: China Qualifier",
"season": null,
"slug": "starladder-imbatv-minor-season-3-china-qualifier-2020",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2020
},
{
"begin_at": "2020-03-04T23:00:00Z",
"description": null,
"end_at": "2020-03-08T22:00:00Z",
"full_name": "ImbaTV Minor 3 2020",
"id": 2517,
"league_id": 4120,
"modified_at": "2020-02-26T23:55:25Z",
"name": "ImbaTV Minor 3",
"season": null,
"slug": "starladder-imbatv-minor-3-2020",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2020
}
],
"slug": "starladder",
"url": null
},
{
"id": 4121,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4121/DOTA-PIT-S6.png",
"modified_at": "2019-01-31T12:35:11Z",
"name": "Dota Pit League",
"series": [
{
"begin_at": "2015-11-27T23:00:00Z",
"description": null,
"end_at": "2015-12-02T23:00:00Z",
"full_name": "European qualifiers season 4 2016",
"id": 2148,
"league_id": 4121,
"modified_at": "2019-11-17T02:38:21Z",
"name": "European qualifiers",
"season": "4",
"slug": "dota-pit-league-european-qualifiers-4-2016",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2016
},
{
"begin_at": "2015-12-01T23:00:00Z",
"description": null,
"end_at": "2015-12-21T23:00:00Z",
"full_name": "Asian qualifiers season 4 2016",
"id": 2146,
"league_id": 4121,
"modified_at": "2019-11-17T01:43:57Z",
"name": "Asian qualifiers",
"season": "4",
"slug": "dota-pit-league-asian-qualifiers-4-2016",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2016
},
{
"begin_at": "2015-12-21T23:00:00Z",
"description": null,
"end_at": "2016-01-12T23:00:00Z",
"full_name": "American qualifiers season 4 2016",
"id": 2147,
"league_id": 4121,
"modified_at": "2019-11-17T02:02:44Z",
"name": "American qualifiers",
"season": "4",
"slug": "dota-pit-league-american-qualifiers-4-2016",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2016
},
{
"begin_at": "2016-03-18T23:00:00Z",
"description": null,
"end_at": "2016-03-19T23:00:00Z",
"full_name": "Season 4 2016",
"id": 1426,
"league_id": 4121,
"modified_at": "2018-02-10T03:09:52Z",
"name": null,
"season": "4",
"slug": "dota-pit-league-4-2016",
"tier": null,
"winner_id": 1721,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2016-10-14T22:00:00Z",
"description": null,
"end_at": "2016-10-24T22:00:00Z",
"full_name": "CIS qualifier season 5 2016",
"id": 2144,
"league_id": 4121,
"modified_at": "2019-11-15T17:12:13Z",
"name": "CIS qualifier",
"season": "5",
"slug": "dota-pit-league-cis-qualifier-5-2016",
"tier": null,
"winner_id": 1651,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2016-10-18T22:00:00Z",
"description": null,
"end_at": "2016-10-21T22:00:00Z",
"full_name": "Europe B qualifier season 5 2016",
"id": 2141,
"league_id": 4121,
"modified_at": "2019-11-15T17:08:33Z",
"name": "Europe B qualifier",
"season": "5",
"slug": "dota-pit-league-europe-b-qualifier-5-2016",
"tier": null,
"winner_id": 1656,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2016-10-31T23:00:00Z",
"description": null,
"end_at": "2016-11-03T23:00:00Z",
"full_name": "China qualifier season 5 2016",
"id": 2139,
"league_id": 4121,
"modified_at": "2019-11-15T17:08:27Z",
"name": "China qualifier",
"season": "5",
"slug": "dota-pit-league-china-qualifier-5-2017",
"tier": null,
"winner_id": 1652,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2016-11-01T23:00:00Z",
"description": null,
"end_at": "2016-11-06T23:00:00Z",
"full_name": "Americas qualifier season 5 2016",
"id": 2145,
"league_id": 4121,
"modified_at": "2019-11-15T17:14:00Z",
"name": "Americas qualifier",
"season": "5",
"slug": "dota-pit-league-americas-qualifier-5-2016",
"tier": null,
"winner_id": 1653,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2016-11-03T23:00:00Z",
"description": null,
"end_at": "2016-11-05T23:00:00Z",
"full_name": "Southeast Asia qualifier season 5 2016",
"id": 2142,
"league_id": 4121,
"modified_at": "2019-11-15T17:10:02Z",
"name": "Southeast Asia qualifier",
"season": "5",
"slug": "dota-pit-league-southeast-asia-qualifier-5-2016",
"tier": null,
"winner_id": 1712,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2016-12-12T23:00:00Z",
"description": null,
"end_at": "2016-12-15T23:00:00Z",
"full_name": "Europe A qualifier season 5 2016",
"id": 2143,
"league_id": 4121,
"modified_at": "2019-11-15T17:11:26Z",
"name": "Europe A qualifier",
"season": "5",
"slug": "dota-pit-league-europe-a-qualifier-5-2016",
"tier": null,
"winner_id": 1654,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2017-01-19T23:00:00Z",
"description": null,
"end_at": "2017-01-21T23:00:00Z",
"full_name": "Season 5 2016",
"id": 1425,
"league_id": 4121,
"modified_at": "2018-02-10T03:09:52Z",
"name": null,
"season": "5",
"slug": "dota-pit-league-5-2016",
"tier": null,
"winner_id": 1653,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2017-09-24T22:00:00Z",
"description": null,
"end_at": "2017-09-26T22:00:00Z",
"full_name": "Southeast Asia qualifier season 6 2017",
"id": 2133,
"league_id": 4121,
"modified_at": "2019-11-15T13:48:26Z",
"name": "Southeast Asia qualifier",
"season": "6",
"slug": "dota-pit-league-southeast-asia-qualifier-6-2017",
"tier": null,
"winner_id": 1677,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2017-09-24T22:00:00Z",
"description": null,
"end_at": "2017-09-26T22:00:00Z",
"full_name": "CIS qualifier season 6 2017",
"id": 2137,
"league_id": 4121,
"modified_at": "2019-11-15T13:54:57Z",
"name": "CIS qualifier",
"season": "6",
"slug": "dota-pit-league-cis-qualifier-2-2017",
"tier": null,
"winner_id": 1651,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2017-09-27T22:00:00Z",
"description": null,
"end_at": "2017-09-29T22:00:00Z",
"full_name": "Europe qualifier season 6 2017",
"id": 2135,
"league_id": 4121,
"modified_at": "2019-11-15T13:50:34Z",
"name": "Europe qualifier",
"season": "6",
"slug": "dota-pit-league-europe-qualifier-6-2017",
"tier": null,
"winner_id": 1654,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2017-09-27T22:00:00Z",
"description": null,
"end_at": "2017-09-29T22:00:00Z",
"full_name": "North America qualifier season 6 2017",
"id": 2138,
"league_id": 4121,
"modified_at": "2019-11-15T13:53:37Z",
"name": "North America qualifier",
"season": "6",
"slug": "dota-pit-league-north-america-qualifier-6-2017",
"tier": null,
"winner_id": 1803,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2017-09-28T22:00:00Z",
"description": null,
"end_at": "2017-09-30T22:00:00Z",
"full_name": "China qualifier season 6 2017",
"id": 2134,
"league_id": 4121,
"modified_at": "2019-11-15T13:50:45Z",
"name": "China qualifier",
"season": "6",
"slug": "dota-pit-league-china-qualifier-6-2017",
"tier": null,
"winner_id": 1676,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2017-09-30T22:00:00Z",
"description": null,
"end_at": "2017-10-02T22:00:00Z",
"full_name": "South America qualifier season 6 2017",
"id": 2136,
"league_id": 4121,
"modified_at": "2019-11-15T13:51:46Z",
"name": "South America qualifier",
"season": "6",
"slug": "dota-pit-league-south-america-qualifier-6-2017",
"tier": null,
"winner_id": 1735,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2017-11-01T23:00:00Z",
"description": null,
"end_at": "2017-11-04T23:00:00Z",
"full_name": "Season 6 2017",
"id": 1427,
"league_id": 4121,
"modified_at": "2018-02-10T03:09:52Z",
"name": null,
"season": "6",
"slug": "dota-pit-league-6-2017",
"tier": null,
"winner_id": 1647,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2019-04-01T22:00:00Z",
"description": null,
"end_at": "2019-04-04T18:00:00Z",
"full_name": "Minor: Qualifier north america season 7 2019",
"id": 1946,
"league_id": 4121,
"modified_at": "2019-11-07T14:29:58Z",
"name": "Minor: Qualifier north america",
"season": "7",
"slug": "dota-pit-league-minor-qualifier-north-america-7-2019",
"tier": null,
"winner_id": 3372,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-04-02T22:00:00Z",
"description": null,
"end_at": "2019-04-05T03:00:00Z",
"full_name": "Minor: Qualifier cis season 7 2019",
"id": 1944,
"league_id": 4121,
"modified_at": "2019-11-07T14:30:18Z",
"name": "Minor: Qualifier cis",
"season": "7",
"slug": "dota-pit-league-minor-qualifier-cis-7-2019",
"tier": null,
"winner_id": 3359,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-04-02T22:00:00Z",
"description": null,
"end_at": "2019-04-07T18:00:00Z",
"full_name": "Minor: Qualifier china season 7 2019",
"id": 1945,
"league_id": 4121,
"modified_at": "2019-11-07T14:30:12Z",
"name": "Minor: Qualifier china",
"season": "7",
"slug": "dota-pit-league-minor-qualifier-china-7-2019",
"tier": null,
"winner_id": 3364,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-04-03T22:00:00Z",
"description": null,
"end_at": "2019-04-06T18:00:00Z",
"full_name": "Minor: Qualifier south america season 7 2019",
"id": 1943,
"league_id": 4121,
"modified_at": "2019-11-07T14:30:23Z",
"name": "Minor: Qualifier south america",
"season": "7",
"slug": "dota-pit-league-minor-qualifier-south-america-7-2019",
"tier": null,
"winner_id": 125842,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-04-04T22:00:00Z",
"description": null,
"end_at": "2019-11-06T23:00:00Z",
"full_name": "Minor: Qualifier southeast asia season 7 2019",
"id": 1942,
"league_id": 4121,
"modified_at": "2019-11-07T14:30:28Z",
"name": "Minor: Qualifier southeast asia ",
"season": "7",
"slug": "dota-pit-league-minor-qualifier-southeast-asia-7-2019",
"tier": null,
"winner_id": 1825,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-04-05T15:00:00Z",
"description": null,
"end_at": "2019-04-05T22:00:00Z",
"full_name": "Minor: Qualifier europe season 7 2019",
"id": 1941,
"league_id": 4121,
"modified_at": "2019-11-07T14:30:33Z",
"name": "Minor: Qualifier europe",
"season": "7",
"slug": "dota-pit-league-minor-qualifier-europe-7-2019",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2019
},
{
"begin_at": "2019-04-21T22:00:00Z",
"description": null,
"end_at": "2019-04-27T22:00:00Z",
"full_name": "Minor season 7 2019",
"id": 1673,
"league_id": 4121,
"modified_at": "2019-04-30T09:06:46Z",
"name": "Minor",
"season": "7",
"slug": "dota-pit-league-minor-7-2019",
"tier": null,
"winner_id": 3356,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2020-05-01T06:00:00Z",
"description": null,
"end_at": "2020-05-11T10:06:00Z",
"full_name": "OGA Online: China 2020",
"id": 2666,
"league_id": 4121,
"modified_at": "2020-05-11T23:28:52Z",
"name": "OGA Online: China",
"season": null,
"slug": "dota-pit-league-oga-online-china-2020",
"tier": null,
"winner_id": 1676,
"winner_type": "Team",
"year": 2020
},
{
"begin_at": "2020-05-13T09:00:00Z",
"description": null,
"end_at": "2020-05-23T19:13:00Z",
"full_name": "OGA Online: EU/CIS 2020",
"id": 2682,
"league_id": 4121,
"modified_at": "2020-05-27T01:13:35Z",
"name": "OGA Online: EU/CIS",
"season": null,
"slug": "dota-pit-league-oga-online-eu-cis-2020",
"tier": "b",
"winner_id": 1656,
"winner_type": "Team",
"year": 2020
},
{
"begin_at": "2020-07-01T06:00:00Z",
"description": null,
"end_at": "2020-07-10T13:24:00Z",
"full_name": "OGA: China season 2 2020",
"id": 2817,
"league_id": 4121,
"modified_at": "2020-07-14T22:59:19Z",
"name": "OGA: China",
"season": "2",
"slug": "dota-pit-league-oga-china-2-2020",
"tier": "b",
"winner_id": 1683,
"winner_type": "Team",
"year": 2020
},
{
"begin_at": "2020-07-15T22:00:00Z",
"description": null,
"end_at": "2020-07-22T00:00:00Z",
"full_name": "OGA: Americas season 2 2020",
"id": 2836,
"league_id": 4121,
"modified_at": "2020-07-15T08:14:53Z",
"name": "OGA: Americas",
"season": "2",
"slug": "dota-pit-league-oga-americas-2-2020",
"tier": "c",
"winner_id": null,
"winner_type": null,
"year": 2020
},
{
"begin_at": "2020-07-27T09:00:00Z",
"description": null,
"end_at": "2020-07-30T21:00:00Z",
"full_name": "OGA: Europe season 2 2020",
"id": 2857,
"league_id": 4121,
"modified_at": "2020-07-26T09:30:44Z",
"name": "OGA: Europe",
"season": "2",
"slug": "dota-pit-league-oga-europe-2-2020",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2020
},
{
"begin_at": "2020-09-20T15:00:00Z",
"description": null,
"end_at": "2020-09-21T16:00:00Z",
"full_name": "OGA: Europe/CIS Closed Qualifier season 3 2020",
"id": 2993,
"league_id": 4121,
"modified_at": "2020-09-23T23:18:45Z",
"name": "OGA: Europe/CIS Closed Qualifier",
"season": "3",
"slug": "dota-pit-league-oga-europe-cis-closed-qualifier-2020",
"tier": "b",
"winner_id": null,
"winner_type": null,
"year": 2020
},
{
"begin_at": "2020-09-23T09:00:00Z",
"description": null,
"end_at": "2020-09-26T17:44:00Z",
"full_name": "OGA: Europe/CIS season 3 2020",
"id": 2994,
"league_id": 4121,
"modified_at": "2020-09-27T22:51:57Z",
"name": "OGA: Europe/CIS",
"season": "3",
"slug": "dota-pit-league-oga-europe-cis-3-2020",
"tier": "a",
"winner_id": 1656,
"winner_type": "Team",
"year": 2020
},
{
"begin_at": "2020-09-29T12:00:00Z",
"description": null,
"end_at": "2020-10-11T22:00:00Z",
"full_name": "OGA: China season 3 2020",
"id": 3015,
"league_id": 4121,
"modified_at": "2020-10-12T16:26:12Z",
"name": "OGA: China",
"season": "3",
"slug": "dota-pit-league-oga-china-3-2020",
"tier": "a",
"winner_id": 1676,
"winner_type": "Team",
"year": 2020
},
{
"begin_at": "2020-12-03T09:00:00Z",
"description": null,
"end_at": "2020-12-12T12:12:00Z",
"full_name": "OGA: China season 4 2020",
"id": 3152,
"league_id": 4121,
"modified_at": "2020-12-12T12:23:29Z",
"name": "OGA: China",
"season": "4",
"slug": "dota-pit-league-oga-china-4-2020",
"tier": "a",
"winner_id": 127978,
"winner_type": "Team",
"year": 2020
},
{
"begin_at": "2020-12-12T12:00:00Z",
"description": null,
"end_at": "2020-12-18T20:32:00Z",
"full_name": "OGA: Europe/CIS season 4 2020",
"id": 3155,
"league_id": 4121,
"modified_at": "2020-12-19T10:30:49Z",
"name": "OGA: Europe/CIS",
"season": "4",
"slug": "dota-pit-league-oga-europe-cis-4-2020",
"tier": "a",
"winner_id": 1699,
"winner_type": "Team",
"year": 2020
}
],
"slug": "dota-pit-league",
"url": null
},
{
"id": 4122,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4122/Dota2_Professional_League_new.png",
"modified_at": "2021-04-08T18:02:26Z",
"name": "Professional League",
"series": [
{
"begin_at": "2016-05-17T22:00:00Z",
"description": null,
"end_at": "2016-07-16T22:00:00Z",
"full_name": "Season 1 2016",
"id": 1496,
"league_id": 4122,
"modified_at": "2018-11-14T16:15:08Z",
"name": "",
"season": "1",
"slug": "dota-2-professional-league-1-2016",
"tier": null,
"winner_id": 1657,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2016-09-18T22:00:00Z",
"description": null,
"end_at": "2016-12-12T23:00:00Z",
"full_name": "Secondary season 2 2016",
"id": 1643,
"league_id": 4122,
"modified_at": "2018-11-14T16:30:15Z",
"name": "Secondary",
"season": "2",
"slug": "dota-2-professional-league-secondary-2-2016",
"tier": null,
"winner_id": 1804,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2016-09-22T22:00:00Z",
"description": null,
"end_at": "2016-12-30T23:00:00Z",
"full_name": "Top season 2 2016",
"id": 1495,
"league_id": 4122,
"modified_at": "2018-11-14T16:27:40Z",
"name": "Top",
"season": "2",
"slug": "dota-2-professional-league-top-2016",
"tier": null,
"winner_id": 1652,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2017-03-14T23:00:00Z",
"description": null,
"end_at": "2017-04-15T22:00:00Z",
"full_name": "Top season 3 2017",
"id": 1493,
"league_id": 4122,
"modified_at": "2018-11-14T16:23:11Z",
"name": "Top",
"season": "3",
"slug": "dota-2-professional-league-top-3-2017",
"tier": null,
"winner_id": 1652,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2017-03-19T23:00:00Z",
"description": null,
"end_at": "2017-04-19T22:00:00Z",
"full_name": "Secondary season 3 2017",
"id": 1644,
"league_id": 4122,
"modified_at": "2018-11-14T16:23:45Z",
"name": "Secondary",
"season": "3",
"slug": "dota-2-professional-league-secondary-2017",
"tier": null,
"winner_id": 1687,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2017-09-29T22:00:00Z",
"description": null,
"end_at": "2017-11-11T23:00:00Z",
"full_name": "Top season 4 2018",
"id": 1492,
"league_id": 4122,
"modified_at": "2018-11-14T16:21:55Z",
"name": "Top",
"season": "4",
"slug": "dota-2-professional-league-top-2018",
"tier": null,
"winner_id": 1648,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2017-10-01T22:00:00Z",
"description": null,
"end_at": "2017-11-05T23:00:00Z",
"full_name": "Secondary season 4 2018",
"id": 1645,
"league_id": 4122,
"modified_at": "2018-11-14T16:22:34Z",
"name": "Secondary",
"season": "4",
"slug": "dota-2-professional-league-secondary-2018",
"tier": null,
"winner_id": 1737,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-03-12T23:00:00Z",
"description": null,
"end_at": "2018-04-21T22:00:00Z",
"full_name": "Top season 5 2018",
"id": 1428,
"league_id": 4122,
"modified_at": "2018-11-14T16:20:01Z",
"name": "Top",
"season": "5",
"slug": "dota-2-professional-league-top-2018-083a3914-91d0-42a0-88f6-dbed888bb7ba",
"tier": null,
"winner_id": 1676,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-03-19T23:00:00Z",
"description": null,
"end_at": "2018-05-28T18:00:00Z",
"full_name": "Secondary season 5 2018",
"id": 1639,
"league_id": 4122,
"modified_at": "2018-11-14T16:16:22Z",
"name": "Secondary",
"season": "5",
"slug": "dota-2-professional-league-secondary-2018-79218bc7-3642-4d3d-b905-82abccf3296e",
"tier": null,
"winner_id": 1829,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-11-20T23:00:00Z",
"description": null,
"end_at": "2018-12-29T23:00:00Z",
"full_name": "Season 6 2018",
"id": 1640,
"league_id": 4122,
"modified_at": "2018-12-30T10:16:56Z",
"name": "",
"season": "6",
"slug": "dota-2-professional-league-6-2018",
"tier": null,
"winner_id": 1676,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2020-04-03T22:00:00Z",
"description": null,
"end_at": "2020-04-04T00:00:00Z",
"full_name": "Main season 7 2020",
"id": 2574,
"league_id": 4122,
"modified_at": "2020-04-04T06:32:12Z",
"name": "Main",
"season": "7",
"slug": "dota-2-professional-league-main-2020",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2020
},
{
"begin_at": "2020-04-13T07:00:00Z",
"description": null,
"end_at": "2020-05-14T10:43:00Z",
"full_name": "Secondary season 7 2020",
"id": 2576,
"league_id": 4122,
"modified_at": "2020-05-14T10:44:05Z",
"name": "Secondary",
"season": "7",
"slug": "dota-2-professional-league-secondary-7-2020",
"tier": null,
"winner_id": 1650,
"winner_type": "Team",
"year": 2020
}
],
"slug": "dota-2-professional-league",
"url": null
},
{
"id": 4123,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4123/Mars_Dota2_League.png",
"modified_at": "2019-02-24T13:16:16Z",
"name": "Mars Dota League",
"series": [
{
"begin_at": "2016-09-21T06:00:00Z",
"description": null,
"end_at": "2016-09-22T08:00:00Z",
"full_name": "China qualifier Autumn 2016",
"id": 2065,
"league_id": 4123,
"modified_at": "2019-11-11T16:55:51Z",
"name": "China qualifier",
"season": "Autumn",
"slug": "mars-dota-2-league-china-qualifier-autumn-2016",
"tier": null,
"winner_id": 1650,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2016-09-28T00:00:00Z",
"description": null,
"end_at": "2016-10-02T00:00:00Z",
"full_name": "Autumn 2016",
"id": 1430,
"league_id": 4123,
"modified_at": "2018-02-10T03:09:52Z",
"name": null,
"season": "Autumn",
"slug": "mars-dota-2-league-2016",
"tier": null,
"winner_id": 1653,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2017-05-07T22:00:00Z",
"description": null,
"end_at": "2017-07-08T22:00:00Z",
"full_name": "2017",
"id": 1499,
"league_id": 4123,
"modified_at": "2018-05-09T07:33:27Z",
"name": "",
"season": "",
"slug": "mars-dota-2-league-2017",
"tier": null,
"winner_id": 1657,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2017-11-09T23:00:00Z",
"description": null,
"end_at": "2017-11-11T23:00:00Z",
"full_name": "Macau : South America qualifier 2017",
"id": 2168,
"league_id": 4123,
"modified_at": "2019-11-18T14:08:44Z",
"name": "Macau : South America qualifier",
"season": null,
"slug": "mars-dota-2-league-macau-south-america-qualifier-2017",
"tier": null,
"winner_id": 1659,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2017-11-09T23:00:00Z",
"description": null,
"end_at": "2017-11-12T23:00:00Z",
"full_name": "Macau : Europe qualifier 2017",
"id": 2169,
"league_id": 4123,
"modified_at": "2019-11-18T14:18:24Z",
"name": "Macau : Europe qualifier",
"season": null,
"slug": "mars-dota-2-league-macau-europe-qualifier-2017",
"tier": null,
"winner_id": 1654,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2017-11-09T23:00:00Z",
"description": null,
"end_at": "2017-11-11T23:00:00Z",
"full_name": "Macau : Cis qualifier 2017",
"id": 2170,
"league_id": 4123,
"modified_at": "2019-11-18T14:23:17Z",
"name": "Macau : Cis qualifier",
"season": null,
"slug": "mars-dota-2-league-macau-cis-qualifier-2017",
"tier": null,
"winner_id": 1699,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2017-11-12T23:00:00Z",
"description": null,
"end_at": "2017-11-14T23:00:00Z",
"full_name": "Macau : Southeast Asia qualifier 2017",
"id": 2171,
"league_id": 4123,
"modified_at": "2019-11-18T15:30:26Z",
"name": "Macau : Southeast Asia qualifier",
"season": null,
"slug": "mars-dota-2-league-macau-southeast-asia-qualifier-2017",
"tier": null,
"winner_id": 1655,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2017-11-13T23:00:00Z",
"description": null,
"end_at": "2017-11-15T23:00:00Z",
"full_name": "Macau : North America qualifier 2017",
"id": 2167,
"league_id": 4123,
"modified_at": "2019-11-18T14:03:33Z",
"name": "Macau : North America qualifier",
"season": null,
"slug": "mars-dota-2-league-macau-north-america-qualifier-2017",
"tier": null,
"winner_id": 1816,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2017-12-07T23:00:00Z",
"description": null,
"end_at": "2017-12-09T23:00:00Z",
"full_name": "Macau 2017",
"id": 1431,
"league_id": 4123,
"modified_at": "2018-02-10T03:09:53Z",
"name": "Macau",
"season": null,
"slug": "mars-dota-2-league-macau-6-2017",
"tier": null,
"winner_id": 1654,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2018-03-13T23:00:00Z",
"description": null,
"end_at": "2018-03-18T20:00:00Z",
"full_name": "Changsha Major: Europe qualifier 2018",
"id": 2041,
"league_id": 4123,
"modified_at": "2019-11-10T16:19:49Z",
"name": "Changsha Major: Europe qualifier",
"season": null,
"slug": "mars-dota-2-league-changsha-major-europe-qualifier-2018",
"tier": null,
"winner_id": 1654,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-03-20T23:00:00Z",
"description": null,
"end_at": "2018-03-26T20:00:00Z",
"full_name": "Changsha Major: CIS qualifier 2018",
"id": 2042,
"league_id": 4123,
"modified_at": "2019-11-10T16:22:07Z",
"name": "Changsha Major: CIS qualifier",
"season": null,
"slug": "mars-dota-2-league-changsha-major-cis-qualifier-2018",
"tier": null,
"winner_id": 1671,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-03-20T23:00:00Z",
"description": null,
"end_at": "2018-03-26T06:00:00Z",
"full_name": "Changsha Major: North America qualifier 2018",
"id": 2043,
"league_id": 4123,
"modified_at": "2019-11-10T16:36:56Z",
"name": "Changsha Major: North America qualifier",
"season": null,
"slug": "mars-dota-2-league-changsha-major-north-america-qualifier-2018",
"tier": null,
"winner_id": 1816,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-03-21T23:00:00Z",
"description": null,
"end_at": "2018-03-27T21:00:00Z",
"full_name": "Changsha Major: South America qualifier 2018",
"id": 2045,
"league_id": 4123,
"modified_at": "2019-11-10T17:01:21Z",
"name": "Changsha Major: South America qualifier",
"season": null,
"slug": "mars-dota-2-league-changsha-major-south-america-qualifier-2018",
"tier": null,
"winner_id": 1659,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-04-17T22:00:00Z",
"description": null,
"end_at": "2018-04-22T10:00:00Z",
"full_name": "Changsha Major: Southeast Asia qualifier 2018",
"id": 2044,
"league_id": 4123,
"modified_at": "2019-11-10T16:49:35Z",
"name": "Changsha Major: Southeast Asia qualifier",
"season": null,
"slug": "mars-dota-2-league-changsha-major-southeast-asia-qualifier-2018",
"tier": null,
"winner_id": 1655,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-05-13T22:00:00Z",
"description": null,
"end_at": "2018-05-19T22:00:00Z",
"full_name": "Changsha Major 2018",
"id": 1498,
"league_id": 4123,
"modified_at": "2018-05-20T12:44:37Z",
"name": "Changsha Major",
"season": null,
"slug": "mars-dota-2-league-changsha-major-2018",
"tier": null,
"winner_id": 1657,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2019-01-03T05:00:00Z",
"description": null,
"end_at": "2019-01-04T12:00:00Z",
"full_name": "Macau: China qualifier 2019",
"id": 2018,
"league_id": 4123,
"modified_at": "2019-11-09T22:59:03Z",
"name": "Macau: China qualifier",
"season": null,
"slug": "mars-dota-2-league-macau-china-qualifier-2019",
"tier": null,
"winner_id": null,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-02-19T23:00:00Z",
"description": null,
"end_at": "2019-02-23T23:00:00Z",
"full_name": "Macau 2019",
"id": 1698,
"league_id": 4123,
"modified_at": "2019-02-24T13:16:16Z",
"name": "Macau",
"season": null,
"slug": "mars-dota-2-league-macau-2019",
"tier": null,
"winner_id": 1647,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-03-27T23:00:00Z",
"description": null,
"end_at": "2019-06-12T18:00:00Z",
"full_name": "Disneyland Paris Major 2019",
"id": 1765,
"league_id": 4123,
"modified_at": "2019-05-28T16:53:00Z",
"name": "Disneyland Paris Major",
"season": null,
"slug": "mars-dota-2-league-disneyland-paris-major-2019",
"tier": null,
"winner_id": 1656,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-03-27T23:00:00Z",
"description": null,
"end_at": "2019-03-30T22:00:00Z",
"full_name": "Disneyland Paris Major: Qualifier europe 2019",
"id": 1949,
"league_id": 4123,
"modified_at": "2019-11-06T17:09:21Z",
"name": "Disneyland Paris Major: Qualifier europe",
"season": null,
"slug": "mars-dota-2-league-disneyland-paris-major-qualifier-europe-2019",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2019
},
{
"begin_at": "2019-03-27T23:00:00Z",
"description": null,
"end_at": "2019-04-01T22:00:00Z",
"full_name": "Disneyland Paris Major: Qualifier cis 2019",
"id": 1950,
"league_id": 4123,
"modified_at": "2019-11-20T15:33:40Z",
"name": "Disneyland Paris Major: Qualifier cis",
"season": null,
"slug": "mars-dota-2-league-disneyland-paris-major-qualifier-cis-2019",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2019
},
{
"begin_at": "2019-03-27T23:00:00Z",
"description": null,
"end_at": "2019-03-31T18:00:00Z",
"full_name": "Disneyland Paris Major: Qualifier south america 2019",
"id": 1952,
"league_id": 4123,
"modified_at": "2019-11-06T17:47:32Z",
"name": "Disneyland Paris Major: Qualifier south america",
"season": null,
"slug": "mars-dota-2-league-disneyland-paris-major-qualifier-south-america-2019",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2019
},
{
"begin_at": "2019-03-29T23:00:00Z",
"description": null,
"end_at": "2019-04-01T20:00:00Z",
"full_name": "Disneyland Paris Major: Qualifier southeast asia 2019",
"id": 1947,
"league_id": 4123,
"modified_at": "2019-11-06T16:36:28Z",
"name": "Disneyland Paris Major: Qualifier southeast asia",
"season": null,
"slug": "mars-dota-2-league-disneyland-paris-major-qualifier-southeast-asia-2019",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2019
},
{
"begin_at": "2019-03-29T23:00:00Z",
"description": null,
"end_at": "2019-04-01T18:00:00Z",
"full_name": "Disneyland Paris Major: Qualifier china 2019",
"id": 1948,
"league_id": 4123,
"modified_at": "2019-11-06T16:52:02Z",
"name": "Disneyland Paris Major: Qualifier china",
"season": null,
"slug": "mars-dota-2-league-disneyland-paris-major-qualifier-china-2019",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2019
},
{
"begin_at": "2019-03-29T23:00:00Z",
"description": null,
"end_at": "2019-04-02T18:00:00Z",
"full_name": "Disneyland Paris Major: Qualifier north america 2019",
"id": 1951,
"league_id": 4123,
"modified_at": "2019-11-06T17:38:06Z",
"name": "Disneyland Paris Major: Qualifier north america",
"season": null,
"slug": "mars-dota-2-league-disneyland-paris-major-qualifier-north-america-2019",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2019
},
{
"begin_at": "2019-10-04T22:00:00Z",
"description": null,
"end_at": "2019-10-10T05:00:00Z",
"full_name": "Qualifier NA 2019",
"id": 1865,
"league_id": 4123,
"modified_at": "2019-10-09T08:20:15Z",
"name": "Qualifier NA",
"season": null,
"slug": "mars-dota-2-league-qualifier-na-2019",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2019
},
{
"begin_at": "2019-10-04T22:00:00Z",
"description": null,
"end_at": "2019-10-10T05:00:00Z",
"full_name": "Qualifier SA 2019",
"id": 1866,
"league_id": 4123,
"modified_at": "2019-10-09T08:05:35Z",
"name": "Qualifier SA",
"season": null,
"slug": "mars-dota-2-league-qualifier-sa-2019",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2019
},
{
"begin_at": "2019-10-04T22:00:00Z",
"description": null,
"end_at": "2019-10-07T08:00:00Z",
"full_name": "Qualifier EU 2019",
"id": 1867,
"league_id": 4123,
"modified_at": "2019-10-09T08:21:06Z",
"name": "Qualifier EU",
"season": null,
"slug": "mars-dota-2-league-qualifier-eu-2019",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2019
},
{
"begin_at": "2019-10-04T22:00:00Z",
"description": null,
"end_at": "2019-10-09T03:00:00Z",
"full_name": "Qualifier CIS 2019",
"id": 1868,
"league_id": 4123,
"modified_at": "2019-10-09T08:26:36Z",
"name": "Qualifier CIS",
"season": null,
"slug": "mars-dota-2-league-qualifier-cis-2019",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2019
},
{
"begin_at": "2019-10-05T03:00:00Z",
"description": null,
"end_at": "2019-10-10T05:00:00Z",
"full_name": "Qualifier CN 2019",
"id": 1869,
"league_id": 4123,
"modified_at": "2019-10-09T08:03:18Z",
"name": "Qualifier CN",
"season": null,
"slug": "mars-dota-2-league-qualifier-cn-2019",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2019
},
{
"begin_at": "2019-10-05T04:00:00Z",
"description": null,
"end_at": "2019-10-09T08:00:00Z",
"full_name": "Qualifier SEA 2019",
"id": 1870,
"league_id": 4123,
"modified_at": "2019-10-09T07:58:36Z",
"name": "Qualifier SEA ",
"season": null,
"slug": "mars-dota-2-league-qualifier-sea-2019",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2019
},
{
"begin_at": "2019-11-15T23:00:00Z",
"description": null,
"end_at": "2019-11-24T19:00:00Z",
"full_name": "Chengdu Major 2019",
"id": 1864,
"league_id": 4123,
"modified_at": "2019-10-02T09:33:09Z",
"name": "Chengdu Major ",
"season": null,
"slug": "mars-dota-2-league-chengdu-major-2019",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2019
}
],
"slug": "mars-dota-2-league",
"url": null
},
{
"id": 4124,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4124/D.ACE_Provisional.png",
"modified_at": "2021-04-08T19:29:22Z",
"name": "ACE Provisional",
"series": [
{
"begin_at": "2016-10-15T22:00:00Z",
"description": null,
"end_at": "2016-12-26T22:00:00Z",
"full_name": "2016",
"id": 1432,
"league_id": 4124,
"modified_at": "2020-03-08T09:50:55Z",
"name": null,
"season": null,
"slug": "dota-2-ace-provisional-2016",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2016
}
],
"slug": "dota-2-ace-provisional",
"url": null
},
{
"id": 4125,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4125/DHDLS9.png",
"modified_at": "2019-03-05T11:02:02Z",
"name": "DreamLeague",
"series": [
{
"begin_at": "2016-05-20T22:00:00Z",
"description": null,
"end_at": "2016-05-21T22:00:00Z",
"full_name": "Season 5 2016",
"id": 1435,
"league_id": 4125,
"modified_at": "2018-09-20T10:31:12Z",
"name": null,
"season": "5",
"slug": "dreamleague-5-2016",
"tier": null,
"winner_id": 1654,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2016-11-24T23:00:00Z",
"description": null,
"end_at": "2016-11-25T23:00:00Z",
"full_name": "Season 6 2016",
"id": 1434,
"league_id": 4125,
"modified_at": "2018-09-20T10:29:53Z",
"name": null,
"season": "6",
"slug": "dreamleague-6-2016",
"tier": null,
"winner_id": 1647,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2017-05-04T16:00:00Z",
"description": null,
"end_at": "2017-05-21T20:30:00Z",
"full_name": "Europe division season 7 2016",
"id": 2180,
"league_id": 4125,
"modified_at": "2019-11-18T23:52:31Z",
"name": "Europe division",
"season": "7",
"slug": "dreamleague-europe-division-7-2016",
"tier": null,
"winner_id": 1656,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2017-05-30T16:00:00Z",
"description": null,
"end_at": "2017-05-31T23:30:00Z",
"full_name": "North America division season 7 2016",
"id": 2179,
"league_id": 4125,
"modified_at": "2019-11-18T23:45:12Z",
"name": "North America division",
"season": "7",
"slug": "dreamleague-north-america-division-7-2016",
"tier": null,
"winner_id": 1679,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2017-07-20T22:00:00Z",
"description": null,
"end_at": "2017-07-21T22:00:00Z",
"full_name": "Season 7 2016",
"id": 1433,
"league_id": 4125,
"modified_at": "2018-09-20T10:28:16Z",
"name": null,
"season": "7",
"slug": "dreamleague-7-2016",
"tier": null,
"winner_id": 1647,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2017-09-28T19:00:00Z",
"description": null,
"end_at": "2017-09-30T03:00:00Z",
"full_name": "South America qualifier season 8 2017",
"id": 2178,
"league_id": 4125,
"modified_at": "2019-11-18T23:34:10Z",
"name": "South America qualifier",
"season": "8",
"slug": "dreamleague-south-america-qualifier-8-2017",
"tier": null,
"winner_id": 1659,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2017-10-03T16:00:00Z",
"description": null,
"end_at": "2017-11-16T22:00:00Z",
"full_name": "Europe & CIS qualifier season 8 2017",
"id": 2177,
"league_id": 4125,
"modified_at": "2019-11-18T23:28:01Z",
"name": "Europe & CIS qualifier",
"season": "8",
"slug": "dreamleague-europe-cis-qualifier-8-2017",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2017
},
{
"begin_at": "2017-10-07T08:00:00Z",
"description": null,
"end_at": "2017-10-08T15:00:00Z",
"full_name": "China qualifier season 8 2017",
"id": 2176,
"league_id": 4125,
"modified_at": "2019-11-18T23:23:58Z",
"name": "China qualifier",
"season": "8",
"slug": "dreamleague-china-qualifier-8-2017",
"tier": null,
"winner_id": 1652,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2017-11-11T18:00:00Z",
"description": null,
"end_at": "2017-11-13T02:00:00Z",
"full_name": "North America qualifier season 8 2017",
"id": 2175,
"league_id": 4125,
"modified_at": "2019-11-18T23:17:31Z",
"name": "North America qualifier",
"season": "8",
"slug": "dreamleague-north-america-qualifier-8-2017",
"tier": null,
"winner_id": 1653,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2017-11-17T07:00:00Z",
"description": null,
"end_at": "2017-11-18T16:30:00Z",
"full_name": "Southeast Asia qualifier season 8 2017",
"id": 2174,
"league_id": 4125,
"modified_at": "2019-11-18T23:11:52Z",
"name": "Southeast Asia qualifier",
"season": "8",
"slug": "dreamleague-southeast-asia-qualifier-8-2017",
"tier": null,
"winner_id": 1664,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2017-11-30T23:00:00Z",
"description": null,
"end_at": "2017-12-02T23:00:00Z",
"full_name": "Season 8 2017",
"id": 1436,
"league_id": 4125,
"modified_at": "2018-02-10T03:09:53Z",
"name": null,
"season": "8",
"slug": "dreamleague-8-2017",
"tier": null,
"winner_id": 1656,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2018-02-07T23:00:00Z",
"description": null,
"end_at": "2018-02-09T22:00:00Z",
"full_name": "CIS qualifier season 9 2018",
"id": 2056,
"league_id": 4125,
"modified_at": "2019-11-10T19:00:49Z",
"name": "CIS qualifier",
"season": "9",
"slug": "dreamleague-cis-qualifier-9-2018",
"tier": null,
"winner_id": 1649,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-02-09T23:00:00Z",
"description": null,
"end_at": "2018-02-11T22:00:00Z",
"full_name": "South America qualifier season 9 2018",
"id": 2055,
"league_id": 4125,
"modified_at": "2019-11-10T18:53:45Z",
"name": "South America qualifier",
"season": "9",
"slug": "dreamleague-south-america-qualifier-9-2018",
"tier": null,
"winner_id": 1819,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-02-12T23:00:00Z",
"description": null,
"end_at": "2018-02-14T19:00:00Z",
"full_name": "Southeast Asia qualifier season 9 2018",
"id": 2054,
"league_id": 4125,
"modified_at": "2019-11-10T18:43:13Z",
"name": "Southeast Asia qualifier",
"season": "9",
"slug": "dreamleague-southeast-asia-qualifier-9-2018",
"tier": null,
"winner_id": 1664,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-02-14T23:00:00Z",
"description": null,
"end_at": "2018-02-16T22:00:00Z",
"full_name": "Europe qualifier season 9 2018",
"id": 2053,
"league_id": 4125,
"modified_at": "2019-11-10T18:37:20Z",
"name": "Europe qualifier",
"season": "9",
"slug": "dreamleague-europe-qualifier-9-2018",
"tier": null,
"winner_id": 1654,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-02-16T23:00:00Z",
"description": null,
"end_at": "2018-02-19T07:00:00Z",
"full_name": "North America qualifier season 9 2018",
"id": 2052,
"league_id": 4125,
"modified_at": "2019-11-10T18:26:45Z",
"name": "North America qualifier",
"season": "9",
"slug": "dreamleague-north-america-qualifier-9-2018",
"tier": null,
"winner_id": 1803,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-02-27T23:00:00Z",
"description": null,
"end_at": "2018-02-28T11:00:00Z",
"full_name": "China qualifier season 9 2018",
"id": 2057,
"league_id": 4125,
"modified_at": "2019-11-10T19:06:21Z",
"name": "China qualifier",
"season": "9",
"slug": "dreamleague-china-qualifier-9-2018",
"tier": null,
"winner_id": 1652,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-03-21T00:00:00Z",
"description": null,
"end_at": "2018-03-25T00:00:00Z",
"full_name": "Season 9 2018",
"id": 1464,
"league_id": 4125,
"modified_at": "2018-03-15T16:31:50Z",
"name": null,
"season": "9",
"slug": "dreamleague-9-2018",
"tier": null,
"winner_id": 1656,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-09-24T22:00:00Z",
"description": null,
"end_at": "2018-09-26T22:00:00Z",
"full_name": "Minor: North America qualifier season 10 2018",
"id": 2003,
"league_id": 4125,
"modified_at": "2020-01-06T03:47:04Z",
"name": "Minor: North America qualifier",
"season": "10",
"slug": "dreamleague-minor-north-america-qualifier-10-2018",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2018
},
{
"begin_at": "2018-09-24T22:00:00Z",
"description": null,
"end_at": "2018-09-26T22:00:00Z",
"full_name": "Minor: South America qualifier season 10 2018",
"id": 2004,
"league_id": 4125,
"modified_at": "2020-01-06T03:46:50Z",
"name": "Minor: South America qualifier",
"season": "10",
"slug": "dreamleague-minor-south-america-qualifier-10-2018",
"tier": null,
"winner_id": 1659,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-09-24T22:00:00Z",
"description": null,
"end_at": "2018-09-26T22:00:00Z",
"full_name": "Minor: Europe qualifier season 10 2018",
"id": 2006,
"league_id": 4125,
"modified_at": "2020-01-06T03:47:09Z",
"name": "Minor: Europe qualifier",
"season": "10",
"slug": "dreamleague-minor-europe-qualifier-10-2018",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2018
},
{
"begin_at": "2018-09-24T22:00:00Z",
"description": null,
"end_at": "2018-09-26T22:00:00Z",
"full_name": "Minor: CIS qualifier season 10 2018",
"id": 2007,
"league_id": 4125,
"modified_at": "2020-01-06T03:47:19Z",
"name": "Minor: CIS qualifier",
"season": "10",
"slug": "dreamleague-minor-cis-qualifier-10-2018",
"tier": null,
"winner_id": 1699,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-09-24T22:00:00Z",
"description": null,
"end_at": "2018-09-26T22:00:00Z",
"full_name": "Minor: China qualifier season 10 2018",
"id": 2008,
"league_id": 4125,
"modified_at": "2020-01-06T03:47:14Z",
"name": "Minor: China qualifier",
"season": "10",
"slug": "dreamleague-minor-china-qualifier-10-2018",
"tier": null,
"winner_id": 3364,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-09-24T22:00:00Z",
"description": null,
"end_at": "2018-09-26T22:00:00Z",
"full_name": "Minor: Southeast Asia qualifier season 10 2018",
"id": 2009,
"league_id": 4125,
"modified_at": "2020-01-06T03:46:42Z",
"name": "Minor: Southeast Asia qualifier",
"season": "10",
"slug": "dreamleague-minor-southeast-asia-qualifier-10-2018",
"tier": null,
"winner_id": 3353,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-10-28T23:00:00Z",
"description": null,
"end_at": "2018-11-03T23:00:00Z",
"full_name": "Season 10 2018",
"id": 1604,
"league_id": 4125,
"modified_at": "2019-03-24T22:25:57Z",
"name": null,
"season": "10",
"slug": "dreamleague-10-2018",
"tier": null,
"winner_id": 3353,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2019-02-01T03:00:00Z",
"description": null,
"end_at": "2019-02-03T11:00:00Z",
"full_name": "Major: China qualifier season 11 2019",
"id": 1958,
"league_id": 4125,
"modified_at": "2019-11-07T14:28:42Z",
"name": "Major: China qualifier",
"season": "11",
"slug": "dreamleague-major-china-qualifier-11-2019",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2019
},
{
"begin_at": "2019-02-01T03:00:00Z",
"description": null,
"end_at": "2019-02-03T15:00:00Z",
"full_name": "Major: Southeast Asia qualifier season 11 2019",
"id": 1959,
"league_id": 4125,
"modified_at": "2019-11-07T14:28:27Z",
"name": "Major: Southeast Asia qualifier",
"season": "11",
"slug": "dreamleague-major-southeast-asia-qualifier-11-2019",
"tier": null,
"winner_id": 1664,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-02-01T08:00:00Z",
"description": null,
"end_at": "2019-02-03T18:00:00Z",
"full_name": "Major: CIS qualifier season 11 2019",
"id": 1957,
"league_id": 4125,
"modified_at": "2019-11-07T14:28:47Z",
"name": "Major: CIS qualifier",
"season": "11",
"slug": "dreamleague-major-cis-qualifier-11-2019",
"tier": null,
"winner_id": 1651,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-02-01T14:00:00Z",
"description": null,
"end_at": "2019-02-04T00:00:00Z",
"full_name": "Major: South America qualifier season 11 2019",
"id": 1956,
"league_id": 4125,
"modified_at": "2019-11-07T14:28:54Z",
"name": "Major: South America qualifier",
"season": "11",
"slug": "dreamleague-major-south-america-qualifier-11-2019",
"tier": null,
"winner_id": 125180,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-02-04T10:00:00Z",
"description": null,
"end_at": "2019-02-06T20:00:00Z",
"full_name": "Major: Europe qualifier season 11 2019",
"id": 1955,
"league_id": 4125,
"modified_at": "2019-11-07T14:28:59Z",
"name": "Major: Europe qualifier",
"season": "11",
"slug": "dreamleague-major-europe-qualifier-11-2019",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2019
},
{
"begin_at": "2019-02-04T19:00:00Z",
"description": null,
"end_at": "2019-02-07T01:30:00Z",
"full_name": "Major: North America qualifier season 11 2019",
"id": 1954,
"league_id": 4125,
"modified_at": "2019-11-07T14:29:04Z",
"name": "Major: North America qualifier",
"season": "11",
"slug": "dreamleague-major-north-america-qualifier-11-2019",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2019
},
{
"begin_at": "2019-03-13T23:00:00Z",
"description": null,
"end_at": "2019-03-23T23:00:00Z",
"full_name": "Major season 11 2019",
"id": 1634,
"league_id": 4125,
"modified_at": "2019-03-24T22:25:21Z",
"name": "Major",
"season": "11",
"slug": "dreamleague-major-11-2019",
"tier": null,
"winner_id": 1676,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-09-29T22:00:00Z",
"description": null,
"end_at": "2019-10-02T18:00:00Z",
"full_name": "Qualifier NA season 12 2019",
"id": 1859,
"league_id": 4125,
"modified_at": "2020-01-06T03:50:51Z",
"name": "Qualifier NA",
"season": "12",
"slug": "dreamleague-qualifier-na-2019",
"tier": null,
"winner_id": 126285,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-09-30T22:00:00Z",
"description": null,
"end_at": "2019-10-02T18:00:00Z",
"full_name": "Qualifier EU season 12 2019",
"id": 1860,
"league_id": 4125,
"modified_at": "2020-01-06T03:50:48Z",
"name": "Qualifier EU",
"season": "12",
"slug": "dreamleague-qualifier-eu-2019",
"tier": null,
"winner_id": 125845,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-10-17T22:00:00Z",
"description": null,
"end_at": "2019-10-21T18:00:00Z",
"full_name": "Main Event season 12 2019",
"id": 1857,
"league_id": 4125,
"modified_at": "2019-10-21T08:10:52Z",
"name": "Main Event",
"season": "12",
"slug": "dreamleague-main-event-12-2019",
"tier": null,
"winner_id": 1706,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-11-30T23:00:00Z",
"description": null,
"end_at": "2019-12-04T23:00:00Z",
"full_name": "Major: CIS Qualifier season 13 2019",
"id": 2304,
"league_id": 4125,
"modified_at": "2020-01-03T13:09:21Z",
"name": "Major: CIS Qualifier",
"season": "13",
"slug": "dreamleague-major-cis-qualifier-13-2019",
"tier": null,
"winner_id": 1651,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-11-30T23:00:00Z",
"description": null,
"end_at": "2019-12-04T23:00:00Z",
"full_name": "Major: EU Qualifier season 13 2019",
"id": 2308,
"league_id": 4125,
"modified_at": "2020-01-06T03:48:32Z",
"name": "Major: EU Qualifier",
"season": "13",
"slug": "dreamleague-major-eu-qualifier-2019",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2019
},
{
"begin_at": "2019-11-30T23:00:00Z",
"description": null,
"end_at": "2019-12-04T23:00:00Z",
"full_name": "Major: CN Qualifier season 13 2019",
"id": 2309,
"league_id": 4125,
"modified_at": "2020-01-06T03:48:34Z",
"name": "Major: CN Qualifier",
"season": "13",
"slug": "dreamleague-major-cn-qualifier-2019",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2019
},
{
"begin_at": "2019-11-30T23:00:00Z",
"description": null,
"end_at": "2019-12-04T23:00:00Z",
"full_name": "Major: SA Qualifier season 13 2019",
"id": 2310,
"league_id": 4125,
"modified_at": "2020-01-06T03:48:26Z",
"name": "Major: SA Qualifier",
"season": "13",
"slug": "dreamleague-major-sa-qualifier-2019",
"tier": null,
"winner_id": 1819,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-11-30T23:00:00Z",
"description": null,
"end_at": "2019-12-04T23:00:00Z",
"full_name": "Major: NA Qualifier season 13 2019",
"id": 2311,
"league_id": 4125,
"modified_at": "2020-01-06T03:48:29Z",
"name": "Major: NA Qualifier ",
"season": "13",
"slug": "dreamleague-major-na-qualifier-2019",
"tier": null,
"winner_id": 125180,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-11-30T23:00:00Z",
"description": null,
"end_at": "2019-12-04T23:00:00Z",
"full_name": "Major: SEA Qualifier season 13 2019",
"id": 2312,
"league_id": 4125,
"modified_at": "2020-01-06T03:48:20Z",
"name": "Major: SEA Qualifier",
"season": "13",
"slug": "dreamleague-major-sea-qualifier-2019",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2019
},
{
"begin_at": "2020-01-17T23:00:00Z",
"description": null,
"end_at": "2020-01-26T23:00:00Z",
"full_name": "Major 2020",
"id": 2383,
"league_id": 4125,
"modified_at": "2020-01-27T10:58:18Z",
"name": "Major",
"season": null,
"slug": "dreamleague-major-2020",
"tier": null,
"winner_id": 1656,
"winner_type": "Team",
"year": 2020
},
{
"begin_at": "2021-01-07T16:00:00Z",
"description": null,
"end_at": "2021-01-10T21:06:00Z",
"full_name": "EU DPC Decider Tournament season 14 2021",
"id": 3228,
"league_id": 4125,
"modified_at": "2021-01-11T09:27:48Z",
"name": "EU DPC Decider Tournament",
"season": "14",
"slug": "dreamleague-eu-dpc-decider-tournament-14-2021",
"tier": "c",
"winner_id": null,
"winner_type": null,
"year": 2021
},
{
"begin_at": "2021-01-18T17:00:00Z",
"description": null,
"end_at": "2021-02-27T15:00:00Z",
"full_name": "DPC EU: Lower Division season 14 2021",
"id": 3263,
"league_id": 4125,
"modified_at": "2021-02-26T08:20:45Z",
"name": "DPC EU: Lower Division",
"season": "14",
"slug": "dreamleague-dpc-eu-lower-division-14-2021",
"tier": "b",
"winner_id": null,
"winner_type": null,
"year": 2021
},
{
"begin_at": "2021-01-19T17:00:00Z",
"description": null,
"end_at": "2021-02-28T17:47:00Z",
"full_name": "DPC EU: Upper Division season 14 2021",
"id": 3264,
"league_id": 4125,
"modified_at": "2021-02-28T19:22:05Z",
"name": "DPC EU: Upper Division",
"season": "14",
"slug": "dreamleague-dpc-eu-upper-division-14-2021",
"tier": "a",
"winner_id": 1656,
"winner_type": "Team",
"year": 2021
},
{
"begin_at": "2021-03-18T17:00:00Z",
"description": null,
"end_at": "2021-03-22T00:20:00Z",
"full_name": "DPC EU Closed Qualifier season 15 2021",
"id": 3448,
"league_id": 4125,
"modified_at": "2021-03-22T17:27:48Z",
"name": "DPC EU Closed Qualifier",
"season": "15",
"slug": "dreamleague-dpc-eu-closed-qualifier-15-2021",
"tier": "c",
"winner_id": null,
"winner_type": null,
"year": 2021
},
{
"begin_at": "2021-04-13T13:00:00Z",
"description": null,
"end_at": "2021-05-19T16:00:00Z",
"full_name": "DPC EU: Lower Division season 15 2021",
"id": 3519,
"league_id": 4125,
"modified_at": "2021-04-22T10:27:18Z",
"name": "DPC EU: Lower Division",
"season": "15",
"slug": "dreamleague-dpc-eu-lower-division-15-2021",
"tier": "b",
"winner_id": null,
"winner_type": null,
"year": 2021
},
{
"begin_at": "2021-04-13T16:00:00Z",
"description": null,
"end_at": "2021-05-19T19:00:00Z",
"full_name": "DPC EU: Upper Division season 15 2021",
"id": 3518,
"league_id": 4125,
"modified_at": "2021-04-08T18:39:21Z",
"name": "DPC EU: Upper Division",
"season": "15",
"slug": "dreamleague-dpc-eu-upper-division-15-2021",
"tier": "a",
"winner_id": null,
"winner_type": null,
"year": 2021
}
],
"slug": "dreamleague",
"url": null
},
{
"id": 4126,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4126/800px-Northern_Arena_BEAT_Invitational_2016.png",
"modified_at": "2021-04-08T19:28:14Z",
"name": "BEAT Invitational",
"series": [
{
"begin_at": "2016-09-18T22:00:00Z",
"description": null,
"end_at": "2016-09-29T22:00:00Z",
"full_name": "Northern Arena: Closed qualifier 2016",
"id": 2205,
"league_id": 4126,
"modified_at": "2019-11-20T22:30:07Z",
"name": "Northern Arena: Closed qualifier",
"season": null,
"slug": "dota-2-beat-invitational-northern-arena-closed-qualifier-2016",
"tier": null,
"winner_id": 1724,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2016-11-09T23:00:00Z",
"description": null,
"end_at": "2016-11-13T22:00:00Z",
"full_name": "Northern Arena 2016",
"id": 1438,
"league_id": 4126,
"modified_at": "2020-03-08T09:57:12Z",
"name": "Northern Arena",
"season": null,
"slug": "dota-2-beat-invitational-2016",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2016
},
{
"begin_at": "2017-05-15T22:00:00Z",
"description": null,
"end_at": "2017-05-25T21:00:00Z",
"full_name": "Season 8 2016",
"id": 1437,
"league_id": 4126,
"modified_at": "2020-03-08T09:53:23Z",
"name": null,
"season": "8",
"slug": "dota-2-beat-invitational-8-2016",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2016
},
{
"begin_at": "2020-04-28T20:00:00Z",
"description": null,
"end_at": "2020-05-01T03:52:00Z",
"full_name": "Season 9 2020",
"id": 2650,
"league_id": 4126,
"modified_at": "2020-05-02T23:07:14Z",
"name": null,
"season": "9",
"slug": "dota-2-beat-invitational-9-2020",
"tier": null,
"winner_id": 127331,
"winner_type": "Team",
"year": 2020
}
],
"slug": "dota-2-beat-invitational",
"url": null
},
{
"id": 4127,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4127/Asus_Rog_Masters.png",
"modified_at": "2018-12-12T11:04:52Z",
"name": "ROG Masters",
"series": [
{
"begin_at": "2016-09-25T08:00:00Z",
"description": null,
"end_at": "2016-09-25T16:00:00Z",
"full_name": "Southeast Asia qualifier 2016",
"id": 2181,
"league_id": 4127,
"modified_at": "2019-11-18T23:59:14Z",
"name": "Southeast Asia qualifier",
"season": null,
"slug": "rog-masters-southeast-asia-qualifier-2016",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2016
},
{
"begin_at": "2016-10-02T22:00:00Z",
"description": null,
"end_at": "2016-10-09T16:30:00Z",
"full_name": "Rest of Asia qualifier 2016",
"id": 2182,
"league_id": 4127,
"modified_at": "2019-11-19T00:04:49Z",
"name": "Rest of Asia qualifier",
"season": null,
"slug": "rog-masters-rest-of-asia-qualifier-2016",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2016
},
{
"begin_at": "2016-11-09T23:00:00Z",
"description": null,
"end_at": "2016-11-13T22:00:00Z",
"full_name": "2016",
"id": 1439,
"league_id": 4127,
"modified_at": "2020-03-08T09:57:58Z",
"name": null,
"season": null,
"slug": "rog-masters-2016",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2016
}
],
"slug": "rog-masters",
"url": null
},
{
"id": 4128,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4128/800px-NanYang_Championships.png",
"modified_at": "2020-06-05T20:28:18Z",
"name": "Nanyang Championships",
"series": [
{
"begin_at": "2016-05-11T22:00:00Z",
"description": null,
"end_at": "2016-05-16T22:00:00Z",
"full_name": "American qualifier season 2 2016",
"id": 1897,
"league_id": 4128,
"modified_at": "2019-11-07T14:39:18Z",
"name": "American qualifier",
"season": "2",
"slug": "nanyang-championships-american-qualifier-2-2016",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2016
},
{
"begin_at": "2016-05-18T22:00:00Z",
"description": null,
"end_at": "2016-06-16T22:00:00Z",
"full_name": "Southeast Asia qualifier season 2 2016",
"id": 1899,
"league_id": 4128,
"modified_at": "2019-11-07T14:39:05Z",
"name": "Southeast Asia qualifier",
"season": "2",
"slug": "nanyang-championships-southeast-asia-qualifier-2-2016",
"tier": null,
"winner_id": 1751,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2016-05-20T22:00:00Z",
"description": null,
"end_at": "2016-05-27T22:00:00Z",
"full_name": "European qualifier season 2 2016",
"id": 1900,
"league_id": 4128,
"modified_at": "2019-11-07T14:39:36Z",
"name": "European qualifier",
"season": "2",
"slug": "nanyang-championships-european-qualifier-2-2016",
"tier": null,
"winner_id": null,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2016-06-16T22:00:00Z",
"description": null,
"end_at": "2016-07-03T22:00:00Z",
"full_name": "Chinese qualifier season 2 2016",
"id": 1898,
"league_id": 4128,
"modified_at": "2019-11-07T14:39:11Z",
"name": "Chinese qualifier",
"season": "2",
"slug": "nanyang-championships-chinese-qualifier-2-2016",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2016
},
{
"begin_at": "2016-07-05T22:00:00Z",
"description": null,
"end_at": "2016-07-09T22:00:00Z",
"full_name": "Season 2 2016",
"id": 1440,
"league_id": 4128,
"modified_at": "2018-02-10T03:09:54Z",
"name": null,
"season": "2",
"slug": "nanyang-championships-2-2016",
"tier": null,
"winner_id": 1652,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2016-07-05T22:00:00Z",
"description": null,
"end_at": "2016-07-09T22:00:00Z",
"full_name": "Cruise Cup Chinese Qualifier 2016",
"id": 1896,
"league_id": 4128,
"modified_at": "2019-10-28T14:11:21Z",
"name": "Cruise Cup Chinese Qualifier",
"season": null,
"slug": "nanyang-championships-cruise-cup-chinese-qualifier-2016",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2016
},
{
"begin_at": "2016-09-21T22:00:00Z",
"description": null,
"end_at": "2016-10-05T13:00:00Z",
"full_name": "Nanyang Cruise Cup 2016",
"id": 1472,
"league_id": 4128,
"modified_at": "2018-10-15T18:26:49Z",
"name": "Nanyang Cruise Cup",
"season": null,
"slug": "nanyang-championships-nanyang-cruise-cup-2016",
"tier": null,
"winner_id": 1720,
"winner_type": "Team",
"year": 2016
}
],
"slug": "nanyang-championships",
"url": null
},
{
"id": 4129,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4129/SD2O.png",
"modified_at": "2018-12-12T11:04:50Z",
"name": "Shanghai Open",
"series": [
{
"begin_at": "2016-01-02T23:00:00Z",
"description": null,
"end_at": "2016-01-03T23:00:00Z",
"full_name": "Season 1 2016",
"id": 1442,
"league_id": 4129,
"modified_at": "2020-03-08T10:02:20Z",
"name": null,
"season": "1",
"slug": "shanghai-dota-2-open-1-2016",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2016
},
{
"begin_at": "2016-09-19T22:00:00Z",
"description": null,
"end_at": "2016-10-07T22:00:00Z",
"full_name": "Season 2 2016",
"id": 1441,
"league_id": 4129,
"modified_at": "2018-02-10T03:09:54Z",
"name": null,
"season": "2",
"slug": "shanghai-dota-2-open-2-2016",
"tier": null,
"winner_id": 1652,
"winner_type": "Team",
"year": 2016
}
],
"slug": "shanghai-dota-2-open",
"url": null
},
{
"id": 4130,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4130/Weplaytv_large.png",
"modified_at": "2020-06-05T20:28:18Z",
"name": "WePlay",
"series": [
{
"begin_at": "2016-01-17T23:00:00Z",
"description": null,
"end_at": "2016-03-15T23:00:00Z",
"full_name": "Southeast Asia qualifier season 3 2016",
"id": 2235,
"league_id": 4130,
"modified_at": "2019-11-22T09:24:50Z",
"name": "Southeast Asia qualifier",
"season": "3",
"slug": "weplay-league-southeast-asia-qualifier-3-2016",
"tier": null,
"winner_id": 1664,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2016-01-17T23:00:00Z",
"description": null,
"end_at": "2016-03-16T23:00:00Z",
"full_name": "America qualifier season 3 2016",
"id": 2236,
"league_id": 4130,
"modified_at": "2019-11-22T09:29:42Z",
"name": "America qualifier",
"season": "3",
"slug": "weplay-league-america-qualifier-3-2016",
"tier": null,
"winner_id": 1700,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2016-01-17T23:00:00Z",
"description": null,
"end_at": "2016-03-14T23:00:00Z",
"full_name": "CIS qualifier season 3 2016",
"id": 2237,
"league_id": 4130,
"modified_at": "2019-11-22T09:30:49Z",
"name": "CIS qualifier",
"season": "3",
"slug": "weplay-league-cis-qualifier-3-2016",
"tier": null,
"winner_id": 1671,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2016-01-17T23:00:00Z",
"description": null,
"end_at": "2016-03-19T23:00:00Z",
"full_name": "Europe qualifier season 3 2016",
"id": 2238,
"league_id": 4130,
"modified_at": "2019-11-22T09:31:41Z",
"name": "Europe qualifier",
"season": "3",
"slug": "weplay-league-europe-qualifier-3-2016",
"tier": null,
"winner_id": 1647,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2016-04-27T22:00:00Z",
"description": null,
"end_at": "2016-04-30T22:00:00Z",
"full_name": "Season 3 2016",
"id": 1443,
"league_id": 4130,
"modified_at": "2018-02-10T03:09:54Z",
"name": null,
"season": "3",
"slug": "weplay-league-3-2016",
"tier": null,
"winner_id": 1721,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2018-09-27T22:00:00Z",
"description": null,
"end_at": "2018-10-03T18:00:00Z",
"full_name": "Reshuffle Madness 2018",
"id": 1638,
"league_id": 4130,
"modified_at": "2018-12-21T09:33:46Z",
"name": "Reshuffle Madness",
"season": "",
"slug": "weplay-league-reshuffle-madness-2018",
"tier": null,
"winner_id": 1706,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-12-26T23:00:00Z",
"description": null,
"end_at": "2019-01-04T23:00:00Z",
"full_name": "Winter Madness 2018",
"id": 1680,
"league_id": 4130,
"modified_at": "2019-01-05T21:30:41Z",
"name": "Winter Madness",
"season": "",
"slug": "weplay-league-winter-madness-winter-2018",
"tier": null,
"winner_id": 3359,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2019-02-08T23:00:00Z",
"description": null,
"end_at": "2019-02-15T23:00:00Z",
"full_name": "Valentine Madness 2019",
"id": 1717,
"league_id": 4130,
"modified_at": "2019-02-16T22:02:57Z",
"name": "Valentine Madness",
"season": null,
"slug": "weplay-league-valentine-madness-2019",
"tier": null,
"winner_id": 3359,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-02-25T23:00:00Z",
"description": null,
"end_at": "2019-03-03T19:00:00Z",
"full_name": "Tug of War: Radiant 2019",
"id": 1753,
"league_id": 4130,
"modified_at": "2019-03-02T22:27:49Z",
"name": "Tug of War: Radiant",
"season": null,
"slug": "weplay-league-tug-of-war-radiant-2019",
"tier": null,
"winner_id": 3356,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-12-04T23:00:00Z",
"description": null,
"end_at": "2019-12-07T03:00:00Z",
"full_name": "Bukovel Minor: Qualifier NA 2020",
"id": 2208,
"league_id": 4130,
"modified_at": "2020-01-03T12:58:49Z",
"name": "Bukovel Minor: Qualifier NA",
"season": null,
"slug": "weplay-league-bukovel-minor-qualifier-na-2019",
"tier": null,
"winner_id": 3356,
"winner_type": "Team",
"year": 2020
},
{
"begin_at": "2019-12-04T23:00:00Z",
"description": null,
"end_at": "2019-12-07T03:00:00Z",
"full_name": "Bukovel Minor: Qualifier SA 2020",
"id": 2209,
"league_id": 4130,
"modified_at": "2020-01-16T13:37:03Z",
"name": "Bukovel Minor: Qualifier SA",
"season": null,
"slug": "weplay-league-bukovel-minor-qualifier-sa-2019",
"tier": null,
"winner_id": 126093,
"winner_type": "Team",
"year": 2020
},
{
"begin_at": "2019-12-04T23:00:00Z",
"description": null,
"end_at": "2019-12-07T03:00:00Z",
"full_name": "Bukovel Minor: Qualifier EU 2020",
"id": 2210,
"league_id": 4130,
"modified_at": "2020-01-16T13:37:17Z",
"name": "Bukovel Minor: Qualifier EU",
"season": null,
"slug": "weplay-league-bukovel-minor-qualifier-eu-2019",
"tier": null,
"winner_id": 126522,
"winner_type": "Team",
"year": 2020
},
{
"begin_at": "2019-12-04T23:00:00Z",
"description": null,
"end_at": "2019-12-07T03:00:00Z",
"full_name": "Bukovel Minor: Qualifier CIS 2020",
"id": 2211,
"league_id": 4130,
"modified_at": "2020-01-16T13:37:34Z",
"name": "Bukovel Minor: Qualifier CIS",
"season": null,
"slug": "weplay-league-bukovel-minor-qualifier-cis-2019",
"tier": null,
"winner_id": 3359,
"winner_type": "Team",
"year": 2020
},
{
"begin_at": "2019-12-04T23:00:00Z",
"description": null,
"end_at": "2019-12-07T03:00:00Z",
"full_name": "Bukovel Minor: Qualifier CN 2020",
"id": 2212,
"league_id": 4130,
"modified_at": "2020-01-16T13:37:23Z",
"name": "Bukovel Minor: Qualifier CN",
"season": null,
"slug": "weplay-league-bukovel-minor-qualifier-cn-2019",
"tier": null,
"winner_id": 3364,
"winner_type": "Team",
"year": 2020
},
{
"begin_at": "2019-12-04T23:00:00Z",
"description": null,
"end_at": "2019-12-07T03:00:00Z",
"full_name": "Bukovel Minor: Qualifier SEA 2020",
"id": 2213,
"league_id": 4130,
"modified_at": "2019-12-09T12:16:18Z",
"name": "Bukovel Minor: Qualifier SEA",
"season": null,
"slug": "weplay-league-bukovel-minor-qualifier-sea-2019",
"tier": null,
"winner_id": 1714,
"winner_type": "Team",
"year": 2020
},
{
"begin_at": "2020-01-08T23:00:00Z",
"description": null,
"end_at": "2020-01-13T04:00:00Z",
"full_name": "Bukovel Minor 2020",
"id": 2214,
"league_id": 4130,
"modified_at": "2020-02-12T14:11:57Z",
"name": "Bukovel Minor",
"season": null,
"slug": "weplay-league-bukovel-minor-2019",
"tier": null,
"winner_id": 126522,
"winner_type": "Team",
"year": 2020
},
{
"begin_at": "2020-02-18T23:00:00Z",
"description": null,
"end_at": "2020-02-23T23:00:00Z",
"full_name": "Dota 2 Tug of War: Mad Moon 2020",
"id": 2438,
"league_id": 4130,
"modified_at": "2020-02-24T08:59:12Z",
"name": "Dota 2 Tug of War: Mad Moon",
"season": null,
"slug": "weplay-league-dota-2-tug-of-war-mad-moon-2020",
"tier": null,
"winner_id": 126522,
"winner_type": "Team",
"year": 2020
},
{
"begin_at": "2020-03-20T11:00:00Z",
"description": null,
"end_at": "2020-03-26T19:56:00Z",
"full_name": "WeSave! Charity Play 2020",
"id": 2552,
"league_id": 4130,
"modified_at": "2020-04-04T06:34:55Z",
"name": "WeSave! Charity Play",
"season": null,
"slug": "weplay-league-wesave-charity-play-2020",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2020
},
{
"begin_at": "2020-04-19T22:00:00Z",
"description": null,
"end_at": "2020-04-22T15:46:00Z",
"full_name": "Pushka League: CIS Qualifier 2020",
"id": 2597,
"league_id": 4130,
"modified_at": "2020-04-22T15:46:44Z",
"name": "Pushka League: CIS Qualifier",
"season": null,
"slug": "weplay-league-pushka-league-cis-qualifier-2020",
"tier": null,
"winner_id": 127264,
"winner_type": "Team",
"year": 2020
},
{
"begin_at": "2020-04-19T22:00:00Z",
"description": null,
"end_at": "2020-04-22T21:00:00Z",
"full_name": "Pushka League: Europe Qualifier 2020",
"id": 2598,
"league_id": 4130,
"modified_at": "2020-04-10T20:12:16Z",
"name": "Pushka League: Europe Qualifier",
"season": " ",
"slug": "weplay-league-pushka-league-europe-qualifier-2020",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2020
},
{
"begin_at": "2020-04-22T22:00:00Z",
"description": null,
"end_at": "2020-05-11T22:00:00Z",
"full_name": "Pushka League Division 1 season 1 2020",
"id": 2604,
"league_id": 4130,
"modified_at": "2020-04-13T07:04:42Z",
"name": "Pushka League Division 1",
"season": "1",
"slug": "weplay-league-pushka-league-division-1-1-2020",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2020
},
{
"begin_at": "2020-04-22T22:00:00Z",
"description": null,
"end_at": "2020-05-11T19:00:00Z",
"full_name": "Pushka League Division 2 season 1 2020",
"id": 2605,
"league_id": 4130,
"modified_at": "2020-04-13T07:20:46Z",
"name": "Pushka League Division 2",
"season": "1",
"slug": "weplay-league-pushka-league-division-2-1-2020",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2020
}
],
"slug": "weplay-league",
"url": null
},
{
"id": 4131,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4131/Global_eSports_cup_logo.png",
"modified_at": "2021-04-08T17:20:25Z",
"name": "Global eSports Cup LAN",
"series": [
{
"begin_at": "2015-11-29T23:00:00Z",
"description": null,
"end_at": "2015-12-06T22:00:00Z",
"full_name": "Finals season 1 2015",
"id": 1445,
"league_id": 4131,
"modified_at": "2020-03-08T10:04:10Z",
"name": "Finals",
"season": "1",
"slug": "global-esports-cup-lan-1-2015",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2015
}
],
"slug": "global-esports-cup-lan",
"url": null
},
{
"id": 4133,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4133/TFM.png",
"modified_at": "2021-04-08T17:28:46Z",
"name": "The Final Match",
"series": [
{
"begin_at": "2017-05-05T22:00:00Z",
"description": null,
"end_at": "2017-05-06T22:00:00Z",
"full_name": "Peru Qualifier 1 2017",
"id": 1894,
"league_id": 4133,
"modified_at": "2019-10-28T12:33:59Z",
"name": "Peru Qualifier 1",
"season": null,
"slug": "the-final-match-peru-qualifier-1-2019",
"tier": null,
"winner_id": 1896,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2017-06-09T22:00:00Z",
"description": null,
"end_at": "2017-06-10T22:00:00Z",
"full_name": "Peru Qualifier 2 2017",
"id": 1895,
"league_id": 4133,
"modified_at": "2019-10-28T12:45:37Z",
"name": "Peru Qualifier 2",
"season": null,
"slug": "the-final-match-peru-qualifier-2-2017",
"tier": null,
"winner_id": 1700,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2017-07-06T22:00:00Z",
"description": null,
"end_at": "2017-07-08T22:00:00Z",
"full_name": "2017",
"id": 1449,
"league_id": 4133,
"modified_at": "2019-10-28T12:45:47Z",
"name": null,
"season": null,
"slug": "the-final-match-2017",
"tier": null,
"winner_id": 1706,
"winner_type": "Team",
"year": 2017
}
],
"slug": "the-final-match",
"url": null
},
{
"id": 4134,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4134/Blood_in_the_Streets.png",
"modified_at": "2018-10-24T13:05:18Z",
"name": "Blood In The Streets",
"series": [
{
"begin_at": "2017-06-11T22:00:00Z",
"description": null,
"end_at": "2017-07-22T22:00:00Z",
"full_name": "2017",
"id": 1450,
"league_id": 4134,
"modified_at": "2018-02-10T03:09:55Z",
"name": null,
"season": null,
"slug": "blood-in-the-streets-2017",
"tier": null,
"winner_id": 3359,
"winner_type": "Team",
"year": 2017
}
],
"slug": "blood-in-the-streets",
"url": null
},
{
"id": 4136,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4136/320px-Betway_Arena_King_of_the_Hill.png",
"modified_at": "2021-04-08T17:27:07Z",
"name": "Betway Arena KOTH",
"series": [
{
"begin_at": "2017-03-02T23:00:00Z",
"description": null,
"end_at": "2017-03-03T04:00:00Z",
"full_name": "KotH Season 1 season 1 2017",
"id": 1470,
"league_id": 4136,
"modified_at": "2018-03-27T15:24:26Z",
"name": "KotH Season 1",
"season": "1",
"slug": "dota-2-betway-arena-koth-koth-season-1-1-2017",
"tier": null,
"winner_id": 1653,
"winner_type": "Team",
"year": 2017
}
],
"slug": "dota-2-betway-arena-koth",
"url": null
},
{
"id": 4137,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4137/maxresdefault.png",
"modified_at": "2021-04-08T17:41:42Z",
"name": "Elimination Mode",
"series": [
{
"begin_at": "2016-10-31T23:00:00Z",
"description": null,
"end_at": "2016-11-22T23:00:00Z",
"full_name": "EliminationMode 2.0 2016",
"id": 1477,
"league_id": 4137,
"modified_at": "2018-04-11T13:28:44Z",
"name": "EliminationMode",
"season": "2.0",
"slug": "dota-2-elimination-mode-eliminationmode-2-0-2016",
"tier": null,
"winner_id": 1654,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2017-02-10T23:00:00Z",
"description": null,
"end_at": "2017-02-16T23:00:00Z",
"full_name": "EliminationMode 3.0 2017",
"id": 1476,
"league_id": 4137,
"modified_at": "2018-04-11T13:12:05Z",
"name": "EliminationMode",
"season": "3.0",
"slug": "dota-2-elimination-mode-eliminationmode-3-0-2017",
"tier": null,
"winner_id": 1654,
"winner_type": "Team",
"year": 2017
}
],
"slug": "dota-2-elimination-mode",
"url": "http://liquipedia.net/dota2/Elimination_Mode/3"
},
{
"id": 4138,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4138/MrCatInvitational.png",
"modified_at": "2019-01-31T12:26:33Z",
"name": "Mr. Cat Invitational",
"series": [
{
"begin_at": "2016-07-10T22:00:00Z",
"description": null,
"end_at": "2016-07-28T22:00:00Z",
"full_name": "Cat Invitational SEA 2016",
"id": 1478,
"league_id": 4138,
"modified_at": "2018-04-11T20:03:41Z",
"name": "Cat Invitational",
"season": "SEA",
"slug": "dota-2-mr-cat-invitational-cat-invitational-sea-2016",
"tier": null,
"winner_id": 1677,
"winner_type": "Team",
"year": 2016
}
],
"slug": "dota-2-mr-cat-invitational",
"url": "http://liquipedia.net/dota2/Mr._Cat_Invitational"
},
{
"id": 4166,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4166/PVP_Esports_Championship_Logo.png",
"modified_at": "2019-02-08T23:03:55Z",
"name": "PVP Esports Championship",
"series": [
{
"begin_at": "2018-09-09T02:00:00Z",
"description": null,
"end_at": "2018-09-09T07:00:00Z",
"full_name": "Australia qualifier 2018",
"id": 1992,
"league_id": 4166,
"modified_at": "2019-11-08T07:48:59Z",
"name": "Australia qualifier",
"season": null,
"slug": "dota-2-pvp-esports-championship-australia-qualifier-2018",
"tier": null,
"winner_id": 3406,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-09-15T03:00:00Z",
"description": null,
"end_at": "2018-09-16T09:00:00Z",
"full_name": "Philippines qualifier 2018",
"id": 1991,
"league_id": 4166,
"modified_at": "2019-11-08T07:45:43Z",
"name": "Philippines qualifier",
"season": null,
"slug": "dota-2-pvp-esports-championship-philippines-qualifier-2018",
"tier": null,
"winner_id": 2640,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-09-16T05:00:00Z",
"description": null,
"end_at": "2018-09-16T07:00:00Z",
"full_name": "Thailand qualifier 2018",
"id": 1993,
"league_id": 4166,
"modified_at": "2019-11-08T07:51:20Z",
"name": "Thailand qualifier",
"season": null,
"slug": "dota-2-pvp-esports-championship-thailand-qualifier-2018",
"tier": null,
"winner_id": 3400,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-09-22T02:00:00Z",
"description": null,
"end_at": "2018-09-23T12:00:00Z",
"full_name": "Singapore qualifier 2018",
"id": 1990,
"league_id": 4166,
"modified_at": "2019-11-08T07:43:09Z",
"name": "Singapore qualifier",
"season": null,
"slug": "dota-2-pvp-esports-championship-singapore-qualifier-2018",
"tier": null,
"winner_id": 3398,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-10-02T22:00:00Z",
"description": null,
"end_at": "2018-10-06T22:00:00Z",
"full_name": "2018",
"id": 1627,
"league_id": 4166,
"modified_at": "2018-10-10T09:13:04Z",
"name": "",
"season": null,
"slug": "dota-2-pvp-esports-championship-2018",
"tier": null,
"winner_id": 1656,
"winner_type": "Team",
"year": 2018
}
],
"slug": "dota-2-pvp-esports-championship",
"url": "http://www.pvpesports.gg/"
},
{
"id": 4182,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4182/600px-H-Cup.png",
"modified_at": "2021-04-08T17:22:15Z",
"name": "H-Cup",
"series": [
{
"begin_at": "2016-03-07T22:00:00Z",
"description": null,
"end_at": "2016-03-12T22:00:00Z",
"full_name": "Season 1 2016",
"id": 1661,
"league_id": 4182,
"modified_at": "2018-11-29T15:20:51Z",
"name": null,
"season": "1",
"slug": "dota-2-h-cup-1-2016",
"tier": null,
"winner_id": 1722,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2016-03-14T22:00:00Z",
"description": null,
"end_at": "2016-03-19T22:00:00Z",
"full_name": "Season 2 2016",
"id": 1660,
"league_id": 4182,
"modified_at": "2018-11-29T15:20:41Z",
"name": null,
"season": "2",
"slug": "dota-2-h-cup-2-2016",
"tier": null,
"winner_id": 1722,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2016-03-21T22:00:00Z",
"description": null,
"end_at": "2016-03-26T22:00:00Z",
"full_name": "Season 3 2016",
"id": 1659,
"league_id": 4182,
"modified_at": "2018-11-29T15:20:26Z",
"name": null,
"season": "3",
"slug": "dota-2-h-cup-3-2016",
"tier": null,
"winner_id": 1722,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2016-03-28T22:00:00Z",
"description": null,
"end_at": "2016-04-03T22:00:00Z",
"full_name": "Season 4 2016",
"id": 1658,
"league_id": 4182,
"modified_at": "2018-11-29T15:20:11Z",
"name": null,
"season": "4",
"slug": "dota-2-h-cup-4-2016",
"tier": null,
"winner_id": 1722,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2016-04-04T22:00:00Z",
"description": null,
"end_at": "2016-04-09T22:00:00Z",
"full_name": "Season 5 2016",
"id": 1657,
"league_id": 4182,
"modified_at": "2018-11-29T15:20:02Z",
"name": null,
"season": "5",
"slug": "dota-2-h-cup-5-2016",
"tier": null,
"winner_id": 1652,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2016-04-18T22:00:00Z",
"description": null,
"end_at": "2016-04-25T22:00:00Z",
"full_name": "Season 6 2016",
"id": 1656,
"league_id": 4182,
"modified_at": "2018-11-29T15:19:53Z",
"name": null,
"season": "6",
"slug": "dota-2-h-cup-6-2016",
"tier": null,
"winner_id": 1652,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2016-06-13T22:00:00Z",
"description": null,
"end_at": "2016-06-18T22:00:00Z",
"full_name": "Season 7 2016",
"id": 1655,
"league_id": 4182,
"modified_at": "2018-11-29T15:19:43Z",
"name": null,
"season": "7",
"slug": "dota-2-h-cup-7-2016",
"tier": null,
"winner_id": 1650,
"winner_type": "Team",
"year": 2016
},
{
"begin_at": "2017-12-11T23:00:00Z",
"description": null,
"end_at": "2017-12-16T23:00:00Z",
"full_name": "Season 8 2017",
"id": 1654,
"league_id": 4182,
"modified_at": "2018-11-29T15:19:32Z",
"name": null,
"season": "8",
"slug": "dota-2-h-cup-8-2017",
"tier": null,
"winner_id": 1804,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2017-12-25T23:00:00Z",
"description": null,
"end_at": "2017-12-30T23:00:00Z",
"full_name": "Season 9 2017",
"id": 1653,
"league_id": 4182,
"modified_at": "2018-11-29T15:19:20Z",
"name": null,
"season": "9",
"slug": "dota-2-h-cup-9-2016",
"tier": null,
"winner_id": 1676,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2018-11-19T23:00:00Z",
"description": null,
"end_at": "2018-11-24T23:00:00Z",
"full_name": "Season 10 2018",
"id": 1652,
"league_id": 4182,
"modified_at": "2018-11-29T15:19:09Z",
"name": null,
"season": "10",
"slug": "dota-2-h-cup-10-2018",
"tier": null,
"winner_id": 3450,
"winner_type": "Team",
"year": 2018
}
],
"slug": "dota-2-h-cup",
"url": null
},
{
"id": 4185,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4185/AMD_Dota_2_Pro_Series.png",
"modified_at": "2019-07-08T09:02:07Z",
"name": "CEG Dota2 Pro Series",
"series": [
{
"begin_at": "2018-12-06T23:00:00Z",
"description": null,
"end_at": "2018-12-08T23:00:00Z",
"full_name": "2018",
"id": 1671,
"league_id": 4185,
"modified_at": "2018-12-09T12:31:56Z",
"name": null,
"season": null,
"slug": "dota-2-ceg-dota2-pro-series-2018",
"tier": null,
"winner_id": 1677,
"winner_type": "Team",
"year": 2018
}
],
"slug": "dota-2-ceg-dota2-pro-series",
"url": "https://convictus.com.au/"
},
{
"id": 4186,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4186/China_Dota2_Winter_Cup_2018_Qi.png",
"modified_at": "2019-02-08T23:03:55Z",
"name": "China Dota2 Winter Cup",
"series": [
{
"begin_at": "2018-12-12T23:00:00Z",
"description": null,
"end_at": "2018-12-14T23:00:00Z",
"full_name": "2018",
"id": 1672,
"league_id": 4186,
"modified_at": "2018-12-15T12:46:03Z",
"name": "",
"season": null,
"slug": "dota-2-china-dota2-winter-cup-2018",
"tier": null,
"winner_id": 3450,
"winner_type": "Team",
"year": 2018
}
],
"slug": "dota-2-china-dota2-winter-cup",
"url": "http://www.qi-league.com/"
},
{
"id": 4189,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4189/600px-Sanya_Dota2_New-Stars_Play_2018.png",
"modified_at": "2021-04-08T17:30:17Z",
"name": "Sanya Dota2 New-Stars Play",
"series": [
{
"begin_at": "2018-12-21T23:00:00Z",
"description": null,
"end_at": "2018-12-22T23:00:00Z",
"full_name": "2018",
"id": 1681,
"league_id": 4189,
"modified_at": "2018-12-23T12:44:19Z",
"name": null,
"season": null,
"slug": "dota-2-sanya-dota2-new-stars-play-2018",
"tier": null,
"winner_id": 1676,
"winner_type": "Team",
"year": 2018
}
],
"slug": "dota-2-sanya-dota2-new-stars-play",
"url": "2018"
},
{
"id": 4191,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4191/600px-ANGGAME_China_vs_SEA_logo.png",
"modified_at": "2021-04-08T18:03:37Z",
"name": "ANGGAME China vs SEA",
"series": [
{
"begin_at": "2018-12-30T23:00:00Z",
"description": null,
"end_at": "2019-01-12T23:00:00Z",
"full_name": "Season 3 2018",
"id": 1684,
"league_id": 4191,
"modified_at": "2019-01-18T14:59:46Z",
"name": null,
"season": "3",
"slug": "dota-2-anggame-china-vs-sea-3-2018",
"tier": null,
"winner_id": 3474,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2018-12-30T23:00:00Z",
"description": null,
"end_at": "2019-01-06T23:00:00Z",
"full_name": "China qualifier 2018",
"id": 2085,
"league_id": 4191,
"modified_at": "2019-11-12T14:05:00Z",
"name": "China qualifier",
"season": null,
"slug": "dota-2-anggame-china-vs-sea-china-qualifier-2018",
"tier": null,
"winner_id": 3365,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2019-01-06T23:00:00Z",
"description": null,
"end_at": "2019-01-12T23:00:00Z",
"full_name": "Sea qualifier 2018",
"id": 2086,
"league_id": 4191,
"modified_at": "2019-11-12T14:06:52Z",
"name": "Sea qualifier",
"season": null,
"slug": "dota-2-anggame-china-vs-sea-sea-qualifier-2018",
"tier": null,
"winner_id": 2059,
"winner_type": "Team",
"year": 2018
}
],
"slug": "dota-2-anggame-china-vs-sea",
"url": null
},
{
"id": 4195,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4195/800px-Dota_2_Challenge_Cup.png",
"modified_at": "2021-04-08T18:04:48Z",
"name": "The Challenge Cup",
"series": [
{
"begin_at": "2019-01-07T23:00:00Z",
"description": null,
"end_at": "2019-01-12T23:00:00Z",
"full_name": "Season 1 2019",
"id": 1699,
"league_id": 4195,
"modified_at": "2019-03-15T02:26:58Z",
"name": null,
"season": "1",
"slug": "dota-2-the-challenge-cup-2019",
"tier": null,
"winner_id": 96570,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-02-14T23:00:00Z",
"description": null,
"end_at": "2019-02-22T19:00:00Z",
"full_name": "Season 2 2019",
"id": 1761,
"league_id": 4195,
"modified_at": "2019-03-15T11:48:39Z",
"name": null,
"season": "2",
"slug": "dota-2-the-challenge-cup-2-2019",
"tier": null,
"winner_id": 96570,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-03-19T23:00:00Z",
"description": null,
"end_at": "2019-03-27T19:00:00Z",
"full_name": "Season 3 2019",
"id": 1762,
"league_id": 4195,
"modified_at": "2019-05-28T16:57:47Z",
"name": null,
"season": "3",
"slug": "dota-2-the-challenge-cup-3-2019",
"tier": null,
"winner_id": 125827,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-05-01T22:00:00Z",
"description": null,
"end_at": "2019-05-11T18:00:00Z",
"full_name": "Season 4 2019",
"id": 1787,
"league_id": 4195,
"modified_at": "2019-05-28T16:27:22Z",
"name": "",
"season": "4",
"slug": "dota-2-the-challenge-cup-4-2019",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2019
}
],
"slug": "dota-2-the-challenge-cup",
"url": null
},
{
"id": 4196,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4196/QIWI_TEAM_PLAY_Season_3_dota.png",
"modified_at": "2021-04-08T18:00:43Z",
"name": "QIWI Teamplay",
"series": [
{
"begin_at": "2019-01-06T23:00:00Z",
"description": null,
"end_at": "2019-01-09T23:00:00Z",
"full_name": "Season 3 2019",
"id": 1702,
"league_id": 4196,
"modified_at": "2019-01-14T18:34:25Z",
"name": null,
"season": "3",
"slug": "dota-2-qiwi-teamplay-3-2019",
"tier": null,
"winner_id": 1768,
"winner_type": "Team",
"year": 2019
}
],
"slug": "dota-2-qiwi-teamplay",
"url": null
},
{
"id": 4200,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4200/609px-ESL_Indonesia_Championship.png",
"modified_at": "2019-02-28T15:58:46Z",
"name": "ESL Indonesia Championship",
"series": [],
"slug": "dota-2-esl-indonesia-championship",
"url": null
},
{
"id": 4210,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4210/Asia_Pro_League.png",
"modified_at": "2021-04-08T17:36:08Z",
"name": "Asia Pro League",
"series": [
{
"begin_at": "2018-09-30T22:00:00Z",
"description": null,
"end_at": "2018-10-14T22:00:00Z",
"full_name": "Season 1 2018",
"id": 1743,
"league_id": 4210,
"modified_at": "2019-04-16T10:04:39Z",
"name": null,
"season": "1",
"slug": "dota-2-asia-pro-league-1-2018",
"tier": null,
"winner_id": 1687,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2019-02-13T23:00:00Z",
"description": null,
"end_at": "2019-02-19T23:00:00Z",
"full_name": "Season 2 2019",
"id": 1744,
"league_id": 4210,
"modified_at": "2019-02-13T10:03:28Z",
"name": null,
"season": "2",
"slug": "dota-2-asia-pro-league-2-2019",
"tier": null,
"winner_id": null,
"winner_type": "Team",
"year": 2019
}
],
"slug": "dota-2-asia-pro-league",
"url": null
},
{
"id": 4211,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4211/Asia_Pacific_Predator_League_2019.png",
"modified_at": "2019-02-18T17:17:20Z",
"name": "Asia Pacific Predator League",
"series": [
{
"begin_at": "2018-01-17T23:00:00Z",
"description": null,
"end_at": "2018-01-20T23:00:00Z",
"full_name": "2018",
"id": 1746,
"league_id": 4211,
"modified_at": "2019-04-15T15:15:33Z",
"name": null,
"season": null,
"slug": "dota-2-asia-pacific-predator-league-2018",
"tier": null,
"winner_id": 1714,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2019-02-14T23:00:00Z",
"description": null,
"end_at": "2019-02-16T23:00:00Z",
"full_name": "2019",
"id": 1745,
"league_id": 4211,
"modified_at": "2019-02-13T10:11:52Z",
"name": null,
"season": null,
"slug": "dota-2-asia-pacific-predator-league-2019",
"tier": null,
"winner_id": null,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2021-04-06T04:00:00Z",
"description": null,
"end_at": "2021-04-11T12:10:00Z",
"full_name": "APAC 2021",
"id": 3496,
"league_id": 4211,
"modified_at": "2021-04-11T12:13:59Z",
"name": "APAC",
"season": "",
"slug": "dota-2-asia-pacific-predator-league-apac-2021",
"tier": "d",
"winner_id": 1655,
"winner_type": "Team",
"year": 2021
}
],
"slug": "dota-2-asia-pacific-predator-league",
"url": null
},
{
"id": 4214,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4214/600px-Thunder_Fire_Spring_League_logo.png",
"modified_at": "2021-04-08T19:17:29Z",
"name": "Thunder Fire",
"series": [
{
"begin_at": "2019-03-03T23:00:00Z",
"description": null,
"end_at": "2019-03-13T19:00:00Z",
"full_name": "Spring League Spring 2019",
"id": 1755,
"league_id": 4214,
"modified_at": "2019-03-13T13:23:33Z",
"name": "Spring League",
"season": "Spring",
"slug": "dota-2-thunder-fire-spring-league-spring-2019",
"tier": null,
"winner_id": 1652,
"winner_type": "Team",
"year": 2019
}
],
"slug": "dota-2-thunder-fire",
"url": null
},
{
"id": 4215,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4215/Dota2_Rainbow_Cup.png",
"modified_at": "2019-07-08T09:08:26Z",
"name": "Rainbow Cup",
"series": [
{
"begin_at": "2019-03-16T23:00:00Z",
"description": null,
"end_at": "2019-03-30T23:00:00Z",
"full_name": "Season 1 2019",
"id": 1763,
"league_id": 4215,
"modified_at": "2019-04-03T09:11:24Z",
"name": null,
"season": "1",
"slug": "dota-2-rainbow-cup-1-2019",
"tier": null,
"winner_id": 96570,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-04-14T22:00:00Z",
"description": null,
"end_at": "2019-04-25T18:00:00Z",
"full_name": "Season 2 2019",
"id": 1778,
"league_id": 4215,
"modified_at": "2019-04-30T09:29:12Z",
"name": null,
"season": "2",
"slug": "dota-2-rainbow-cup-2-2019",
"tier": null,
"winner_id": 2061,
"winner_type": "Team",
"year": 2019
}
],
"slug": "dota-2-rainbow-cup",
"url": null
},
{
"id": 4216,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4216/600px-Betway_Asian_Dota_2_League.png",
"modified_at": "2019-07-08T09:08:50Z",
"name": "Betway Asian Dota 2 League",
"series": [
{
"begin_at": "2019-03-19T23:00:00Z",
"description": null,
"end_at": "2019-03-28T19:00:00Z",
"full_name": "1: Closed Qualifiers 2019",
"id": 2081,
"league_id": 4216,
"modified_at": "2019-11-12T01:31:03Z",
"name": "1: Closed Qualifiers",
"season": null,
"slug": "dota-2-betway-asian-dota-2-league-1-closed-qualifiers-2019",
"tier": null,
"winner_id": 3449,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-04-03T22:00:00Z",
"description": null,
"end_at": "2019-04-19T22:00:00Z",
"full_name": "Season 1 2019",
"id": 1764,
"league_id": 4216,
"modified_at": "2019-04-30T09:09:40Z",
"name": null,
"season": "1",
"slug": "dota-2-betway-asian-dota-2-league-1-2019",
"tier": null,
"winner_id": 1662,
"winner_type": "Team",
"year": 2019
}
],
"slug": "dota-2-betway-asian-dota-2-league",
"url": null
},
{
"id": 4217,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4217/China_Future_Cup.png",
"modified_at": "2021-04-08T17:33:59Z",
"name": "China Future Cup",
"series": [
{
"begin_at": "2019-04-03T22:00:00Z",
"description": null,
"end_at": "2019-04-13T22:00:00Z",
"full_name": "Season 1 2019",
"id": 1768,
"league_id": 4217,
"modified_at": "2019-04-15T14:57:10Z",
"name": null,
"season": "1",
"slug": "dota-2-futur-cup-1-2019",
"tier": null,
"winner_id": 125826,
"winner_type": "Team",
"year": 2019
}
],
"slug": "dota-2-futur-cup",
"url": null
},
{
"id": 4218,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4218/600px-American_Avenger_Cup.png",
"modified_at": "2021-04-08T17:38:02Z",
"name": "American Avengers Cup",
"series": [
{
"begin_at": "2019-04-04T22:00:00Z",
"description": null,
"end_at": "2019-04-11T22:00:00Z",
"full_name": "Season 1 2019",
"id": 1769,
"league_id": 4218,
"modified_at": "2019-04-07T09:47:17Z",
"name": null,
"season": "1",
"slug": "dota-2-americans-avengers-cup-1-2019",
"tier": null,
"winner_id": null,
"winner_type": "Team",
"year": 2019
}
],
"slug": "dota-2-americans-avengers-cup",
"url": null
},
{
"id": 4219,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4219/800px-Cobx_Master_2019_Phase_II.png",
"modified_at": "2021-04-08T17:40:40Z",
"name": "Cobx Masters",
"series": [
{
"begin_at": "2019-04-04T22:00:00Z",
"description": null,
"end_at": "2019-04-06T22:00:00Z",
"full_name": "Phase II 2019",
"id": 1770,
"league_id": 4219,
"modified_at": "2019-04-09T08:35:28Z",
"name": "Phase II",
"season": null,
"slug": "dota-2-cobx-masters-phase-ii-2019",
"tier": null,
"winner_id": 3426,
"winner_type": "Team",
"year": 2019
}
],
"slug": "dota-2-cobx-masters",
"url": null
},
{
"id": 4220,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4220/600px-Feng_Ye_Professional_Invitational.png",
"modified_at": "2021-04-08T17:56:52Z",
"name": "Feng Ye Professional Invitational Competition",
"series": [
{
"begin_at": "2019-04-06T22:00:00Z",
"description": null,
"end_at": "2019-04-15T22:00:00Z",
"full_name": "Season 1 2019",
"id": 1771,
"league_id": 4220,
"modified_at": "2019-04-16T16:30:36Z",
"name": null,
"season": "1",
"slug": "dota-2-feng-ye-professional-invitational-competition-1-2019",
"tier": null,
"winner_id": 1725,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-05-16T22:00:00Z",
"description": null,
"end_at": "2019-05-29T18:00:00Z",
"full_name": "Season 2 2019",
"id": 1794,
"league_id": 4220,
"modified_at": "2019-07-30T13:25:07Z",
"name": null,
"season": "2",
"slug": "dota-2-feng-ye-professional-invitational-competition-2-2019",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2019
}
],
"slug": "dota-2-feng-ye-professional-invitational-competition",
"url": null
},
{
"id": 4221,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4221/Qiamericaslogo.png",
"modified_at": "2020-06-05T20:28:18Z",
"name": "Qi Invitational",
"series": [
{
"begin_at": "2019-04-05T22:00:00Z",
"description": null,
"end_at": "2019-04-08T22:00:00Z",
"full_name": "Americas 2019",
"id": 1772,
"league_id": 4221,
"modified_at": "2019-04-09T06:44:13Z",
"name": "Americas",
"season": null,
"slug": "dota-2-qi-invitational-americas-2019",
"tier": null,
"winner_id": 3372,
"winner_type": "Team",
"year": 2019
}
],
"slug": "dota-2-qi-invitational",
"url": null
},
{
"id": 4222,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4222/600px-World_Showdown_of_Esports_banner.png",
"modified_at": "2020-06-05T20:11:35Z",
"name": "World Showdown of Esports",
"series": [
{
"begin_at": "2019-04-12T22:00:00Z",
"description": null,
"end_at": "2019-04-13T22:00:00Z",
"full_name": "Season 6 2019",
"id": 1773,
"league_id": 4222,
"modified_at": "2019-04-15T08:03:24Z",
"name": null,
"season": "6",
"slug": "dota-2-world-showdown-of-esports-6-2019",
"tier": null,
"winner_id": 3385,
"winner_type": "Team",
"year": 2019
}
],
"slug": "dota-2-world-showdown-of-esports",
"url": null
},
{
"id": 4224,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4224/Adrenaline_Cyber_League.png",
"modified_at": "2019-04-18T10:17:32Z",
"name": "Adrenaline Cyber League",
"series": [
{
"begin_at": "2017-10-14T22:00:00Z",
"description": null,
"end_at": "2017-11-22T19:00:00Z",
"full_name": "2017",
"id": 1780,
"league_id": 4224,
"modified_at": "2019-04-19T08:02:14Z",
"name": null,
"season": null,
"slug": "dota-2-adrenaline-cyber-league-2017",
"tier": null,
"winner_id": 1699,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2017-10-14T22:00:00Z",
"description": null,
"end_at": "2017-10-30T19:00:00Z",
"full_name": "Closed Qualifier 2017",
"id": 2203,
"league_id": 4224,
"modified_at": "2019-11-20T21:46:02Z",
"name": "Closed Qualifier",
"season": null,
"slug": "dota-2-adrenaline-cyber-league-closed-qualifier-2017",
"tier": null,
"winner_id": 1649,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2019-04-17T22:00:00Z",
"description": null,
"end_at": "2019-05-27T18:00:00Z",
"full_name": "2019",
"id": 1779,
"league_id": 4224,
"modified_at": "2019-06-03T10:08:41Z",
"name": null,
"season": null,
"slug": "dota-2-adrenaline-cyber-league-2019",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2019
},
{
"begin_at": "2019-04-17T22:00:00Z",
"description": null,
"end_at": "2019-04-21T22:00:00Z",
"full_name": "Closed Qualifier 2019",
"id": 1940,
"league_id": 4224,
"modified_at": "2019-11-06T13:14:24Z",
"name": "Closed Qualifier ",
"season": null,
"slug": "dota-2-adrenaline-cyber-league-closed-qualifier-2019",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2019
}
],
"slug": "dota-2-adrenaline-cyber-league",
"url": null
},
{
"id": 4227,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4227/609px-ESL_India_Premiership_2018.png",
"modified_at": "2019-05-13T09:36:16Z",
"name": "ESL India Premiership",
"series": [
{
"begin_at": "2019-04-25T22:00:00Z",
"description": null,
"end_at": "2019-05-19T18:00:00Z",
"full_name": "Summer Masters League 2019",
"id": 1788,
"league_id": 4227,
"modified_at": "2019-05-28T16:12:42Z",
"name": "Summer Masters League",
"season": "",
"slug": "dota-2-esl-india-premiership-summer-masters-league-summer-2019",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2019
}
],
"slug": "dota-2-esl-india-premiership",
"url": null
},
{
"id": 4236,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4236/600px-WCG2019.png",
"modified_at": "2019-07-13T18:15:27Z",
"name": "World Cyber Games",
"series": [
{
"begin_at": "2019-07-18T02:00:00Z",
"description": null,
"end_at": "2019-07-22T18:00:00Z",
"full_name": "World Cyber Games 2019",
"id": 1829,
"league_id": 4236,
"modified_at": "2019-07-21T05:36:23Z",
"name": "World Cyber Games",
"season": null,
"slug": "dota-2-world-cyber-games-world-cyber-games-2019",
"tier": null,
"winner_id": 1652,
"winner_type": "Team",
"year": 2019
}
],
"slug": "dota-2-world-cyber-games",
"url": null
},
{
"id": 4242,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4242/800px-Hainan_Master_Cup.png",
"modified_at": "2021-04-08T19:13:05Z",
"name": "Hainan Master Cup",
"series": [
{
"begin_at": "2019-10-25T22:00:00Z",
"description": null,
"end_at": "2019-11-01T19:00:00Z",
"full_name": "Qualifiers 2019",
"id": 1884,
"league_id": 4242,
"modified_at": "2019-10-14T07:20:29Z",
"name": "Qualifiers",
"season": null,
"slug": "dota-2-hainan-master-cup-qualifiers-2019",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2019
},
{
"begin_at": "2019-10-27T23:00:00Z",
"description": null,
"end_at": "2019-11-04T19:00:00Z",
"full_name": "Hainan Master Cup 2019",
"id": 1853,
"league_id": 4242,
"modified_at": "2019-11-03T13:44:19Z",
"name": "Hainan Master Cup",
"season": null,
"slug": "dota-2-hainan-master-cup-hainan-master-cup-2019",
"tier": null,
"winner_id": 1687,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2020-01-15T13:00:00Z",
"description": null,
"end_at": "2020-01-21T19:00:00Z",
"full_name": "Invitational Spring Europe Qualifier 2020",
"id": 2389,
"league_id": 4242,
"modified_at": "2020-02-19T12:09:37Z",
"name": "Invitational Spring Europe Qualifier",
"season": "",
"slug": "dota-2-hainan-master-cup-invitational-spring-europe-qualifier-2020",
"tier": null,
"winner_id": 126970,
"winner_type": "Team",
"year": 2020
},
{
"begin_at": "2020-01-26T23:00:00Z",
"description": null,
"end_at": "2020-02-01T21:00:00Z",
"full_name": "Invitational Spring CIS Qualifier 2020",
"id": 2393,
"league_id": 4242,
"modified_at": "2020-02-11T11:12:28Z",
"name": "Invitational Spring CIS Qualifier",
"season": "",
"slug": "dota-2-hainan-master-cup-invitational-spring-cis-qualifier-spring-2020",
"tier": null,
"winner_id": 1663,
"winner_type": "Team",
"year": 2020
},
{
"begin_at": "2020-02-19T23:00:00Z",
"description": null,
"end_at": "2020-02-26T12:00:00Z",
"full_name": "Invitational Spring CN Qualifier 2020",
"id": 2477,
"league_id": 4242,
"modified_at": "2020-03-12T08:34:07Z",
"name": "Invitational Spring CN Qualifier",
"season": "",
"slug": "dota-2-hainan-master-cup-invitational-spring-cn-qualifier-spring-2020",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2020
},
{
"begin_at": "2020-03-04T23:00:00Z",
"description": null,
"end_at": "2020-03-11T12:00:00Z",
"full_name": "Invitational Spring SEA Qualifier 2020",
"id": 2526,
"league_id": 4242,
"modified_at": "2020-03-12T08:32:47Z",
"name": "Invitational Spring SEA Qualifier",
"season": "",
"slug": "dota-2-hainan-master-cup-invitational-spring-sea-qualifier-2020",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2020
}
],
"slug": "dota-2-hainan-master-cup",
"url": null
},
{
"id": 4249,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4249/Parimatch_League_logo.png",
"modified_at": "2021-04-08T18:50:35Z",
"name": "Parimatch League",
"series": [
{
"begin_at": "2019-10-10T22:00:00Z",
"description": null,
"end_at": "2019-11-16T19:00:00Z",
"full_name": "Round Robin 2019",
"id": 1882,
"league_id": 4249,
"modified_at": "2019-10-10T08:51:29Z",
"name": "Round Robin",
"season": null,
"slug": "dota-2-parimatch-league-round-robin-2019",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2019
},
{
"begin_at": "2019-11-28T11:00:00Z",
"description": null,
"end_at": "2019-11-30T12:00:00Z",
"full_name": "Season 1 2019",
"id": 2150,
"league_id": 4249,
"modified_at": "2020-02-04T13:24:29Z",
"name": null,
"season": "1",
"slug": "dota-2-parimatch-league-1-2019",
"tier": null,
"winner_id": 1651,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-12-19T23:00:00Z",
"description": null,
"end_at": "2019-12-22T14:00:00Z",
"full_name": "Relegation season 1 2019",
"id": 2328,
"league_id": 4249,
"modified_at": "2020-01-13T13:56:56Z",
"name": "Relegation",
"season": "1",
"slug": "dota-2-parimatch-league-relegation-1-2019",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2019
},
{
"begin_at": "2020-02-01T14:00:00Z",
"description": null,
"end_at": "2020-03-13T16:10:00Z",
"full_name": "Round Robin season 2 2020",
"id": 2418,
"league_id": 4249,
"modified_at": "2020-03-16T05:24:17Z",
"name": "Round Robin",
"season": "2",
"slug": "dota-2-parimatch-league-round-robin-2-2020",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2020
},
{
"begin_at": "2020-03-26T23:00:00Z",
"description": null,
"end_at": "2020-03-28T23:00:00Z",
"full_name": "Lan Finals season 2 2020",
"id": 2542,
"league_id": 4249,
"modified_at": "2020-03-18T13:07:18Z",
"name": "Lan Finals",
"season": "2",
"slug": "dota-2-parimatch-league-lan-finals-2-2020",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2020
},
{
"begin_at": "2020-04-12T16:00:00Z",
"description": null,
"end_at": "2020-04-14T18:43:00Z",
"full_name": "Relegation season 2 2020",
"id": 2596,
"league_id": 4249,
"modified_at": "2020-04-14T23:04:58Z",
"name": "Relegation",
"season": "2",
"slug": "dota-2-parimatch-league-relegation-2-2020",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2020
},
{
"begin_at": "2020-05-10T10:00:00Z",
"description": null,
"end_at": "2020-06-05T16:54:00Z",
"full_name": "Round Robin season 3 2020",
"id": 2684,
"league_id": 4249,
"modified_at": "2020-06-06T22:41:03Z",
"name": "Round Robin",
"season": "3",
"slug": "dota-2-parimatch-league-round-robin-3-2020",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2020
},
{
"begin_at": "2020-06-05T11:00:00Z",
"description": null,
"end_at": "2020-07-05T18:06:00Z",
"full_name": "Lan Finals season 3 2020",
"id": 2729,
"league_id": 4249,
"modified_at": "2020-07-05T18:22:31Z",
"name": "Lan Finals",
"season": "3",
"slug": "dota-2-parimatch-league-lan-finals-3-2020",
"tier": "c",
"winner_id": 1651,
"winner_type": "Team",
"year": 2020
}
],
"slug": "dota-2-parimatch-league",
"url": null
},
{
"id": 4251,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4251/567px-Esl-clash-of-nations.png",
"modified_at": "2019-10-14T07:22:55Z",
"name": "ESL",
"series": [
{
"begin_at": "2019-10-23T22:00:00Z",
"description": null,
"end_at": "2019-10-28T19:00:00Z",
"full_name": "Clash of Nations Bangkok 2019",
"id": 1885,
"league_id": 4251,
"modified_at": "2019-10-14T07:23:31Z",
"name": "Clash of Nations Bangkok",
"season": null,
"slug": "dota-2-esl-clash-of-nations-bangkok-2019",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2019
}
],
"slug": "dota-2-esl",
"url": null
},
{
"id": 4252,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4252/800px-China_Dota2_Professional_League_S1.png",
"modified_at": "2021-04-08T18:17:30Z",
"name": "China Dota2 Professional League",
"series": [
{
"begin_at": "2019-10-16T22:00:00Z",
"description": null,
"end_at": "2020-03-29T13:37:00Z",
"full_name": "Season 1 2019",
"id": 1886,
"league_id": 4252,
"modified_at": "2020-04-04T06:59:27Z",
"name": null,
"season": "1",
"slug": "dota-2-china-dota2-professional-league-1-2019",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2019
},
{
"begin_at": "2020-03-31T16:00:00Z",
"description": null,
"end_at": "2020-05-31T10:42:00Z",
"full_name": "Season 2 2020",
"id": 2573,
"league_id": 4252,
"modified_at": "2020-06-03T22:58:36Z",
"name": null,
"season": "2",
"slug": "dota-2-china-dota2-professional-league-2-2020",
"tier": null,
"winner_id": 1657,
"winner_type": "Team",
"year": 2020
}
],
"slug": "dota-2-china-dota2-professional-league",
"url": null
},
{
"id": 4273,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4273/398px-SEA_Games.png",
"modified_at": "2019-12-05T10:21:56Z",
"name": "Southeast Asian Games",
"series": [
{
"begin_at": "2019-12-06T23:00:00Z",
"description": null,
"end_at": "2019-12-10T19:00:00Z",
"full_name": "30th 2019",
"id": 2321,
"league_id": 4273,
"modified_at": "2020-02-04T13:28:51Z",
"name": "30th",
"season": null,
"slug": "dota-2-southeast-asian-games-30th-2019",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2019
}
],
"slug": "dota-2-southeast-asian-games",
"url": null
},
{
"id": 4275,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4275/800px-Yabo_Supreme_Cup.png",
"modified_at": "2021-04-08T17:47:14Z",
"name": "Yabo Supreme Cup",
"series": [
{
"begin_at": "2019-12-12T23:00:00Z",
"description": null,
"end_at": "2019-12-16T19:00:00Z",
"full_name": "2019",
"id": 2329,
"league_id": 4275,
"modified_at": "2019-12-09T12:24:00Z",
"name": "",
"season": null,
"slug": "dota-2-yabo-supreme-cup-2019",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2019
}
],
"slug": "dota-2-yabo-supreme-cup",
"url": null
},
{
"id": 4277,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4277/1200px-ONE_Dota_2_Singapore_World_Pro_Invitational_logo.png",
"modified_at": "2021-04-08T18:22:54Z",
"name": "ONE Esports Dota 2",
"series": [
{
"begin_at": "2019-12-17T02:00:00Z",
"description": null,
"end_at": "2019-12-22T23:00:00Z",
"full_name": "World Pro Invitational Singapore 2019",
"id": 2334,
"league_id": 4277,
"modified_at": "2020-01-13T14:09:33Z",
"name": "World Pro Invitational Singapore ",
"season": null,
"slug": "dota-2-one-esports-dota-2-world-pro-invitational-singapore-2019",
"tier": null,
"winner_id": 1676,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2020-03-06T23:00:00Z",
"description": null,
"end_at": "2020-03-08T13:07:00Z",
"full_name": "World Pro Invitational Jakarta: Kuala Lumpur Qualifier 2020",
"id": 2524,
"league_id": 4277,
"modified_at": "2020-03-13T13:39:40Z",
"name": "World Pro Invitational Jakarta: Kuala Lumpur Qualifier",
"season": null,
"slug": "dota-2-one-esports-dota-2-world-pro-invitational-jakarta-kuala-lumpur-qualifier-2020",
"tier": null,
"winner_id": 126297,
"winner_type": "Team",
"year": 2020
},
{
"begin_at": "2020-03-13T23:00:00Z",
"description": null,
"end_at": "2020-03-15T12:43:00Z",
"full_name": "World Pro Invitational Jakarta: Indonesia Qualifier 2020",
"id": 2525,
"league_id": 4277,
"modified_at": "2020-03-15T12:44:15Z",
"name": "World Pro Invitational Jakarta: Indonesia Qualifier",
"season": null,
"slug": "dota-2-one-esports-dota-2-world-pro-invitational-jakarta-indonesia-qualifier-2020",
"tier": null,
"winner_id": 126229,
"winner_type": "Team",
"year": 2020
},
{
"begin_at": "2020-06-18T10:00:00Z",
"description": null,
"end_at": "2020-07-19T21:00:00Z",
"full_name": "SEA League 2020",
"id": 2795,
"league_id": 4277,
"modified_at": "2020-06-19T23:28:26Z",
"name": "SEA League",
"season": null,
"slug": "dota-2-one-esports-dota-2-sea-league-2020",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2020
},
{
"begin_at": "2021-03-26T23:00:00Z",
"description": null,
"end_at": "2021-04-04T12:46:00Z",
"full_name": "Singapore Major 2021",
"id": 3408,
"league_id": 4277,
"modified_at": "2021-04-04T14:40:44Z",
"name": "Singapore Major",
"season": null,
"slug": "dota-2-one-esports-dota-2-singapore-major-2021",
"tier": "s",
"winner_id": 1662,
"winner_type": "Team",
"year": 2021
}
],
"slug": "dota-2-one-esports-dota-2",
"url": null
},
{
"id": 4279,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4279/800px-Rivalry_Winter_Blast_logo.png",
"modified_at": "2019-12-13T12:43:21Z",
"name": "Rivalry Winter Blast",
"series": [
{
"begin_at": "2019-12-12T23:00:00Z",
"description": null,
"end_at": "2019-12-25T19:00:00Z",
"full_name": "2019",
"id": 2338,
"league_id": 4279,
"modified_at": "2020-01-13T13:58:49Z",
"name": null,
"season": null,
"slug": "dota-2-rivalry-winter-blast-2019",
"tier": null,
"winner_id": 126679,
"winner_type": "Team",
"year": 2019
}
],
"slug": "dota-2-rivalry-winter-blast",
"url": null
},
{
"id": 4287,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4287/600px-Maincast_winter_brawl.png",
"modified_at": "2019-12-26T15:06:04Z",
"name": "Maincast",
"series": [
{
"begin_at": "2019-12-28T14:00:00Z",
"description": null,
"end_at": "2020-01-05T19:50:00Z",
"full_name": "Winter Brawl 2019",
"id": 2354,
"league_id": 4287,
"modified_at": "2020-01-06T17:53:35Z",
"name": "Winter Brawl",
"season": "",
"slug": "dota-2-maincast-winter-brawl-winter-2019",
"tier": null,
"winner_id": 125845,
"winner_type": "Team",
"year": 2019
}
],
"slug": "dota-2-maincast",
"url": "https://maincast.com/"
},
{
"id": 4290,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4290/589px-Yabo_Elite_Challenge.png",
"modified_at": "2021-04-08T17:49:49Z",
"name": "Yabo Elite Challenge",
"series": [
{
"begin_at": "2020-01-05T03:00:00Z",
"description": null,
"end_at": "2020-01-12T23:00:00Z",
"full_name": "S2 2020",
"id": 2367,
"league_id": 4290,
"modified_at": "2020-01-04T11:15:02Z",
"name": "",
"season": "S2",
"slug": "dota-2-yabo-elite-challenge-s2-2020",
"tier": null,
"winner_id": null,
"winner_type": "Team",
"year": 2020
}
],
"slug": "dota-2-yabo-elite-challenge",
"url": null
},
{
"id": 4295,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4295/600px-Logo_OMG_BET_CUP_2.png",
"modified_at": "2020-01-12T08:38:56Z",
"name": "OMG Cup",
"series": [
{
"begin_at": "2020-01-13T12:00:00Z",
"description": null,
"end_at": "2020-01-17T23:00:00Z",
"full_name": "Main season 2 2020",
"id": 2381,
"league_id": 4295,
"modified_at": "2020-01-12T08:44:39Z",
"name": "Main",
"season": "2",
"slug": "dota-2-omg-cup-main-2-2020",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2020
},
{
"begin_at": "2020-05-13T11:00:00Z",
"description": null,
"end_at": "2020-05-29T20:00:00Z",
"full_name": "Season 3 2020",
"id": 2692,
"league_id": 4295,
"modified_at": "2020-05-30T22:41:17Z",
"name": null,
"season": "3",
"slug": "dota-2-omg-cup-3-2020",
"tier": "c",
"winner_id": 127139,
"winner_type": "Team",
"year": 2020
},
{
"begin_at": "2020-06-08T14:00:00Z",
"description": null,
"end_at": "2020-06-15T22:00:00Z",
"full_name": "Summer 2020",
"id": 2753,
"league_id": 4295,
"modified_at": "2020-06-07T13:05:24Z",
"name": null,
"season": "Summer",
"slug": "dota-2-omg-cup-summer-2020",
"tier": "c",
"winner_id": null,
"winner_type": null,
"year": 2020
}
],
"slug": "dota-2-omg-cup",
"url": null
},
{
"id": 4298,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4298/Asian_DOTA2_Gold_Occupation_Competition.png",
"modified_at": "2020-02-07T16:26:44Z",
"name": "Asian DOTA2 Gold Occupation Competition",
"series": [
{
"begin_at": "2020-01-15T08:30:00Z",
"description": null,
"end_at": "2020-02-04T14:00:00Z",
"full_name": "Season 10 2020",
"id": 2386,
"league_id": 4298,
"modified_at": "2020-02-04T10:58:05Z",
"name": null,
"season": "10",
"slug": "dota-2-asian-dota2-gold-occupation-competition-10-2020",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2020
}
],
"slug": "dota-2-asian-dota2-gold-occupation-competition",
"url": null
},
{
"id": 4303,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4303/600px-Movistar_lpg.png",
"modified_at": "2021-04-08T18:52:58Z",
"name": "Movistar Liga Pro Gaming",
"series": [
{
"begin_at": "2020-01-28T22:00:00Z",
"description": null,
"end_at": "2020-04-11T17:24:00Z",
"full_name": "Season 3 2020",
"id": 2403,
"league_id": 4303,
"modified_at": "2020-04-11T23:36:23Z",
"name": null,
"season": "3",
"slug": "dota-2-movistar-liga-pro-gaming-3-2020",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2020
},
{
"begin_at": "2020-04-22T20:50:00Z",
"description": null,
"end_at": "2020-06-15T01:20:00Z",
"full_name": "Season 4 2020",
"id": 2644,
"league_id": 4303,
"modified_at": "2020-06-15T01:26:45Z",
"name": null,
"season": "4",
"slug": "dota-2-movistar-liga-pro-gaming-4-2020",
"tier": null,
"winner_id": 126294,
"winner_type": "Team",
"year": 2020
},
{
"begin_at": "2020-07-02T22:00:00Z",
"description": null,
"end_at": "2020-08-30T04:08:00Z",
"full_name": "Season 5 2020",
"id": 2818,
"league_id": 4303,
"modified_at": "2020-08-30T04:09:23Z",
"name": null,
"season": "5",
"slug": "dota-2-movistar-liga-pro-gaming-5-2020",
"tier": "c",
"winner_id": 2671,
"winner_type": "Team",
"year": 2020
},
{
"begin_at": "2020-10-17T21:00:00Z",
"description": null,
"end_at": "2020-11-15T01:58:00Z",
"full_name": "Season 6 2020",
"id": 3053,
"league_id": 4303,
"modified_at": "2020-11-15T02:02:38Z",
"name": null,
"season": "6",
"slug": "dota-2-movistar-liga-pro-gaming-6-2020",
"tier": "d",
"winner_id": 127665,
"winner_type": "Team",
"year": 2020
},
{
"begin_at": "2020-11-21T23:00:00Z",
"description": null,
"end_at": "2020-12-20T02:26:00Z",
"full_name": "Final Series 2020",
"id": 3129,
"league_id": 4303,
"modified_at": "2020-12-20T07:50:38Z",
"name": "Final Series",
"season": null,
"slug": "dota-2-movistar-liga-pro-gaming-final-series-2020",
"tier": "d",
"winner_id": 2671,
"winner_type": "Team",
"year": 2020
},
{
"begin_at": "2021-03-10T21:00:00Z",
"description": null,
"end_at": "2021-03-21T01:29:00Z",
"full_name": "Season 8 2021",
"id": 3421,
"league_id": 4303,
"modified_at": "2021-03-21T01:33:39Z",
"name": null,
"season": "8",
"slug": "dota-2-movistar-liga-pro-gaming-8-2021",
"tier": "d",
"winner_id": 1659,
"winner_type": "Team",
"year": 2021
}
],
"slug": "dota-2-movistar-liga-pro-gaming",
"url": null
},
{
"id": 4305,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4305/Logo-The-Parabelluml-dota2-v.2_1.427dd622.png",
"modified_at": "2020-01-21T23:42:47Z",
"name": "Para Bellum",
"series": [
{
"begin_at": "2020-01-28T23:00:00Z",
"description": null,
"end_at": "2020-02-01T23:00:00Z",
"full_name": "Dota2 Tournament 2020",
"id": 2417,
"league_id": 4305,
"modified_at": "2020-02-04T11:00:39Z",
"name": "Dota2 Tournament",
"season": "",
"slug": "dota-2-para-bellum-dota2-tournament-2020",
"tier": null,
"winner_id": 2061,
"winner_type": "Team",
"year": 2020
}
],
"slug": "dota-2-para-bellum",
"url": "https://omu.gg/parabellum"
},
{
"id": 4318,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4318/Sigulproleague.png",
"modified_at": "2020-02-16T12:24:07Z",
"name": "SIGUL",
"series": [
{
"begin_at": "2020-02-24T23:00:00Z",
"description": null,
"end_at": "2020-04-25T21:00:00Z",
"full_name": "Pro League 2020",
"id": 2495,
"league_id": 4318,
"modified_at": "2020-04-18T06:48:31Z",
"name": "Pro League",
"season": null,
"slug": "dota-2-sigul-pro-league-2020",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2020
}
],
"slug": "dota-2-sigul",
"url": "https://sigulleague.ru/"
},
{
"id": 4322,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4322/600px-EGB.cSm_Arena_of_Blood.png",
"modified_at": "2021-04-08T19:20:28Z",
"name": "EGB Arena of Blood",
"series": [
{
"begin_at": "2020-02-23T23:00:00Z",
"description": null,
"end_at": "2020-02-27T22:00:00Z",
"full_name": "Closed qualifier 2020",
"id": 2508,
"league_id": 4322,
"modified_at": "2020-02-23T18:36:31Z",
"name": "Closed qualifier",
"season": null,
"slug": "dota-2-egb-arena-of-blood-closed-qualifier-2020",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2020
},
{
"begin_at": "2020-02-27T23:00:00Z",
"description": null,
"end_at": "2020-03-14T22:00:00Z",
"full_name": "2020",
"id": 2518,
"league_id": 4322,
"modified_at": "2020-02-27T23:43:56Z",
"name": null,
"season": "",
"slug": "dota-2-egb-arena-of-blood-2020",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2020
},
{
"begin_at": "2020-04-15T22:00:00Z",
"description": null,
"end_at": "2020-07-02T17:00:00Z",
"full_name": "Season 2 2020",
"id": 2607,
"league_id": 4322,
"modified_at": "2020-07-03T01:00:46Z",
"name": null,
"season": "2",
"slug": "dota-2-egb-arena-of-blood-2-2020",
"tier": null,
"winner_id": 126663,
"winner_type": "Team",
"year": 2020
}
],
"slug": "dota-2-egb-arena-of-blood",
"url": null
},
{
"id": 4330,
"image_url": null,
"modified_at": "2020-03-08T06:19:02Z",
"name": "ESL SEA Championship",
"series": [
{
"begin_at": "2020-03-09T10:00:00Z",
"description": null,
"end_at": "2020-04-19T16:45:00Z",
"full_name": "2020",
"id": 2530,
"league_id": 4330,
"modified_at": "2020-04-19T23:25:36Z",
"name": null,
"season": null,
"slug": "dota-2-esl-sea-championship-2020",
"tier": null,
"winner_id": 126229,
"winner_type": "Team",
"year": 2020
}
],
"slug": "dota-2-esl-sea-championship",
"url": "https://pro.eslgaming.com/sea/"
},
{
"id": 4335,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4335/600px-Red_Star_Cup.png",
"modified_at": "2021-04-08T17:59:38Z",
"name": "Red Star Cup",
"series": [
{
"begin_at": "2020-03-16T08:30:00Z",
"description": null,
"end_at": "2020-03-27T16:53:00Z",
"full_name": "Season 4 2020",
"id": 2537,
"league_id": 4335,
"modified_at": "2020-03-27T16:56:01Z",
"name": null,
"season": "4",
"slug": "dota-2-red-star-cup-4-2020",
"tier": null,
"winner_id": 127155,
"winner_type": "Team",
"year": 2020
}
],
"slug": "dota-2-red-star-cup",
"url": null
},
{
"id": 4336,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4336/600px-GGBET_Championship_2_logo.png",
"modified_at": "2020-03-16T07:08:33Z",
"name": "GGBET Championship",
"series": [
{
"begin_at": "2020-03-15T23:00:00Z",
"description": null,
"end_at": "2020-03-22T23:00:00Z",
"full_name": "Season 2 2020",
"id": 2538,
"league_id": 4336,
"modified_at": "2020-03-16T07:10:21Z",
"name": null,
"season": "2",
"slug": "dota-2-ggbet-championship-2-2020",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2020
}
],
"slug": "dota-2-ggbet-championship",
"url": null
},
{
"id": 4337,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4337/HPL2.png",
"modified_at": "2020-03-16T07:32:52Z",
"name": "Hot Price League",
"series": [
{
"begin_at": "2020-03-17T23:00:00Z",
"description": null,
"end_at": "2020-03-22T23:00:00Z",
"full_name": "Season 2 2020",
"id": 2539,
"league_id": 4337,
"modified_at": "2020-03-16T07:33:39Z",
"name": null,
"season": "2",
"slug": "dota-2-hot-price-league-2-2020",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2020
},
{
"begin_at": "2020-04-10T13:00:00Z",
"description": null,
"end_at": "2020-04-13T16:00:00Z",
"full_name": "Season 3 2020",
"id": 2590,
"league_id": 4337,
"modified_at": "2020-06-13T00:35:09Z",
"name": null,
"season": "3",
"slug": "dota-2-hot-price-league-3-2020",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2020
}
],
"slug": "dota-2-hot-price-league",
"url": null
},
{
"id": 4338,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4338/Thailand_Celestial_Cup.png",
"modified_at": "2021-04-08T18:31:24Z",
"name": "Thailand Celestial Cup",
"series": [
{
"begin_at": "2020-03-16T23:00:00Z",
"description": null,
"end_at": "2020-03-26T10:25:00Z",
"full_name": "Season 2 2020",
"id": 2540,
"league_id": 4338,
"modified_at": "2020-04-04T07:00:17Z",
"name": null,
"season": "2",
"slug": "dota-2-thailand-celestial-cup-2-2020",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2020
},
{
"begin_at": "2020-03-27T03:00:00Z",
"description": null,
"end_at": "2020-04-04T07:00:00Z",
"full_name": "Season 3 2020",
"id": 2569,
"league_id": 4338,
"modified_at": "2020-04-04T06:33:22Z",
"name": "",
"season": "3",
"slug": "dota-2-thailand-celestial-cup-3-2020",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2020
}
],
"slug": "dota-2-thailand-celestial-cup",
"url": null
},
{
"id": 4339,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4339/600px-Rivalry_No_Major_No_Problem.png",
"modified_at": "2020-03-17T06:43:29Z",
"name": "No Major No Problem",
"series": [
{
"begin_at": "2020-03-17T17:00:00Z",
"description": null,
"end_at": "2020-03-23T04:44:00Z",
"full_name": "2020",
"id": 2541,
"league_id": 4339,
"modified_at": "2020-03-23T04:45:01Z",
"name": null,
"season": null,
"slug": "dota-2-no-major-no-problem-2020",
"tier": null,
"winner_id": 2671,
"winner_type": "Team",
"year": 2020
}
],
"slug": "dota-2-no-major-no-problem",
"url": null
},
{
"id": 4341,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4341/600px-China_Dota2_Development_League_S2.png",
"modified_at": "2021-04-08T18:06:37Z",
"name": "China Development League",
"series": [
{
"begin_at": "2020-03-19T23:00:00Z",
"description": null,
"end_at": "2020-03-21T23:00:00Z",
"full_name": "Season 2 2020",
"id": 2553,
"league_id": 4341,
"modified_at": "2020-03-19T17:07:25Z",
"name": null,
"season": "2",
"slug": "dota-2-china-developement-league-2-2020",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2020
},
{
"begin_at": "2020-03-30T06:00:00Z",
"description": null,
"end_at": "2020-05-24T09:03:00Z",
"full_name": "Season 3 2020",
"id": 2575,
"league_id": 4341,
"modified_at": "2020-05-27T01:14:49Z",
"name": null,
"season": "3",
"slug": "dota-2-china-developement-league-3-2020",
"tier": null,
"winner_id": 126401,
"winner_type": "Team",
"year": 2020
}
],
"slug": "dota-2-china-developement-league",
"url": "https://web.archive.org/web/https://www.imbatv.cn/match/development_S2/"
},
{
"id": 4342,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4342/600px-Maxline2.png",
"modified_at": "2021-04-08T17:51:12Z",
"name": "Maxline",
"series": [
{
"begin_at": "2020-03-23T12:00:00Z",
"description": null,
"end_at": "2020-03-29T16:44:00Z",
"full_name": "Closed qualifier season 2 2020",
"id": 2554,
"league_id": 4342,
"modified_at": "2020-04-04T06:31:22Z",
"name": "Closed qualifier",
"season": "2",
"slug": "dota-2-maxline-closed-qualifier-2-2020",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2020
}
],
"slug": "dota-2-maxline",
"url": null
},
{
"id": 4343,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4343/600px-CDA_League.png",
"modified_at": "2021-04-08T18:14:10Z",
"name": "Chinese DOTA2 Professional Association",
"series": [
{
"begin_at": "2020-03-28T07:00:00Z",
"description": null,
"end_at": "2020-04-19T15:06:00Z",
"full_name": "2020",
"id": 2555,
"league_id": 4343,
"modified_at": "2020-04-19T23:20:36Z",
"name": null,
"season": null,
"slug": "dota-2-chinese-dota2-professional-association-2020",
"tier": null,
"winner_id": 126401,
"winner_type": "Team",
"year": 2020
}
],
"slug": "dota-2-chinese-dota2-professional-association",
"url": "https://www.varena.com/tournament/701/info"
},
{
"id": 4346,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4346/600px-JJB_Spring_Cup.png",
"modified_at": "2021-04-08T18:08:13Z",
"name": "JJB Spring Cup",
"series": [
{
"begin_at": "2020-04-05T22:00:00Z",
"description": null,
"end_at": "2020-04-12T13:00:00Z",
"full_name": "Season 2 2020",
"id": 2559,
"league_id": 4346,
"modified_at": "2020-04-04T17:43:01Z",
"name": null,
"season": "2",
"slug": "dota-2-jjb-spring-cup-2-2020",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2020
}
],
"slug": "dota-2-jjb-spring-cup",
"url": null
},
{
"id": 4347,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4347/Aorus_League_Quedateencasa.png",
"modified_at": "2020-03-24T07:38:58Z",
"name": "Aorus League",
"series": [
{
"begin_at": "2020-03-24T23:00:00Z",
"description": null,
"end_at": "2020-03-27T23:00:00Z",
"full_name": "StayAtHome Edition 2020",
"id": 2560,
"league_id": 4347,
"modified_at": "2020-03-24T07:39:34Z",
"name": "StayAtHome Edition",
"season": null,
"slug": "dota-2-aorus-league-stayathome-edition-2020",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2020
},
{
"begin_at": "2020-03-24T23:00:00Z",
"description": null,
"end_at": "2020-03-28T21:32:00Z",
"full_name": "StayAtHome Edition Brazil 2020",
"id": 2570,
"league_id": 4347,
"modified_at": "2020-04-10T09:24:18Z",
"name": "StayAtHome Edition Brazil",
"season": null,
"slug": "dota-2-aorus-league-stayathome-edition-brazil-2020",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2020
},
{
"begin_at": "2020-10-05T22:00:00Z",
"description": null,
"end_at": "2020-10-17T02:46:00Z",
"full_name": "Impostor Edition 2020",
"id": 3032,
"league_id": 4347,
"modified_at": "2020-10-17T02:47:22Z",
"name": "Impostor Edition",
"season": null,
"slug": "dota-2-aorus-league-impostor-edition-2020",
"tier": "d",
"winner_id": 1659,
"winner_type": "Team",
"year": 2020
}
],
"slug": "dota-2-aorus-league",
"url": null
},
{
"id": 4352,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4352/600px-GGBET_StayHome_Challenge.png",
"modified_at": "2021-04-01T12:39:39Z",
"name": "GGBET StayHome Challenge",
"series": [
{
"begin_at": "2020-03-31T22:00:00Z",
"description": null,
"end_at": "2020-04-19T21:21:00Z",
"full_name": "Season 1 2020",
"id": 2577,
"league_id": 4352,
"modified_at": "2020-04-19T23:24:42Z",
"name": null,
"season": "1",
"slug": "dota-2-ggbet-stayhome-challenge-1-2020",
"tier": null,
"winner_id": 127264,
"winner_type": "Team",
"year": 2020
}
],
"slug": "dota-2-ggbet-stayhome-challenge",
"url": null
},
{
"id": 4356,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4356/Amadeus_Cup.png",
"modified_at": "2021-04-08T18:24:53Z",
"name": "Amadeus Cup",
"series": [
{
"begin_at": "2020-04-06T22:00:00Z",
"description": null,
"end_at": "2020-04-18T10:00:00Z",
"full_name": "2020",
"id": 2584,
"league_id": 4356,
"modified_at": "2020-04-18T09:54:31Z",
"name": null,
"season": null,
"slug": "dota-2-amadeus-cup-2020",
"tier": null,
"winner_id": 2061,
"winner_type": "Team",
"year": 2020
}
],
"slug": "dota-2-amadeus-cup",
"url": null
},
{
"id": 4359,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4359/600px-SECTOR_MOSTBET_DOTA.png",
"modified_at": "2020-04-07T19:09:17Z",
"name": "SECTOR DOTA 2",
"series": [
{
"begin_at": "2020-04-07T14:00:00Z",
"description": null,
"end_at": "2020-04-28T20:21:00Z",
"full_name": "Season 2 2020",
"id": 2587,
"league_id": 4359,
"modified_at": "2020-04-28T23:12:41Z",
"name": null,
"season": "2",
"slug": "dota-2-sector-dota-2-2-2020",
"tier": null,
"winner_id": 126226,
"winner_type": "Team",
"year": 2020
}
],
"slug": "dota-2-sector-dota-2",
"url": null
},
{
"id": 4360,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4360/600px-BTS_Pro_Series_logo.png",
"modified_at": "2021-04-01T12:34:22Z",
"name": "BTS Pro Series",
"series": [
{
"begin_at": "2020-04-09T22:00:00Z",
"description": null,
"end_at": "2020-04-26T11:14:00Z",
"full_name": "Southeast Asia 2020",
"id": 2593,
"league_id": 4360,
"modified_at": "2020-04-27T00:08:20Z",
"name": "Southeast Asia",
"season": null,
"slug": "dota-2-bts-pro-series-southeast-asia-2020",
"tier": null,
"winner_id": 1664,
"winner_type": "Team",
"year": 2020
},
{
"begin_at": "2020-04-09T22:00:00Z",
"description": null,
"end_at": "2020-04-27T00:16:00Z",
"full_name": "Americas 2020",
"id": 2594,
"league_id": 4360,
"modified_at": "2020-04-27T00:18:14Z",
"name": "Americas",
"season": null,
"slug": "dota-2-bts-pro-series-americas-2020",
"tier": null,
"winner_id": 1653,
"winner_type": "Team",
"year": 2020
},
{
"begin_at": "2020-06-05T04:00:00Z",
"description": null,
"end_at": "2020-06-20T09:18:00Z",
"full_name": "Southeast Asia season 2 2020",
"id": 2743,
"league_id": 4360,
"modified_at": "2020-06-20T23:47:02Z",
"name": "Southeast Asia",
"season": "2",
"slug": "dota-2-bts-pro-series-southeast-asia-2-2020",
"tier": "c",
"winner_id": 1714,
"winner_type": "Team",
"year": 2020
},
{
"begin_at": "2020-06-12T22:00:00Z",
"description": null,
"end_at": "2020-06-30T02:21:00Z",
"full_name": "Americas 2 season 2 2020",
"id": 2769,
"league_id": 4360,
"modified_at": "2020-07-01T00:21:19Z",
"name": "Americas 2",
"season": "2",
"slug": "dota-2-bts-pro-series-americas-2-2-2020",
"tier": "b",
"winner_id": 126289,
"winner_type": "Team",
"year": 2020
},
{
"begin_at": "2020-09-07T20:00:00Z",
"description": null,
"end_at": "2020-09-23T03:46:00Z",
"full_name": "Americas 3 season 3 2020",
"id": 2963,
"league_id": 4360,
"modified_at": "2020-09-23T23:17:33Z",
"name": "Americas 3",
"season": "3",
"slug": "dota-2-bts-pro-series-americas-3-3-2020",
"tier": "b",
"winner_id": 126289,
"winner_type": "Team",
"year": 2020
},
{
"begin_at": "2020-09-12T04:00:00Z",
"description": null,
"end_at": "2020-09-27T10:51:00Z",
"full_name": "Southeast Asia season 3 2020",
"id": 2972,
"league_id": 4360,
"modified_at": "2020-09-27T10:57:00Z",
"name": "Southeast Asia",
"season": "3",
"slug": "dota-2-bts-pro-series-southeast-asia-3-2020",
"tier": "c",
"winner_id": 126848,
"winner_type": "Team",
"year": 2020
},
{
"begin_at": "2020-09-12T12:00:00Z",
"description": null,
"end_at": "2020-09-30T20:00:00Z",
"full_name": "Europe season 3 2020",
"id": 2971,
"league_id": 4360,
"modified_at": "2020-09-09T21:40:37Z",
"name": "Europe",
"season": "3",
"slug": "dota-2-bts-pro-series-europe-3-2020",
"tier": "a",
"winner_id": null,
"winner_type": null,
"year": 2020
},
{
"begin_at": "2020-12-08T08:00:00Z",
"description": null,
"end_at": "2020-12-20T15:55:00Z",
"full_name": "Southeast Asia season 4 2020",
"id": 3174,
"league_id": 4360,
"modified_at": "2020-12-22T23:55:20Z",
"name": "Southeast Asia",
"season": "4",
"slug": "dota-2-bts-pro-series-southeast-asia-4-2020",
"tier": "c",
"winner_id": 1655,
"winner_type": "Team",
"year": 2020
},
{
"begin_at": "2020-12-08T21:00:00Z",
"description": null,
"end_at": "2020-12-21T04:58:00Z",
"full_name": "Americas 4 2020",
"id": 3179,
"league_id": 4360,
"modified_at": "2020-12-22T09:53:24Z",
"name": "Americas 4",
"season": null,
"slug": "dota-2-bts-pro-series-americas-4-2020",
"tier": "c",
"winner_id": 2671,
"winner_type": "Team",
"year": 2020
},
{
"begin_at": "2020-12-16T15:00:00Z",
"description": null,
"end_at": "2020-12-20T18:44:00Z",
"full_name": "Europe/CIS season 4 2020",
"id": 3165,
"league_id": 4360,
"modified_at": "2020-12-22T09:54:35Z",
"name": "Europe/CIS",
"season": "4",
"slug": "dota-2-bts-pro-series-europe-cis-4-2020",
"tier": "c",
"winner_id": 1669,
"winner_type": "Team",
"year": 2020
},
{
"begin_at": "2021-03-02T09:00:00Z",
"description": null,
"end_at": "2021-03-22T02:34:00Z",
"full_name": "Americas season 5 2021",
"id": 3395,
"league_id": 4360,
"modified_at": "2021-03-22T02:35:35Z",
"name": "Americas",
"season": "5",
"slug": "dota-2-bts-pro-series-americas-5-2021",
"tier": "b",
"winner_id": 127331,
"winner_type": "Team",
"year": 2021
}
],
"slug": "dota-2-bts-pro-series",
"url": "https://www.beyondthesummit.tv/"
},
{
"id": 4362,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4362/Epic_Prime_League.png",
"modified_at": "2020-04-12T14:09:25Z",
"name": "Epic Prime League",
"series": [
{
"begin_at": "2020-04-14T22:00:00Z",
"description": null,
"end_at": "2020-05-17T15:13:00Z",
"full_name": "Season 1 2020",
"id": 2601,
"league_id": 4362,
"modified_at": "2020-05-17T23:51:15Z",
"name": "",
"season": "1",
"slug": "dota-2-epic-prime-league-1-2020",
"tier": null,
"winner_id": 127264,
"winner_type": "Team",
"year": 2020
}
],
"slug": "dota-2-epic-prime-league",
"url": null
},
{
"id": 4364,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4364/Red-bull-gaming-world.png",
"modified_at": "2020-04-17T13:05:10Z",
"name": "Red Bull Gaming World",
"series": [
{
"begin_at": "2020-04-17T22:00:00Z",
"description": null,
"end_at": "2020-04-18T17:25:00Z",
"full_name": "Season 1 2020",
"id": 2621,
"league_id": 4364,
"modified_at": "2020-04-18T23:11:27Z",
"name": null,
"season": "1",
"slug": "dota-2-red-bull-gaming-world-1-2020",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2020
}
],
"slug": "dota-2-red-bull-gaming-world",
"url": null
},
{
"id": 4365,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4365/600px-Ilusion_Spring_icon.png",
"modified_at": "2020-04-17T13:12:59Z",
"name": "Ilusion Spring",
"series": [
{
"begin_at": "2020-04-15T22:00:00Z",
"description": null,
"end_at": "2020-05-01T21:00:00Z",
"full_name": "2020",
"id": 2622,
"league_id": 4365,
"modified_at": "2020-04-17T13:14:11Z",
"name": null,
"season": null,
"slug": "dota-2-ilusion-spring-2020",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2020
}
],
"slug": "dota-2-ilusion-spring",
"url": null
},
{
"id": 4370,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4370/1BFyNj8Q_400x400.png",
"modified_at": "2021-04-08T17:52:33Z",
"name": "Betsafe Invitational",
"series": [
{
"begin_at": "2020-04-24T19:00:00Z",
"description": null,
"end_at": "2020-04-26T23:04:00Z",
"full_name": "2020",
"id": 2637,
"league_id": 4370,
"modified_at": "2020-04-26T23:37:24Z",
"name": null,
"season": null,
"slug": "dota-2-betsafe-invitational-2020",
"tier": null,
"winner_id": 126294,
"winner_type": "Team",
"year": 2020
}
],
"slug": "dota-2-betsafe-invitational",
"url": null
},
{
"id": 4371,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4371/600px-DPL-CDA_S1.png",
"modified_at": "2021-04-08T18:33:05Z",
"name": "DPL-CDA Professional League",
"series": [
{
"begin_at": "2020-04-19T22:00:00Z",
"description": null,
"end_at": "2020-04-21T09:32:00Z",
"full_name": "Wild Card season 1 2020",
"id": 2638,
"league_id": 4371,
"modified_at": "2020-04-21T10:15:50Z",
"name": "Wild Card",
"season": "1",
"slug": "dota-2-dpl-cda-wild-card-1-2020",
"tier": null,
"winner_id": 127232,
"winner_type": "Team",
"year": 2020
},
{
"begin_at": "2020-04-22T03:00:00Z",
"description": null,
"end_at": "2020-04-25T21:00:00Z",
"full_name": "Qualifier season 1 2020",
"id": 2639,
"league_id": 4371,
"modified_at": "2020-04-20T06:54:00Z",
"name": "Qualifier",
"season": "1",
"slug": "dota-2-dpl-cda-qualifier-1-2020",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2020
},
{
"begin_at": "2020-04-26T03:00:00Z",
"description": null,
"end_at": "2020-04-26T10:00:00Z",
"full_name": "Promotion season 1 2020",
"id": 2640,
"league_id": 4371,
"modified_at": "2020-04-20T06:58:02Z",
"name": "Promotion",
"season": "1",
"slug": "dota-2-dpl-cda-promotion-1-2020",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2020
},
{
"begin_at": "2020-04-26T22:00:00Z",
"description": null,
"end_at": "2020-05-24T21:00:00Z",
"full_name": "Season 1 2020",
"id": 2641,
"league_id": 4371,
"modified_at": "2020-04-20T07:02:03Z",
"name": null,
"season": "1",
"slug": "dota-2-dpl-cda-1-2020",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2020
},
{
"begin_at": "2020-06-22T05:00:00Z",
"description": null,
"end_at": "2020-06-23T13:00:00Z",
"full_name": "Promotion season 2 2020",
"id": 2792,
"league_id": 4371,
"modified_at": "2020-06-17T07:22:43Z",
"name": "Promotion",
"season": "2",
"slug": "dota-2-dpl-cda-promotion-2-2020",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2020
},
{
"begin_at": "2020-06-24T08:00:00Z",
"description": null,
"end_at": "2020-07-26T11:53:00Z",
"full_name": "Season 2 2020",
"id": 2804,
"league_id": 4371,
"modified_at": "2020-08-03T02:54:04Z",
"name": null,
"season": "2",
"slug": "dota-2-dpl-cda-2-2020",
"tier": "c",
"winner_id": 1687,
"winner_type": "Team",
"year": 2020
}
],
"slug": "dota-2-dpl-cda",
"url": null
},
{
"id": 4374,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4374/banner.png",
"modified_at": "2021-04-01T12:41:40Z",
"name": "Isolation Cup",
"series": [
{
"begin_at": "2020-04-26T22:00:00Z",
"description": null,
"end_at": "2020-05-02T18:00:00Z",
"full_name": "Closed Qualifier 2020",
"id": 2660,
"league_id": 4374,
"modified_at": "2020-04-27T06:29:32Z",
"name": "Closed Qualifier",
"season": null,
"slug": "dota-2-isolation-cup-closed-qualifier-2020",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2020
},
{
"begin_at": "2020-05-04T10:00:00Z",
"description": null,
"end_at": "2020-05-16T19:58:00Z",
"full_name": "2020",
"id": 2672,
"league_id": 4374,
"modified_at": "2020-05-16T23:38:37Z",
"name": null,
"season": null,
"slug": "dota-2-isolation-cup-2020",
"tier": null,
"winner_id": 126857,
"winner_type": "Team",
"year": 2020
}
],
"slug": "dota-2-isolation-cup",
"url": null
},
{
"id": 4376,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4376/600px-Realms_Collide.png",
"modified_at": "2021-04-08T19:16:20Z",
"name": "Realms Collide",
"series": [
{
"begin_at": "2020-04-29T19:00:00Z",
"description": null,
"end_at": "2020-05-04T00:13:00Z",
"full_name": "2020",
"id": 2664,
"league_id": 4376,
"modified_at": "2020-05-04T23:32:18Z",
"name": null,
"season": null,
"slug": "dota-2-realms-collide-2020",
"tier": null,
"winner_id": 126002,
"winner_type": "Team",
"year": 2020
},
{
"begin_at": "2020-11-12T20:00:00Z",
"description": null,
"end_at": "2020-12-07T02:53:00Z",
"full_name": "The Burning Darkness 2020",
"id": 3102,
"league_id": 4376,
"modified_at": "2020-12-07T02:54:13Z",
"name": "The Burning Darkness",
"season": null,
"slug": "dota-2-realms-collide-the-burning-darkness-2020",
"tier": "c",
"winner_id": 126289,
"winner_type": "Team",
"year": 2020
}
],
"slug": "dota-2-realms-collide",
"url": null
},
{
"id": 4378,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4378/Hephaestus_Cup.png",
"modified_at": "2021-04-08T18:34:09Z",
"name": "Hephaestus Cup",
"series": [
{
"begin_at": "2020-04-27T03:00:00Z",
"description": null,
"end_at": "2020-05-18T05:05:00Z",
"full_name": "2020",
"id": 2667,
"league_id": 4378,
"modified_at": "2020-05-18T05:07:48Z",
"name": null,
"season": null,
"slug": "dota-2-hephaestus-cup-2020",
"tier": null,
"winner_id": 126199,
"winner_type": "Team",
"year": 2020
}
],
"slug": "dota-2-hephaestus-cup",
"url": null
},
{
"id": 4379,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4379/600px-Cyber_bet_Cup_Spring_Series_-_EU.png",
"modified_at": "2020-05-01T06:31:09Z",
"name": "Cyber.bet Cup",
"series": [
{
"begin_at": "2020-05-07T09:00:00Z",
"description": null,
"end_at": "2020-05-10T21:00:00Z",
"full_name": "EU Closed qualifier Spring 2020",
"id": 2677,
"league_id": 4379,
"modified_at": "2020-05-11T23:22:07Z",
"name": "EU Closed qualifier",
"season": "Spring",
"slug": "dota-2-cyber-bet-cup-eu-closed-qualifier-spring-2020",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2020
},
{
"begin_at": "2020-05-11T03:00:00Z",
"description": null,
"end_at": "2020-05-17T08:47:00Z",
"full_name": "SEA Spring 2020",
"id": 2669,
"league_id": 4379,
"modified_at": "2020-05-17T23:48:43Z",
"name": "SEA",
"season": "Spring",
"slug": "dota-2-cyber-bet-cup-sea-spring-2020",
"tier": null,
"winner_id": 1714,
"winner_type": "Team",
"year": 2020
},
{
"begin_at": "2020-05-11T14:30:00Z",
"description": null,
"end_at": "2020-05-20T19:40:00Z",
"full_name": "EU Spring 2020",
"id": 2668,
"league_id": 4379,
"modified_at": "2020-05-20T23:11:59Z",
"name": "EU",
"season": "Spring",
"slug": "dota-2-cyber-bet-cup-eu-spring-2020",
"tier": null,
"winner_id": 126226,
"winner_type": "Team",
"year": 2020
}
],
"slug": "dota-2-cyber-bet-cup",
"url": null
},
{
"id": 4383,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4383/banner.png",
"modified_at": "2021-03-01T13:07:04Z",
"name": "Asia Spring Invitational",
"series": [
{
"begin_at": "2020-05-04T06:00:00Z",
"description": null,
"end_at": "2020-05-17T06:33:00Z",
"full_name": "2020",
"id": 2674,
"league_id": 4383,
"modified_at": "2020-05-18T23:01:59Z",
"name": null,
"season": null,
"slug": "dota-2-asia-spring-invitational-2020",
"tier": null,
"winner_id": 1662,
"winner_type": "Team",
"year": 2020
}
],
"slug": "dota-2-asia-spring-invitational",
"url": null
},
{
"id": 4387,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4387/Gamers_Without_Borders.png",
"modified_at": "2020-05-12T19:44:02Z",
"name": "Gamers Without Borders",
"series": [
{
"begin_at": "2020-05-14T22:00:00Z",
"description": null,
"end_at": "2020-05-17T19:55:00Z",
"full_name": "2020",
"id": 2689,
"league_id": 4387,
"modified_at": "2020-05-17T23:50:08Z",
"name": null,
"season": null,
"slug": "cs-go-gamers-without-borders-2020",
"tier": null,
"winner_id": 1656,
"winner_type": "Team",
"year": 2020
}
],
"slug": "cs-go-gamers-without-borders",
"url": null
},
{
"id": 4391,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4391/600px-SEA_Dota_Invitational_2020.png",
"modified_at": "2021-04-08T17:45:45Z",
"name": "SEA Dota Invitational",
"series": [
{
"begin_at": "2020-05-16T03:00:00Z",
"description": null,
"end_at": "2020-05-24T08:12:00Z",
"full_name": "2020",
"id": 2701,
"league_id": 4391,
"modified_at": "2020-05-27T01:12:18Z",
"name": null,
"season": null,
"slug": "dota-2-sea-dota-invitational-2020",
"tier": null,
"winner_id": 126199,
"winner_type": "Team",
"year": 2020
}
],
"slug": "dota-2-sea-dota-invitational",
"url": null
},
{
"id": 4393,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4393/World_E-sports_Legendary_League.png",
"modified_at": "2021-04-08T18:35:18Z",
"name": "Huya World E-sports Legendary League",
"series": [
{
"begin_at": "2020-05-20T22:00:00Z",
"description": null,
"end_at": "2020-05-23T13:00:00Z",
"full_name": "China Qualifier 2020",
"id": 2707,
"league_id": 4393,
"modified_at": "2020-05-20T08:36:04Z",
"name": "China Qualifier",
"season": null,
"slug": "dota-2-world-e-sports-legendary-league-china-qualifier-2020",
"tier": "c",
"winner_id": null,
"winner_type": null,
"year": 2020
},
{
"begin_at": "2020-06-02T03:00:00Z",
"description": null,
"end_at": "2020-06-12T08:18:00Z",
"full_name": "2020",
"id": 2734,
"league_id": 4393,
"modified_at": "2020-06-13T00:33:39Z",
"name": null,
"season": null,
"slug": "dota-2-world-e-sports-legendary-league-2020",
"tier": "c",
"winner_id": 1664,
"winner_type": "Team",
"year": 2020
}
],
"slug": "dota-2-world-e-sports-legendary-league",
"url": null
},
{
"id": 4398,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4398/600px-Vulkan_Fight_Series_S1.png",
"modified_at": "2020-05-25T07:47:43Z",
"name": "Vulkan Fights Series",
"series": [
{
"begin_at": "2020-05-27T22:00:00Z",
"description": null,
"end_at": "2020-06-18T19:06:00Z",
"full_name": "2020",
"id": 2723,
"league_id": 4398,
"modified_at": "2020-06-18T23:23:12Z",
"name": null,
"season": null,
"slug": "dota-2-vulkan-fights-series-2020",
"tier": "c",
"winner_id": 1649,
"winner_type": "Team",
"year": 2020
}
],
"slug": "dota-2-vulkan-fights-series",
"url": null
},
{
"id": 4400,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4400/600px-BLAST_Bounty_Hunt.png",
"modified_at": "2021-04-08T18:18:57Z",
"name": "BLAST Bounty Hunt",
"series": [
{
"begin_at": "2020-06-09T14:30:00Z",
"description": null,
"end_at": "2020-06-13T22:00:00Z",
"full_name": "2020",
"id": 2730,
"league_id": 4400,
"modified_at": "2020-05-29T19:05:47Z",
"name": null,
"season": null,
"slug": "dota-2-blast-bounty-hunt-2020",
"tier": "s",
"winner_id": null,
"winner_type": null,
"year": 2020
}
],
"slug": "dota-2-blast-bounty-hunt",
"url": "https://blastpremier.com/"
},
{
"id": 4408,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4408/600px-BEYOND_EPIC.png",
"modified_at": "2021-04-08T18:45:33Z",
"name": "BEYOND EPIC",
"series": [
{
"begin_at": "2020-06-07T22:00:00Z",
"description": null,
"end_at": "2020-06-11T19:49:00Z",
"full_name": "Europe/CIS closed qualifier season 1 2020",
"id": 2756,
"league_id": 4408,
"modified_at": "2020-06-13T00:32:35Z",
"name": "Europe/CIS closed qualifier",
"season": "1",
"slug": "dota-2-beyond-epic-europe-cis-closed-qualifier-1-2020",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2020
},
{
"begin_at": "2020-06-15T12:00:00Z",
"description": null,
"end_at": "2020-06-28T19:48:00Z",
"full_name": "Europe/CIS 2020",
"id": 2770,
"league_id": 4408,
"modified_at": "2020-07-01T00:25:54Z",
"name": "Europe/CIS",
"season": null,
"slug": "dota-2-beyond-epic-europe-cis-2020",
"tier": null,
"winner_id": 1656,
"winner_type": "Team",
"year": 2020
},
{
"begin_at": "2020-06-20T22:00:00Z",
"description": null,
"end_at": "2020-06-28T14:42:00Z",
"full_name": "China 2020",
"id": 2785,
"league_id": 4408,
"modified_at": "2020-07-01T00:24:29Z",
"name": "China",
"season": null,
"slug": "dota-2-beyond-epic-china-2020",
"tier": "b",
"winner_id": 126401,
"winner_type": "Team",
"year": 2020
}
],
"slug": "dota-2-beyond-epic",
"url": null
},
{
"id": 4414,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4414/320px-LbAsiaSummer.png",
"modified_at": "2021-04-08T18:36:15Z",
"name": "Asia Summer Championship",
"series": [
{
"begin_at": "2020-06-12T22:00:00Z",
"description": null,
"end_at": "2020-06-30T09:05:00Z",
"full_name": "2020",
"id": 2771,
"league_id": 4414,
"modified_at": "2020-07-01T00:23:02Z",
"name": null,
"season": null,
"slug": "dota-2-asia-summer-championship-2020",
"tier": "c",
"winner_id": 2061,
"winner_type": "Team",
"year": 2020
}
],
"slug": "dota-2-asia-summer-championship",
"url": null
},
{
"id": 4430,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4430/320px-TGAR.png",
"modified_at": "2021-04-08T18:47:03Z",
"name": "The Great American Rivalry",
"series": [
{
"begin_at": "2020-06-30T22:00:00Z",
"description": null,
"end_at": "2020-08-04T23:24:00Z",
"full_name": "Division 1 season 1 2020",
"id": 2811,
"league_id": 4430,
"modified_at": "2020-08-05T23:07:11Z",
"name": "Division 1",
"season": "1",
"slug": "dota-2-the-great-american-rivalry-division-1-1-2020",
"tier": null,
"winner_id": 126289,
"winner_type": "Team",
"year": 2020
},
{
"begin_at": "2020-07-04T16:00:00Z",
"description": null,
"end_at": "2020-08-23T22:00:00Z",
"full_name": "Division 2 season 1 2020",
"id": 2827,
"league_id": 4430,
"modified_at": "2020-08-27T11:10:43Z",
"name": "Division 2",
"season": "1",
"slug": "dota-2-the-great-american-rivalry-division-2-1-2020",
"tier": "c",
"winner_id": null,
"winner_type": null,
"year": 2020
}
],
"slug": "dota-2-the-great-american-rivalry",
"url": null
},
{
"id": 4436,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4436/Moon_Studio_Asian_League.png",
"modified_at": "2020-07-05T10:04:36Z",
"name": "Moon Studio Asian League",
"series": [
{
"begin_at": "2020-07-06T06:00:00Z",
"description": null,
"end_at": "2020-07-14T14:30:00Z",
"full_name": "Southeast Asia Qualifier season 1 2020",
"id": 2825,
"league_id": 4436,
"modified_at": "2020-07-14T22:55:39Z",
"name": "Southeast Asia Qualifier",
"season": "1",
"slug": "dota-2-moon-studio-asian-league-southeast-asia-qualifier-1-2020",
"tier": "c",
"winner_id": null,
"winner_type": null,
"year": 2020
},
{
"begin_at": "2020-07-16T03:00:00Z",
"description": null,
"end_at": "2020-07-25T12:34:00Z",
"full_name": "China Qualifier season 1 2020",
"id": 2837,
"league_id": 4436,
"modified_at": "2020-08-03T02:55:15Z",
"name": "China Qualifier",
"season": "1",
"slug": "dota-2-moon-studio-asian-league-china-qualifier-2020",
"tier": "c",
"winner_id": null,
"winner_type": null,
"year": 2020
},
{
"begin_at": "2020-07-29T03:00:00Z",
"description": null,
"end_at": "2020-08-09T13:36:00Z",
"full_name": "Season 1 2020",
"id": 2838,
"league_id": 4436,
"modified_at": "2020-08-12T23:34:34Z",
"name": null,
"season": "1",
"slug": "dota-2-moon-studio-asian-league-1-2020",
"tier": "b",
"winner_id": 127619,
"winner_type": "Team",
"year": 2020
}
],
"slug": "dota-2-moon-studio-asian-league",
"url": null
},
{
"id": 4440,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4440/600px-World_Esports_Elite_Competition.png",
"modified_at": "2020-07-14T12:45:56Z",
"name": "World Esports Elite Competition",
"series": [
{
"begin_at": "2020-07-15T03:00:00Z",
"description": null,
"end_at": "2020-07-15T04:00:00Z",
"full_name": "Southeast Asia 2020",
"id": 2834,
"league_id": 4440,
"modified_at": "2021-02-25T11:03:15Z",
"name": "Southeast Asia",
"season": null,
"slug": "dota-2-world-esports-elite-competition-southeast-asia-2020",
"tier": "c",
"winner_id": null,
"winner_type": null,
"year": 2020
}
],
"slug": "dota-2-world-esports-elite-competition",
"url": null
},
{
"id": 4447,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4447/600px-OMEGA_League.png",
"modified_at": "2020-07-30T09:30:50Z",
"name": "OMEGA",
"series": [
{
"begin_at": "2020-08-01T04:30:00Z",
"description": null,
"end_at": "2020-08-22T22:00:00Z",
"full_name": "Asia Divine Divison 2020",
"id": 2863,
"league_id": 4447,
"modified_at": "2020-08-27T11:11:14Z",
"name": "Asia Divine Divison",
"season": null,
"slug": "dota-2-omega-asia-divine-divison-2020",
"tier": "b",
"winner_id": null,
"winner_type": null,
"year": 2020
},
{
"begin_at": "2020-08-01T11:00:00Z",
"description": null,
"end_at": "2020-08-09T21:06:00Z",
"full_name": "Europe: Closed Qualifier 2020",
"id": 2862,
"league_id": 4447,
"modified_at": "2020-08-12T23:35:38Z",
"name": "Europe: Closed Qualifier",
"season": null,
"slug": "dota-2-omega-europe-closed-qualifier-2020",
"tier": "c",
"winner_id": null,
"winner_type": null,
"year": 2020
},
{
"begin_at": "2020-08-10T11:00:00Z",
"description": null,
"end_at": "2020-09-05T13:07:00Z",
"full_name": "Europe Divine Division 2020",
"id": 2903,
"league_id": 4447,
"modified_at": "2020-09-05T22:54:49Z",
"name": "Europe Divine Division",
"season": null,
"slug": "dota-2-omega-europe-divine-division-2020",
"tier": "b",
"winner_id": 125845,
"winner_type": "Team",
"year": 2020
},
{
"begin_at": "2020-08-14T11:00:00Z",
"description": null,
"end_at": "2020-09-06T20:09:00Z",
"full_name": "Europe Immortal Division 2020",
"id": 2865,
"league_id": 4447,
"modified_at": "2020-09-07T23:04:12Z",
"name": "Europe Immortal Division",
"season": null,
"slug": "dota-2-omega-europe-immortal-division-2020",
"tier": "s",
"winner_id": 1656,
"winner_type": "Team",
"year": 2020
},
{
"begin_at": "2020-08-16T23:00:00Z",
"description": null,
"end_at": "2020-09-06T00:41:00Z",
"full_name": "Americas Divine Division 2020",
"id": 2864,
"league_id": 4447,
"modified_at": "2020-09-06T00:42:20Z",
"name": "Americas Divine Division",
"season": null,
"slug": "dota-2-omega-americas-divine-division-2020",
"tier": "b",
"winner_id": 126289,
"winner_type": "Team",
"year": 2020
},
{
"begin_at": "2020-08-18T21:00:00Z",
"description": null,
"end_at": "2020-09-05T02:08:00Z",
"full_name": "Americas Ancient Division 2020",
"id": 2921,
"league_id": 4447,
"modified_at": "2020-09-05T02:12:01Z",
"name": "Americas Ancient Division",
"season": null,
"slug": "dota-2-omega-americas-ancient-division-2020",
"tier": "b",
"winner_id": 126972,
"winner_type": "Team",
"year": 2020
}
],
"slug": "dota-2-omega",
"url": null
},
{
"id": 4465,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4465/600px-China_Dota2_Pro_Cup_S1.png",
"modified_at": "2021-04-08T19:09:20Z",
"name": "China Pro Cup",
"series": [
{
"begin_at": "2020-09-17T08:00:00Z",
"description": null,
"end_at": "2020-10-03T10:12:00Z",
"full_name": "Season 1 2020",
"id": 2983,
"league_id": 4465,
"modified_at": "2020-10-04T20:29:32Z",
"name": null,
"season": "1",
"slug": "dota-2-china-pro-cup-1-2020",
"tier": "a",
"winner_id": null,
"winner_type": null,
"year": 2020
},
{
"begin_at": "2020-11-11T06:00:00Z",
"description": null,
"end_at": "2020-11-12T15:00:00Z",
"full_name": "Qualifier season 2 2020",
"id": 3076,
"league_id": 4465,
"modified_at": "2020-10-29T11:52:26Z",
"name": "Qualifier",
"season": "2",
"slug": "dota-2-china-pro-cup-qualifier-2-2020",
"tier": "c",
"winner_id": null,
"winner_type": null,
"year": 2020
},
{
"begin_at": "2020-11-14T07:00:00Z",
"description": null,
"end_at": "2020-11-29T12:36:00Z",
"full_name": "Season 2 2020",
"id": 3098,
"league_id": 4465,
"modified_at": "2020-11-29T13:14:03Z",
"name": null,
"season": "2",
"slug": "dota-2-china-pro-cup-2-2020",
"tier": "a",
"winner_id": 127978,
"winner_type": "Team",
"year": 2020
}
],
"slug": "dota-2-china-pro-cup",
"url": null
},
{
"id": 4474,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4474/Moon_Studio_Mid-Autumn_League.png",
"modified_at": "2020-09-28T03:22:19Z",
"name": "Moon Studio Mid-Autumn League",
"series": [
{
"begin_at": "2020-10-01T05:00:00Z",
"description": null,
"end_at": "2020-10-28T16:15:00Z",
"full_name": "2020",
"id": 3014,
"league_id": 4474,
"modified_at": "2020-10-28T16:50:55Z",
"name": null,
"season": null,
"slug": "dota-2-moon-studio-mid-autumn-league-2020",
"tier": "c",
"winner_id": 127872,
"winner_type": "Team",
"year": 2020
}
],
"slug": "dota-2-moon-studio-mid-autumn-league",
"url": null
},
{
"id": 4475,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4475/banner.png",
"modified_at": "2021-03-01T13:05:57Z",
"name": "AOC Play Dota2",
"series": [
{
"begin_at": "2020-10-05T10:55:00Z",
"description": null,
"end_at": "2020-10-13T12:52:00Z",
"full_name": "2020",
"id": 3030,
"league_id": 4475,
"modified_at": "2020-10-13T15:07:00Z",
"name": "",
"season": null,
"slug": "dota-2-aoc-play-dota2-2020",
"tier": "d",
"winner_id": null,
"winner_type": null,
"year": 2020
}
],
"slug": "dota-2-aoc-play-dota2",
"url": null
},
{
"id": 4481,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4481/600px-CDA-FDC.png",
"modified_at": "2021-04-08T19:21:31Z",
"name": "CDA-FDC",
"series": [
{
"begin_at": "2020-10-18T22:00:00Z",
"description": null,
"end_at": "2020-10-21T15:00:00Z",
"full_name": "Professional Championship Qualifier 2020",
"id": 3058,
"league_id": 4481,
"modified_at": "2020-10-19T07:58:50Z",
"name": "Professional Championship Qualifier",
"season": null,
"slug": "dota-2-cda-fdc-professional-championship-qualifier-2020",
"tier": "c",
"winner_id": null,
"winner_type": null,
"year": 2020
},
{
"begin_at": "2020-10-22T06:00:00Z",
"description": null,
"end_at": "2020-11-01T13:36:00Z",
"full_name": "Professional Championship 2020",
"id": 3059,
"league_id": 4481,
"modified_at": "2020-11-01T13:48:17Z",
"name": "Professional Championship",
"season": null,
"slug": "dota-2-cda-fdc-professional-championship-2020",
"tier": "a",
"winner_id": 1657,
"winner_type": "Team",
"year": 2020
},
{
"begin_at": "2020-11-13T06:00:00Z",
"description": null,
"end_at": "2020-11-14T12:56:00Z",
"full_name": "Professional Championship qualifier season 2 2020",
"id": 3114,
"league_id": 4481,
"modified_at": "2020-11-15T00:36:36Z",
"name": "Professional Championship qualifier",
"season": "2",
"slug": "dota-2-cda-fdc-professional-championship-qualifier-2-2020",
"tier": "c",
"winner_id": null,
"winner_type": null,
"year": 2020
},
{
"begin_at": "2020-11-15T06:00:00Z",
"description": null,
"end_at": "2020-11-25T11:15:00Z",
"full_name": "Professional Championship season 2 2020",
"id": 3118,
"league_id": 4481,
"modified_at": "2020-11-25T11:31:16Z",
"name": "Professional Championship",
"season": "2",
"slug": "dota-2-cda-fdc-professional-championship-2-2020",
"tier": "a",
"winner_id": 1657,
"winner_type": "Team",
"year": 2020
},
{
"begin_at": "2021-02-24T08:00:00Z",
"description": null,
"end_at": "2021-02-27T10:58:00Z",
"full_name": "Dota2 Championship Qualifier season 3 2021",
"id": 3370,
"league_id": 4481,
"modified_at": "2021-02-27T12:45:05Z",
"name": "Dota2 Championship Qualifier",
"season": "3",
"slug": "dota-2-fmwh-dota2-championship-qualifier-3-2021",
"tier": "b",
"winner_id": null,
"winner_type": null,
"year": 2021
},
{
"begin_at": "2021-03-01T08:00:00Z",
"description": null,
"end_at": "2021-03-20T12:41:00Z",
"full_name": "Dota2 Championship season 3 2021",
"id": 3369,
"league_id": 4481,
"modified_at": "2021-03-20T17:47:07Z",
"name": "Dota2 Championship",
"season": "3",
"slug": "dota-2-fmwh-dota2-championship-3-2021",
"tier": "a",
"winner_id": 1687,
"winner_type": "Team",
"year": 2021
}
],
"slug": "dota-2-cda-fdc",
"url": null
},
{
"id": 4487,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4487/600px-EPIC_League_2.png",
"modified_at": "2021-04-08T18:53:56Z",
"name": "Epic League",
"series": [
{
"begin_at": "2020-11-03T07:00:00Z",
"description": null,
"end_at": "2020-11-11T17:05:00Z",
"full_name": "Closed qualifier 2020",
"id": 3085,
"league_id": 4487,
"modified_at": "2020-11-11T23:41:38Z",
"name": "Closed qualifier",
"season": null,
"slug": "dota-2-epic-league-closed-qualifier-2020",
"tier": "c",
"winner_id": 127848,
"winner_type": "Team",
"year": 2020
},
{
"begin_at": "2020-11-11T18:00:00Z",
"description": null,
"end_at": "2020-12-13T17:17:00Z",
"full_name": "Division 2 2020",
"id": 3108,
"league_id": 4487,
"modified_at": "2020-12-14T03:24:47Z",
"name": "Division 2",
"season": null,
"slug": "dota-2-epic-league-division-2-2020",
"tier": "b",
"winner_id": 1706,
"winner_type": "Team",
"year": 2020
},
{
"begin_at": "2020-11-12T13:00:00Z",
"description": null,
"end_at": "2020-12-13T22:55:00Z",
"full_name": "Division 1 2020",
"id": 3107,
"league_id": 4487,
"modified_at": "2020-12-14T03:27:59Z",
"name": "Division 1",
"season": null,
"slug": "dota-2-epic-league-division-1-2020",
"tier": "a",
"winner_id": 1651,
"winner_type": "Team",
"year": 2020
},
{
"begin_at": "2020-12-07T10:00:00Z",
"description": null,
"end_at": "2020-12-07T20:55:00Z",
"full_name": "Play-ins 2020",
"id": 3171,
"league_id": 4487,
"modified_at": "2020-12-08T13:06:41Z",
"name": "Play-ins ",
"season": null,
"slug": "dota-2-epic-league-play-ins-2020",
"tier": "b",
"winner_id": null,
"winner_type": null,
"year": 2020
},
{
"begin_at": "2021-03-02T13:00:00Z",
"description": null,
"end_at": "2021-03-13T22:25:00Z",
"full_name": "Group Stage season 3 2021",
"id": 3393,
"league_id": 4487,
"modified_at": "2021-03-18T09:13:22Z",
"name": "Group Stage",
"season": "3",
"slug": "dota-2-epic-league-group-stage-3-2021",
"tier": "b",
"winner_id": null,
"winner_type": null,
"year": 2021
},
{
"begin_at": "2021-03-14T16:00:00Z",
"description": null,
"end_at": "2021-03-21T20:12:00Z",
"full_name": "Division 1 season 3 2021",
"id": 3438,
"league_id": 4487,
"modified_at": "2021-03-21T20:34:23Z",
"name": "Division 1",
"season": "3",
"slug": "dota-2-epic-league-division-1-3-2021",
"tier": "a",
"winner_id": 126226,
"winner_type": "Team",
"year": 2021
},
{
"begin_at": "2021-03-15T10:00:00Z",
"description": null,
"end_at": "2021-03-21T14:54:00Z",
"full_name": "Division 2 season 3 2021",
"id": 3439,
"league_id": 4487,
"modified_at": "2021-03-21T15:42:44Z",
"name": "Division 2",
"season": "3",
"slug": "dota-2-epic-league-division-2-3-2021",
"tier": "c",
"winner_id": 128357,
"winner_type": "Team",
"year": 2021
}
],
"slug": "dota-2-epic-league",
"url": null
},
{
"id": 4489,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4489/600px-Motivation_Cup.png",
"modified_at": "2020-11-12T09:28:38Z",
"name": "Motivation Cup",
"series": [
{
"begin_at": "2020-11-07T10:00:00Z",
"description": null,
"end_at": "2020-11-09T13:59:00Z",
"full_name": "2020",
"id": 3096,
"league_id": 4489,
"modified_at": "2020-11-11T00:10:01Z",
"name": null,
"season": null,
"slug": "dota-2-motivation-cup-2020",
"tier": "d",
"winner_id": null,
"winner_type": null,
"year": 2020
}
],
"slug": "dota-2-motivation-cup",
"url": null
},
{
"id": 4499,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4499/banner.png",
"modified_at": "2021-04-01T12:42:26Z",
"name": "Moon Studio Carnival Cup",
"series": [
{
"begin_at": "2020-12-01T05:00:00Z",
"description": null,
"end_at": "2020-12-19T17:47:00Z",
"full_name": "2020",
"id": 3154,
"league_id": 4499,
"modified_at": "2020-12-19T17:51:44Z",
"name": null,
"season": null,
"slug": "dota-2-moon-studio-carnival-cup-2020",
"tier": "d",
"winner_id": 127872,
"winner_type": "Team",
"year": 2020
}
],
"slug": "dota-2-moon-studio-carnival-cup",
"url": null
},
{
"id": 4503,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4503/800px-WCAA_Winter_Challenge_Cup.png",
"modified_at": "2021-04-08T18:09:22Z",
"name": "WCAA",
"series": [
{
"begin_at": "2020-12-09T23:00:00Z",
"description": null,
"end_at": "2021-01-03T08:21:00Z",
"full_name": "Winter Challenge Cup 2020",
"id": 3180,
"league_id": 4503,
"modified_at": "2021-01-03T08:22:03Z",
"name": "Winter Challenge Cup",
"season": "",
"slug": "dota-2-wcaa-winter-challenge-cup-winter-2020",
"tier": "c",
"winner_id": 128138,
"winner_type": "Team",
"year": 2020
},
{
"begin_at": "2021-02-03T23:00:00Z",
"description": null,
"end_at": "2021-03-02T07:35:00Z",
"full_name": "Spring Festival Cup 2021",
"id": 3332,
"league_id": 4503,
"modified_at": "2021-03-04T08:37:36Z",
"name": "Spring Festival Cup",
"season": "",
"slug": "dota-2-wcaa-spring-festival-cup-spring-2021",
"tier": "c",
"winner_id": 128515,
"winner_type": "Team",
"year": 2021
}
],
"slug": "dota-2-wcaa",
"url": "https://www.wcaa.com.cn/"
},
{
"id": 4506,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4506/banner.png",
"modified_at": "2021-04-01T12:40:46Z",
"name": "Huya Winter Invitational",
"series": [
{
"begin_at": "2020-12-13T06:00:00Z",
"description": null,
"end_at": "2020-12-27T13:52:00Z",
"full_name": "Dota 2 Winter Invitational Winter 2020",
"id": 3188,
"league_id": 4506,
"modified_at": "2020-12-27T15:07:16Z",
"name": "Dota 2 Winter Invitational",
"season": "Winter",
"slug": "dota-2-huya-winter-invitational-dota-2-winter-invitational-winter-2020",
"tier": "c",
"winner_id": 3364,
"winner_type": "Team",
"year": 2020
}
],
"slug": "dota-2-huya-winter-invitational",
"url": null
},
{
"id": 4517,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4517/Dota-Pro-Circuit-tournamentsquare.png",
"modified_at": "2021-04-08T19:10:40Z",
"name": "Dota Pro Circuit ",
"series": [
{
"begin_at": "2021-01-04T05:00:00Z",
"description": null,
"end_at": "2021-01-11T23:00:00Z",
"full_name": "Southeast Asia Closed Qualifier season 1 2021",
"id": 3226,
"league_id": 4517,
"modified_at": "2021-01-11T09:36:42Z",
"name": "Southeast Asia Closed Qualifier",
"season": "1",
"slug": "dota-2-dota-pro-circuit-southeast-asia-closed-qualifier-season-1-2021",
"tier": "c",
"winner_id": null,
"winner_type": null,
"year": 2021
},
{
"begin_at": "2021-01-06T20:00:00Z",
"description": null,
"end_at": "2021-01-10T02:15:00Z",
"full_name": "South America Regional League Closed Qualifier season 1 2021",
"id": 3227,
"league_id": 4517,
"modified_at": "2021-01-10T03:47:28Z",
"name": "South America Regional League Closed Qualifier",
"season": "1",
"slug": "dota-2-dota-pro-circuit-south-america-regional-league-closed-qualifier-1-2020",
"tier": "c",
"winner_id": null,
"winner_type": null,
"year": 2021
},
{
"begin_at": "2021-01-07T20:00:00Z",
"description": null,
"end_at": "2021-01-13T23:39:00Z",
"full_name": "North America Closed Qualifier 2021",
"id": 3238,
"league_id": 4517,
"modified_at": "2021-01-13T23:41:10Z",
"name": "North America Closed Qualifier",
"season": null,
"slug": "dota-2-dota-pro-circuit-north-america-closed-qualifier-2021",
"tier": "c",
"winner_id": null,
"winner_type": null,
"year": 2021
},
{
"begin_at": "2021-01-08T03:00:00Z",
"description": null,
"end_at": "2021-01-10T13:33:00Z",
"full_name": "China Closed Qualifier season 1 2021",
"id": 3231,
"league_id": 4517,
"modified_at": "2021-01-11T09:26:33Z",
"name": "China Closed Qualifier",
"season": "1",
"slug": "dota-2-dota-pro-circuit-china-closed-qualifier-1-2021",
"tier": "c",
"winner_id": null,
"winner_type": null,
"year": 2021
},
{
"begin_at": "2021-01-18T05:00:00Z",
"description": null,
"end_at": "2021-03-12T11:16:00Z",
"full_name": "China Lower Division season 1 2021",
"id": 3276,
"league_id": 4517,
"modified_at": "2021-03-12T18:46:15Z",
"name": "China Lower Division",
"season": "1",
"slug": "dota-2-dota-pro-circuit-china-lower-division-1-2021",
"tier": "b",
"winner_id": 126401,
"winner_type": "Team",
"year": 2021
},
{
"begin_at": "2021-01-18T11:00:00Z",
"description": null,
"end_at": "2021-02-25T08:00:00Z",
"full_name": "Southeast Asia Lower Division 2021",
"id": 3266,
"league_id": 4517,
"modified_at": "2021-02-17T14:28:01Z",
"name": "Southeast Asia Lower Division",
"season": null,
"slug": "dota-2-dota-pro-circuit-southeast-asia-lower-division-2021",
"tier": "b",
"winner_id": null,
"winner_type": null,
"year": 2021
},
{
"begin_at": "2021-01-18T20:00:00Z",
"description": null,
"end_at": "2021-02-26T19:29:00Z",
"full_name": "South America Lower Division 2021",
"id": 3274,
"league_id": 4517,
"modified_at": "2021-02-28T19:17:28Z",
"name": "South America Lower Division",
"season": null,
"slug": "dota-2-dota-pro-circuit-south-america-lower-division-2021",
"tier": "b",
"winner_id": 127344,
"winner_type": "Team",
"year": 2021
},
{
"begin_at": "2021-01-18T23:00:00Z",
"description": null,
"end_at": "2021-02-28T01:17:00Z",
"full_name": "North America Lower Division 2021",
"id": 3272,
"league_id": 4517,
"modified_at": "2021-02-28T08:10:39Z",
"name": "North America Lower Division",
"season": null,
"slug": "dota-2-dota-pro-circuit-north-america-lower-division-2021",
"tier": "b",
"winner_id": null,
"winner_type": null,
"year": 2021
},
{
"begin_at": "2021-01-19T08:00:00Z",
"description": null,
"end_at": "2021-03-14T13:00:00Z",
"full_name": "China Upper Division season 1 2021",
"id": 3278,
"league_id": 4517,
"modified_at": "2021-03-13T00:05:53Z",
"name": "China Upper Division",
"season": "1",
"slug": "dota-2-dota-pro-circuit-china-upper-division-1-2021",
"tier": "a",
"winner_id": null,
"winner_type": null,
"year": 2021
},
{
"begin_at": "2021-01-19T23:00:00Z",
"description": null,
"end_at": "2021-02-28T02:00:00Z",
"full_name": "North America Upper Division 2021",
"id": 3271,
"league_id": 4517,
"modified_at": "2021-02-26T07:57:41Z",
"name": "North America Upper Division",
"season": null,
"slug": "dota-2-dota-pro-circuit-north-america-upper-division-2021",
"tier": "a",
"winner_id": null,
"winner_type": null,
"year": 2021
},
{
"begin_at": "2021-01-20T20:00:00Z",
"description": null,
"end_at": "2021-02-27T11:49:00Z",
"full_name": "Southeast Asia Upper Division 2021",
"id": 3265,
"league_id": 4517,
"modified_at": "2021-02-27T19:09:58Z",
"name": "Southeast Asia Upper Division",
"season": null,
"slug": "dota-2-dota-pro-circuit-southeast-asia-upper-division-2021",
"tier": "a",
"winner_id": null,
"winner_type": null,
"year": 2021
},
{
"begin_at": "2021-01-20T20:00:00Z",
"description": null,
"end_at": "2021-02-26T21:59:00Z",
"full_name": "South America Upper Division 2021",
"id": 3273,
"league_id": 4517,
"modified_at": "2021-02-28T19:15:41Z",
"name": "South America Upper Division",
"season": null,
"slug": "dota-2-dota-pro-circuit-south-america-upper-division-2021",
"tier": "a",
"winner_id": 126002,
"winner_type": "Team",
"year": 2021
},
{
"begin_at": "2021-04-04T21:00:00Z",
"description": null,
"end_at": "2021-04-05T01:47:00Z",
"full_name": "South American Closed Qualifier season 2 2021",
"id": 3499,
"league_id": 4517,
"modified_at": "2021-04-06T19:44:21Z",
"name": "South American Closed Qualifier",
"season": "2",
"slug": "dota-2-dota-pro-circuit-south-american-closed-qualifier-2-2021",
"tier": "c",
"winner_id": null,
"winner_type": null,
"year": 2021
},
{
"begin_at": "2021-04-06T19:00:00Z",
"description": null,
"end_at": "2021-04-08T22:00:00Z",
"full_name": "North America Closed Qualifier season 2 2021",
"id": 3508,
"league_id": 4517,
"modified_at": "2021-04-05T17:01:44Z",
"name": "North America Closed Qualifier",
"season": "2",
"slug": "dota-2-dota-pro-circuit-north-america-closed-qualifier-2-2021",
"tier": "c",
"winner_id": null,
"winner_type": null,
"year": 2021
},
{
"begin_at": "2021-04-12T05:00:00Z",
"description": null,
"end_at": "2021-05-23T22:00:00Z",
"full_name": "China Lower Division season 2 2021",
"id": 3528,
"league_id": 4517,
"modified_at": "2021-04-10T06:53:32Z",
"name": "China Lower Division",
"season": "2",
"slug": "dota-2-dota-pro-circuit-china-lower-division-2-2021",
"tier": "b",
"winner_id": null,
"winner_type": null,
"year": 2021
},
{
"begin_at": "2021-04-12T10:00:00Z",
"description": null,
"end_at": "2021-05-20T07:00:00Z",
"full_name": "Southeast Asia Lower Division season 2 2021",
"id": 3527,
"league_id": 4517,
"modified_at": "2021-04-10T06:39:37Z",
"name": "Southeast Asia Lower Division",
"season": "2",
"slug": "dota-2-dota-pro-circuit-southeast-asia-lower-division-2-2021",
"tier": "b",
"winner_id": null,
"winner_type": null,
"year": 2021
},
{
"begin_at": "2021-04-12T19:00:00Z",
"description": null,
"end_at": "2021-05-20T22:00:00Z",
"full_name": "South America Lower Division season 2 2021",
"id": 3517,
"league_id": 4517,
"modified_at": "2021-04-08T18:10:25Z",
"name": "South America Lower Division",
"season": "2",
"slug": "dota-2-dota-pro-circuit-south-america-lower-division-2-2021",
"tier": "b",
"winner_id": null,
"winner_type": null,
"year": 2021
},
{
"begin_at": "2021-04-12T22:00:00Z",
"description": null,
"end_at": "2021-05-23T01:00:00Z",
"full_name": "North America Lower Division season 2 2021",
"id": 3535,
"league_id": 4517,
"modified_at": "2021-04-11T08:38:43Z",
"name": "North America Lower Division",
"season": "2",
"slug": "dota-2-dota-pro-circuit-north-america-lower-division-2-2021",
"tier": "b",
"winner_id": null,
"winner_type": null,
"year": 2021
},
{
"begin_at": "2021-04-13T11:00:00Z",
"description": null,
"end_at": "2021-05-23T22:00:00Z",
"full_name": "China Upper Division season 2 2021",
"id": 3530,
"league_id": 4517,
"modified_at": "2021-04-10T07:38:39Z",
"name": "China Upper Division",
"season": "2",
"slug": "dota-2-dota-pro-circuit-china-upper-division-2-2021",
"tier": "a",
"winner_id": null,
"winner_type": null,
"year": 2021
},
{
"begin_at": "2021-04-13T19:00:00Z",
"description": null,
"end_at": "2021-05-21T22:00:00Z",
"full_name": "South America Upper Division season 2 2021",
"id": 3516,
"league_id": 4517,
"modified_at": "2021-04-08T18:09:06Z",
"name": "South America Upper Division",
"season": "2",
"slug": "dota-2-dota-pro-circuit-south-america-upper-division-2-2021",
"tier": "a",
"winner_id": null,
"winner_type": null,
"year": 2021
},
{
"begin_at": "2021-04-13T22:00:00Z",
"description": null,
"end_at": "2021-05-21T01:00:00Z",
"full_name": "North America Upper Division season 2 2021",
"id": 3534,
"league_id": 4517,
"modified_at": "2021-04-11T08:39:02Z",
"name": "North America Upper Division",
"season": "2",
"slug": "dota-2-dota-pro-circuit-north-america-upper-division-2-2021",
"tier": "a",
"winner_id": null,
"winner_type": null,
"year": 2021
},
{
"begin_at": "2021-04-14T07:00:00Z",
"description": null,
"end_at": "2021-05-20T13:00:00Z",
"full_name": "Southeast Asia Upper Division season 2 2021",
"id": 3529,
"league_id": 4517,
"modified_at": "2021-04-10T07:05:48Z",
"name": "Southeast Asia Upper Division",
"season": "2",
"slug": "dota-2-dota-pro-circuit-southeast-asia-upper-division-2-2021",
"tier": "a",
"winner_id": null,
"winner_type": null,
"year": 2021
}
],
"slug": "dota-2-dota-pro-circuit",
"url": null
},
{
"id": 4523,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4523/Moon_Studio_Kagura_Championships.png",
"modified_at": "2021-04-01T12:43:44Z",
"name": "Moon Studio Kagura Championship",
"series": [
{
"begin_at": "2021-01-12T05:00:00Z",
"description": null,
"end_at": "2021-01-17T11:00:00Z",
"full_name": "2021",
"id": 3253,
"league_id": 4523,
"modified_at": "2021-01-17T23:46:19Z",
"name": null,
"season": null,
"slug": "dota-2-moon-studio-kagura-championship-2021",
"tier": "d",
"winner_id": 2061,
"winner_type": "Team",
"year": 2021
}
],
"slug": "dota-2-moon-studio-kagura-championship",
"url": null
},
{
"id": 4526,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4526/600px-Snow_Sweet_Snow_Dota_2.png",
"modified_at": "2021-01-17T16:28:02Z",
"name": "Snow Sweet Snow",
"series": [
{
"begin_at": "2021-01-18T09:00:00Z",
"description": null,
"end_at": "2021-02-12T22:40:00Z",
"full_name": "Snow Sweet Snow #1 2021",
"id": 3283,
"league_id": 4526,
"modified_at": "2021-02-12T22:44:04Z",
"name": "Snow Sweet Snow #1",
"season": null,
"slug": "dota-2-snow-sweet-snow-snow-sweet-snow-1-2021",
"tier": "d",
"winner_id": 128302,
"winner_type": "Team",
"year": 2021
},
{
"begin_at": "2021-02-15T09:00:00Z",
"description": null,
"end_at": "2021-03-11T19:38:00Z",
"full_name": "Season 2 2021",
"id": 3354,
"league_id": 4526,
"modified_at": "2021-03-11T20:47:34Z",
"name": "",
"season": "2",
"slug": "dota-2-snow-sweet-snow-2-2021",
"tier": "d",
"winner_id": 128302,
"winner_type": "Team",
"year": 2021
}
],
"slug": "dota-2-snow-sweet-snow",
"url": null
},
{
"id": 4535,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4535/600px-Moon_Studio.png",
"modified_at": "2021-04-08T19:34:31Z",
"name": "Moon Studio",
"series": [
{
"begin_at": "2021-02-10T05:00:00Z",
"description": null,
"end_at": "2021-03-06T08:54:00Z",
"full_name": "New Year Showdown 2021",
"id": 3342,
"league_id": 4535,
"modified_at": "2021-03-06T10:04:06Z",
"name": "New Year Showdown",
"season": null,
"slug": "dota-2-moon-studio-new-year-showdown-2021",
"tier": "d",
"winner_id": 127872,
"winner_type": "Team",
"year": 2021
},
{
"begin_at": "2021-03-15T06:00:00Z",
"description": null,
"end_at": "2021-04-11T10:23:00Z",
"full_name": "Spring Trophy Spring 2021",
"id": 3440,
"league_id": 4535,
"modified_at": "2021-04-11T10:56:11Z",
"name": "Spring Trophy",
"season": "Spring",
"slug": "dota-2-moon-studio-spring-trophy-spring-2021",
"tier": "d",
"winner_id": 1660,
"winner_type": "Team",
"year": 2021
}
],
"slug": "dota-2-moon-studio",
"url": "https://vk.com/moonstudio_ru"
},
{
"id": 4541,
"image_url": null,
"modified_at": "2021-02-22T22:27:47Z",
"name": "FMWH",
"series": [],
"slug": "dota-2-fmwh",
"url": null
},
{
"id": 4552,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4552/600px-I-League_2021.png",
"modified_at": "2021-04-08T19:22:55Z",
"name": "i-League",
"series": [
{
"begin_at": "2021-03-22T06:00:00Z",
"description": null,
"end_at": "2021-03-31T11:09:00Z",
"full_name": "Closed Qualifier 2021",
"id": 3458,
"league_id": 4552,
"modified_at": "2021-04-02T12:48:57Z",
"name": "Closed Qualifier",
"season": null,
"slug": "dota-2-i-league-closed-qualifier-2021",
"tier": "b",
"winner_id": 127867,
"winner_type": "Team",
"year": 2021
},
{
"begin_at": "2021-04-03T10:00:00Z",
"description": null,
"end_at": null,
"full_name": "2021",
"id": 3495,
"league_id": 4552,
"modified_at": "2021-04-01T14:51:06Z",
"name": null,
"season": null,
"slug": "dota-2-i-league-2021",
"tier": "a",
"winner_id": null,
"winner_type": null,
"year": 2021
}
],
"slug": "dota-2-i-league",
"url": null
},
{
"id": 4558,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4558/D2CL_logo.png",
"modified_at": "2021-04-04T11:44:48Z",
"name": "Dota 2 Champions League",
"series": [
{
"begin_at": "2021-04-05T09:00:00Z",
"description": null,
"end_at": "2021-04-12T21:10:00Z",
"full_name": "Season 1 2021",
"id": 3504,
"league_id": 4558,
"modified_at": "2021-04-12T21:19:26Z",
"name": null,
"season": "1",
"slug": "dota-2-dota-2-champions-league-1-2021",
"tier": "c",
"winner_id": 1669,
"winner_type": "Team",
"year": 2021
}
],
"slug": "dota-2-dota-2-champions-league",
"url": "http://epicenter.gg/en"
},
{
"id": 4561,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4561/600px-OEDL_Fall_Invitational.png",
"modified_at": "2021-04-11T20:07:30Z",
"name": "OEDL Fall Invitational",
"series": [
{
"begin_at": "2021-04-19T06:00:00Z",
"description": null,
"end_at": "2021-04-25T10:00:00Z",
"full_name": "Closed Qualifier 2021",
"id": 3537,
"league_id": 4561,
"modified_at": "2021-04-11T20:11:11Z",
"name": "Closed Qualifier",
"season": null,
"slug": "dota-2-oedl-fall-invitational-closed-qualifier-2021",
"tier": "d",
"winner_id": null,
"winner_type": null,
"year": 2021
}
],
"slug": "dota-2-oedl-fall-invitational",
"url": null
},
{
"id": 4562,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4562/positive-fire-games1615995754399-logo-1.png",
"modified_at": "2021-04-22T10:15:12Z",
"name": "Positive Fire Games",
"series": [
{
"begin_at": "2021-04-12T10:00:00Z",
"description": null,
"end_at": null,
"full_name": "2021",
"id": 3538,
"league_id": 4562,
"modified_at": "2021-04-12T07:20:33Z",
"name": null,
"season": null,
"slug": "dota-2-positive-fire-games-2021",
"tier": "d",
"winner_id": null,
"winner_type": null,
"year": 2021
}
],
"slug": "dota-2-positive-fire-games",
"url": null
}
],
"name": "Dota 2",
"slug": "dota-2"
}
}
},
"schema": {
"$ref": "#/components/schemas/Videogame"
}
}
},
"description": "A videogame"
},
"Videogames": {
"content": {
"application/json": {
"examples": {
"/videogames?page[size]=1&filter[slug]=ow": {
"description": "/videogames?page[size]=1&filter[slug]=ow",
"value": [
{
"current_version": null,
"id": 14,
"leagues": [
{
"id": 4105,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4105/owwc-logo-33fea02e08cf9855977cef3f7fa422cb5eced4083b868f5bc10ee4030ee67aa706f75d6cb21111a09acb70b079ab29f8106104c022f82ff32bb3b188c24f442d.png",
"modified_at": "2020-02-03T11:05:52Z",
"name": "World Cup",
"series": [
{
"begin_at": "2017-07-13T22:00:00Z",
"description": null,
"end_at": "2017-11-05T22:00:00Z",
"full_name": "2017",
"id": 1371,
"league_id": 4105,
"modified_at": "2019-05-28T16:16:43Z",
"name": null,
"season": "",
"slug": "ow-world-cup-2017",
"tier": null,
"winner_id": 1603,
"winner_type": "Team",
"year": 2017
},
{
"begin_at": "2018-08-16T22:00:00Z",
"description": null,
"end_at": "2018-11-02T23:00:00Z",
"full_name": "2018",
"id": 1537,
"league_id": 4105,
"modified_at": "2019-05-28T16:56:52Z",
"name": "",
"season": null,
"slug": "ow-world-cup-2018",
"tier": null,
"winner_id": 1603,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2019-10-31T17:00:00Z",
"description": null,
"end_at": "2019-11-03T03:44:00Z",
"full_name": "2019",
"id": 1893,
"league_id": 4105,
"modified_at": "2020-03-06T11:09:06Z",
"name": null,
"season": null,
"slug": "ow-world-cup-2019",
"tier": null,
"winner_id": 1610,
"winner_type": "Team",
"year": 2019
}
],
"slug": "ow-world-cup",
"url": "https://worldcup.playoverwatch.com/en-us/"
},
{
"id": 4135,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4135/esports-overwatch-36d8f7f486d363c1.png",
"modified_at": "2021-02-23T12:10:00Z",
"name": "OWL",
"series": [
{
"begin_at": "2017-12-07T00:00:00Z",
"description": null,
"end_at": "2018-07-28T21:40:00Z",
"full_name": "2018",
"id": 1500,
"league_id": 4135,
"modified_at": "2021-02-23T12:14:44Z",
"name": "",
"season": "",
"slug": "overwatch-league-1-2018",
"tier": null,
"winner_id": 1555,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2019-02-09T20:00:00Z",
"description": null,
"end_at": "2019-09-29T21:07:00Z",
"full_name": "2019",
"id": 1670,
"league_id": 4135,
"modified_at": "2021-02-23T12:14:39Z",
"name": "",
"season": "",
"slug": "overwatch-league-2019",
"tier": null,
"winner_id": 1549,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2020-02-08T17:00:00Z",
"description": null,
"end_at": "2020-10-10T15:42:00Z",
"full_name": "2020",
"id": 1979,
"league_id": 4135,
"modified_at": "2021-02-23T12:14:33Z",
"name": null,
"season": "",
"slug": "overwatch-league-2020",
"tier": null,
"winner_id": 1549,
"winner_type": "Team",
"year": 2020
},
{
"begin_at": "2020-05-22T17:00:00Z",
"description": null,
"end_at": "2020-05-25T01:29:00Z",
"full_name": "May Melee 2020",
"id": 3491,
"league_id": 4135,
"modified_at": "2021-03-31T16:16:44Z",
"name": "May Melee",
"season": null,
"slug": "overwatch-league-may-melee-2020",
"tier": "s",
"winner_id": null,
"winner_type": null,
"year": 2020
},
{
"begin_at": "2020-06-28T23:46:00Z",
"description": null,
"end_at": "2020-07-06T03:31:00Z",
"full_name": "Showdown Summer 2020",
"id": 3492,
"league_id": 4135,
"modified_at": "2021-03-31T16:16:42Z",
"name": "Showdown",
"season": "Summer",
"slug": "overwatch-league-showdown-summer-2020",
"tier": "s",
"winner_id": null,
"winner_type": null,
"year": 2020
},
{
"begin_at": "2020-08-03T01:00:00Z",
"description": null,
"end_at": "2020-08-09T23:10:00Z",
"full_name": "Countdown Cup 2020",
"id": 3493,
"league_id": 4135,
"modified_at": "2021-03-31T16:16:38Z",
"name": "Countdown Cup",
"season": null,
"slug": "overwatch-league-countdown-cup-2020",
"tier": "s",
"winner_id": null,
"winner_type": null,
"year": 2020
},
{
"begin_at": "2021-04-16T19:00:00Z",
"description": null,
"end_at": null,
"full_name": "May Melee 2021",
"id": 3377,
"league_id": 4135,
"modified_at": "2021-03-31T15:22:15Z",
"name": "May Melee",
"season": null,
"slug": "overwatch-league-may-melee-2021",
"tier": "s",
"winner_id": null,
"winner_type": null,
"year": 2021
},
{
"begin_at": "2021-05-21T19:00:00Z",
"description": null,
"end_at": null,
"full_name": "June Joust 2021",
"id": 3378,
"league_id": 4135,
"modified_at": "2021-03-31T15:22:06Z",
"name": "June Joust",
"season": null,
"slug": "overwatch-league-june-joust-2021",
"tier": "s",
"winner_id": null,
"winner_type": null,
"year": 2021
},
{
"begin_at": "2021-06-25T19:00:00Z",
"description": null,
"end_at": null,
"full_name": "Showndown Summer 2021",
"id": 3379,
"league_id": 4135,
"modified_at": "2021-03-31T15:21:56Z",
"name": "Showndown",
"season": "Summer",
"slug": "overwatch-league-showndown-2021",
"tier": "s",
"winner_id": null,
"winner_type": null,
"year": 2021
},
{
"begin_at": "2021-07-30T19:00:00Z",
"description": null,
"end_at": null,
"full_name": "Countdown Cup 2021",
"id": 3380,
"league_id": 4135,
"modified_at": "2021-03-31T15:21:40Z",
"name": "Countdown Cup",
"season": null,
"slug": "overwatch-league-countdown-cup-2021",
"tier": "s",
"winner_id": null,
"winner_type": null,
"year": 2021
}
],
"slug": "overwatch-league",
"url": "https://overwatchleague.com/en-us/"
},
{
"id": 4181,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4181/600px-Overwatch_Contenders_logo_2018.png",
"modified_at": "2020-02-03T11:05:52Z",
"name": "Contenders Europe",
"series": [
{
"begin_at": "2018-11-18T17:00:00Z",
"description": null,
"end_at": "2019-01-12T19:00:00Z",
"full_name": "Season 3 2018",
"id": 1651,
"league_id": 4181,
"modified_at": "2020-01-02T10:41:29Z",
"name": "",
"season": "3",
"slug": "ow-overwatch-contenders-3-2018",
"tier": null,
"winner_id": 3464,
"winner_type": "Team",
"year": 2018
},
{
"begin_at": "2019-02-28T19:00:00Z",
"description": null,
"end_at": "2019-05-03T20:15:00Z",
"full_name": "Season 1 2019",
"id": 1750,
"league_id": 4181,
"modified_at": "2019-05-28T16:52:09Z",
"name": null,
"season": "1",
"slug": "ow-overwatch-contenders-1-2019",
"tier": null,
"winner_id": 3469,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-06-13T18:00:00Z",
"description": null,
"end_at": "2019-08-17T18:00:00Z",
"full_name": "Season 2 2019",
"id": 1797,
"league_id": 4181,
"modified_at": "2020-01-02T10:42:48Z",
"name": null,
"season": "2",
"slug": "ow-overwatch-contenders-2-2019",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2019
}
],
"slug": "ow-overwatch-contenders",
"url": "https://overwatchcontenders.com/"
},
{
"id": 4183,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4183/600px-Overwatch_Contenders_logo_2018.png",
"modified_at": "2020-02-03T11:05:51Z",
"name": "Contenders Korea",
"series": [
{
"begin_at": "2018-11-23T23:00:00Z",
"description": null,
"end_at": "2019-01-21T19:00:00Z",
"full_name": "Season 3 2018",
"id": 1662,
"league_id": 4183,
"modified_at": "2018-11-24T16:01:21Z",
"name": null,
"season": "3",
"slug": "ow-contenders-korea-3-2018",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2018
},
{
"begin_at": "2019-03-04T23:00:00Z",
"description": null,
"end_at": "2019-05-12T08:00:00Z",
"full_name": "Season 1 2019",
"id": 1749,
"league_id": 4183,
"modified_at": "2019-05-28T16:51:42Z",
"name": null,
"season": "1",
"slug": "ow-contenders-korea-1-2019",
"tier": null,
"winner_id": 13713,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-06-25T10:00:00Z",
"description": null,
"end_at": "2019-09-02T18:00:00Z",
"full_name": "Season 2 2019",
"id": 1798,
"league_id": 4183,
"modified_at": "2020-01-02T10:43:08Z",
"name": null,
"season": "2",
"slug": "ow-contenders-korea-2-2019",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2019
}
],
"slug": "ow-contenders-korea",
"url": "https://overwatchcontenders.com/"
},
{
"id": 4184,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4184/600px-Overwatch_Contenders_logo_2018.png",
"modified_at": "2020-02-03T11:05:51Z",
"name": "Contenders North America",
"series": [
{
"begin_at": "2018-11-26T23:00:00Z",
"description": null,
"end_at": "2019-01-15T19:00:00Z",
"full_name": "Season 3 2018",
"id": 1663,
"league_id": 4184,
"modified_at": "2020-01-02T10:41:44Z",
"name": null,
"season": "3",
"slug": "ow-contenders-north-america-3-2018",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2018
},
{
"begin_at": "2019-03-04T23:00:00Z",
"description": null,
"end_at": "2019-05-02T01:20:00Z",
"full_name": "East season 1 2019",
"id": 1751,
"league_id": 4184,
"modified_at": "2019-05-28T16:49:35Z",
"name": "East",
"season": "1",
"slug": "ow-contenders-north-america-east-1-2019",
"tier": null,
"winner_id": 19094,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-03-05T23:00:00Z",
"description": null,
"end_at": "2019-05-01T23:50:00Z",
"full_name": "West season 1 2019",
"id": 1752,
"league_id": 4184,
"modified_at": "2019-05-28T16:50:45Z",
"name": "West",
"season": "1",
"slug": "ow-contenders-north-america-west-1-2019",
"tier": null,
"winner_id": 19097,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2019-06-17T22:00:00Z",
"description": null,
"end_at": "2019-08-16T18:00:00Z",
"full_name": "West season 2 2019",
"id": 1799,
"league_id": 4184,
"modified_at": "2020-01-02T10:43:25Z",
"name": "West",
"season": "2",
"slug": "ow-contenders-north-america-west-2-2019",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2019
},
{
"begin_at": "2019-06-19T22:00:00Z",
"description": null,
"end_at": "2019-08-16T18:00:00Z",
"full_name": "East season 2 2019",
"id": 1800,
"league_id": 4184,
"modified_at": "2020-01-02T10:43:42Z",
"name": "East",
"season": "2",
"slug": "ow-contenders-north-america-east-2-2019",
"tier": null,
"winner_id": null,
"winner_type": null,
"year": 2019
}
],
"slug": "ow-contenders-north-america",
"url": "https://overwatchcontenders.com/"
},
{
"id": 4238,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4238/600px-The_Gauntlet_logo.png",
"modified_at": "2019-10-06T21:09:10Z",
"name": "Contenders: The Gauntlet",
"series": [
{
"begin_at": "2019-10-09T02:00:00Z",
"description": null,
"end_at": "2019-10-13T06:37:00Z",
"full_name": "2019",
"id": 1835,
"league_id": 4238,
"modified_at": "2019-10-13T09:04:15Z",
"name": "",
"season": null,
"slug": "ow-the-gauntlet-2019",
"tier": null,
"winner_id": 13713,
"winner_type": "Team",
"year": 2019
},
{
"begin_at": "2020-12-04T19:00:00Z",
"description": null,
"end_at": "2020-12-13T21:21:00Z",
"full_name": "South America 2020",
"id": 3157,
"league_id": 4238,
"modified_at": "2020-12-14T03:34:08Z",
"name": "South America",
"season": null,
"slug": "ow-the-gauntlet-south-america-2020",
"tier": "c",
"winner_id": 128093,
"winner_type": "Team",
"year": 2020
},
{
"begin_at": "2020-12-10T08:00:00Z",
"description": null,
"end_at": "2020-12-20T14:16:00Z",
"full_name": "Asia 2020",
"id": 3156,
"league_id": 4238,
"modified_at": "2020-12-20T15:10:54Z",
"name": "Asia",
"season": null,
"slug": "ow-the-gauntlet-asia-2020",
"tier": "b",
"winner_id": 128087,
"winner_type": "Team",
"year": 2020
},
{
"begin_at": "2020-12-10T18:00:00Z",
"description": null,
"end_at": "2020-12-18T21:59:00Z",
"full_name": "Europe 2020",
"id": 3181,
"league_id": 4238,
"modified_at": "2020-12-22T09:56:05Z",
"name": "Europe",
"season": null,
"slug": "ow-the-gauntlet-europe-2020",
"tier": "b",
"winner_id": 3471,
"winner_type": "Team",
"year": 2020
},
{
"begin_at": "2020-12-10T22:00:00Z",
"description": null,
"end_at": "2020-12-20T03:05:00Z",
"full_name": "North America 2020",
"id": 3182,
"league_id": 4238,
"modified_at": "2020-12-20T07:46:30Z",
"name": "North America",
"season": null,
"slug": "ow-the-gauntlet-north-america-2020",
"tier": "b",
"winner_id": 128151,
"winner_type": "Team",
"year": 2020
}
],
"slug": "ow-the-gauntlet",
"url": "https://overwatchcontenders.com/"
},
{
"id": 4528,
"image_url": "https://cdn.dev.pandascore.co/images/league/image/4528/NetEase_Esports_X_Tournament_2021_The_Nexus_logo.png",
"modified_at": "2021-01-23T08:54:18Z",
"name": "NetEase Esports X Tournament",
"series": [
{
"begin_at": "2021-01-23T10:00:00Z",
"description": null,
"end_at": "2021-01-31T13:28:00Z",
"full_name": "The Nexus 2021",
"id": 3303,
"league_id": 4528,
"modified_at": "2021-01-31T13:30:14Z",
"name": "The Nexus",
"season": null,
"slug": "ow-netease-esports-x-tournament-the-nexus-2021",
"tier": "b",
"winner_id": 1553,
"winner_type": "Team",
"year": 2021
}
],
"slug": "ow-netease-esports-x-tournament",
"url": null
}
],
"name": "Overwatch",
"slug": "ow"
}
]
}
},
"schema": {
"$ref": "#/components/schemas/Videogames"
}
}
},
"description": "A list of videogames"
}
},
"schemas": {
"AdditionIncidents": {
"items": {
"$ref": "#/components/schemas/NonDeletionIncident"
},
"type": "array"
},
"BaseLeague": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"id": {
"$ref": "#/components/schemas/LeagueID"
},
"image_url": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/LeagueImageURL"
}
],
"deprecated": false,
"title": "LeagueImageURL"
},
"modified_at": {
"$ref": "#/components/schemas/LeagueModifiedAt"
},
"name": {
"$ref": "#/components/schemas/LeagueName"
},
"slug": {
"$ref": "#/components/schemas/LeagueSlug"
},
"url": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/LeagueURL"
}
],
"deprecated": false,
"title": "LeagueURL"
}
},
"required": [
"id",
"image_url",
"modified_at",
"name",
"slug",
"url"
],
"type": "object"
},
"BaseMatch": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"begin_at": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/MatchBeginAt"
}
],
"deprecated": false,
"title": "MatchBeginAt"
},
"detailed_stats": {
"$ref": "#/components/schemas/MatchDetailedStats"
},
"draw": {
"$ref": "#/components/schemas/MatchIsDraw"
},
"end_at": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/MatchEndAt"
}
],
"deprecated": false,
"title": "MatchEndAt"
},
"forfeit": {
"$ref": "#/components/schemas/MatchIsForfeit"
},
"game_advantage": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/OpponentID"
}
],
"deprecated": false,
"title": "OpponentID"
},
"id": {
"$ref": "#/components/schemas/MatchID"
},
"live": {
"$ref": "#/components/schemas/MatchLive"
},
"live_embed_url": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/MatchEmbedLiveVideoURLDeprecated"
}
],
"deprecated": true,
"title": "MatchEmbedLiveVideoURLDeprecated"
},
"match_type": {
"$ref": "#/components/schemas/MatchType"
},
"modified_at": {
"$ref": "#/components/schemas/MatchModifiedAt"
},
"name": {
"$ref": "#/components/schemas/MatchName"
},
"number_of_games": {
"$ref": "#/components/schemas/GameCount"
},
"official_stream_url": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/MatchOfficialStreamURL"
}
],
"deprecated": true,
"title": "MatchOfficialStreamURL"
},
"original_scheduled_at": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/MatchOriginalScheduledAt"
}
],
"deprecated": false,
"title": "MatchOriginalScheduledAt"
},
"rescheduled": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/MatchIsRescheduled"
}
],
"deprecated": false,
"title": "MatchIsRescheduled"
},
"scheduled_at": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/MatchScheduledAt"
}
],
"deprecated": false,
"title": "MatchScheduledAt"
},
"slug": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/MatchSlug"
}
],
"deprecated": false,
"title": "MatchSlug"
},
"status": {
"$ref": "#/components/schemas/MatchStatus"
},
"streams": {
"$ref": "#/components/schemas/MatchLocalizedStreams"
},
"streams_list": {
"$ref": "#/components/schemas/StreamsList"
},
"tournament_id": {
"$ref": "#/components/schemas/TournamentID"
},
"winner_id": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/OpponentID"
}
],
"deprecated": false,
"title": "OpponentID"
}
},
"required": [
"begin_at",
"detailed_stats",
"draw",
"end_at",
"forfeit",
"game_advantage",
"id",
"live",
"live_embed_url",
"match_type",
"modified_at",
"name",
"number_of_games",
"official_stream_url",
"original_scheduled_at",
"rescheduled",
"scheduled_at",
"slug",
"status",
"streams",
"streams_list",
"tournament_id",
"winner_id"
],
"type": "object"
},
"BaseMatches": {
"items": {
"$ref": "#/components/schemas/BaseMatch"
},
"type": "array"
},
"BaseOpponent": {
"oneOf": [
{
"$ref": "#/components/schemas/BasePlayer"
},
{
"$ref": "#/components/schemas/BaseTeam"
}
]
},
"BasePlayer": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"birth_year": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/PlayerBirthYear"
}
],
"deprecated": false,
"title": "PlayerBirthYear"
},
"birthday": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/PlayerBirthday"
}
],
"deprecated": false,
"title": "PlayerBirthday"
},
"first_name": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/PlayerFirstName"
}
],
"deprecated": false,
"title": "PlayerFirstName"
},
"hometown": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/PlayerHometown"
}
],
"deprecated": false,
"title": "PlayerHometown"
},
"id": {
"$ref": "#/components/schemas/PlayerID"
},
"image_url": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/PlayerImageURL"
}
],
"deprecated": false,
"title": "PlayerImageURL"
},
"last_name": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/PlayerLastName"
}
],
"deprecated": false,
"title": "PlayerLastName"
},
"name": {
"$ref": "#/components/schemas/PlayerName"
},
"nationality": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/PlayerNationality"
}
],
"deprecated": false,
"title": "PlayerNationality"
},
"role": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/PlayerRoleSlug"
}
],
"deprecated": false,
"title": "PlayerRoleSlug"
},
"slug": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/PlayerSlug"
}
],
"deprecated": false,
"title": "PlayerSlug"
}
},
"required": [
"birth_year",
"birthday",
"first_name",
"hometown",
"id",
"image_url",
"last_name",
"name",
"nationality",
"role",
"slug"
],
"type": "object"
},
"BasePlayers": {
"items": {
"$ref": "#/components/schemas/BasePlayer"
},
"type": "array"
},
"BaseSerie": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"begin_at": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/SerieBeginAt"
}
],
"deprecated": false,
"title": "SerieBeginAt"
},
"description": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/SerieDescription"
}
],
"deprecated": false,
"title": "SerieDescription"
},
"end_at": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/SerieEndAt"
}
],
"deprecated": false,
"title": "SerieEndAt"
},
"full_name": {
"$ref": "#/components/schemas/SerieFullName"
},
"id": {
"$ref": "#/components/schemas/SerieID"
},
"league_id": {
"$ref": "#/components/schemas/LeagueID"
},
"modified_at": {
"$ref": "#/components/schemas/SerieModifiedAt"
},
"name": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/SerieName"
}
],
"deprecated": false,
"title": "SerieName"
},
"season": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/SerieSeason"
}
],
"deprecated": false,
"title": "SerieSeason"
},
"slug": {
"$ref": "#/components/schemas/SerieSlug"
},
"tier": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/SerieTier"
}
],
"deprecated": false,
"title": "SerieTier"
},
"winner_id": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/OpponentID"
}
],
"deprecated": false,
"title": "OpponentID"
},
"winner_type": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/OpponentType"
}
],
"deprecated": false,
"title": "OpponentType"
},
"year": {
"$ref": "#/components/schemas/SerieYear"
}
},
"required": [
"begin_at",
"description",
"end_at",
"full_name",
"id",
"league_id",
"modified_at",
"name",
"season",
"slug",
"tier",
"winner_id",
"winner_type",
"year"
],
"type": "object"
},
"BaseSeries": {
"items": {
"$ref": "#/components/schemas/BaseSerie"
},
"type": "array"
},
"BaseTeam": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"acronym": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/TeamAcronym"
}
],
"deprecated": false,
"title": "TeamAcronym"
},
"id": {
"$ref": "#/components/schemas/TeamID"
},
"image_url": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/TeamImageURL"
}
],
"deprecated": false,
"title": "TeamImageURL"
},
"location": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/TeamLocation"
}
],
"deprecated": false,
"title": "TeamLocation"
},
"modified_at": {
"$ref": "#/components/schemas/TeamModifiedAt"
},
"name": {
"$ref": "#/components/schemas/TeamName"
},
"slug": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/TeamSlug"
}
],
"deprecated": false,
"title": "TeamSlug"
}
},
"required": [
"acronym",
"id",
"image_url",
"location",
"modified_at",
"name",
"slug"
],
"type": "object"
},
"BaseTeams": {
"items": {
"$ref": "#/components/schemas/BaseTeam"
},
"type": "array"
},
"BaseTournament": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"begin_at": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/TournamentBeginAt"
}
],
"deprecated": false,
"title": "TournamentBeginAt"
},
"end_at": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/TournamentEndAt"
}
],
"deprecated": false,
"title": "TournamentEndAt"
},
"id": {
"$ref": "#/components/schemas/TournamentID"
},
"league_id": {
"$ref": "#/components/schemas/LeagueID"
},
"live_supported": {
"$ref": "#/components/schemas/TournamentLiveSupported"
},
"modified_at": {
"$ref": "#/components/schemas/TournamentModifiedAt"
},
"name": {
"$ref": "#/components/schemas/TournamentName"
},
"prizepool": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/TournamentPrizepool"
}
],
"deprecated": false,
"title": "TournamentPrizepool"
},
"serie_id": {
"$ref": "#/components/schemas/SerieID"
},
"slug": {
"$ref": "#/components/schemas/TournamentSlug"
},
"winner_id": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/OpponentID"
}
],
"deprecated": false,
"title": "OpponentID"
},
"winner_type": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/OpponentType"
}
],
"deprecated": false,
"title": "OpponentType"
}
},
"required": [
"begin_at",
"end_at",
"id",
"league_id",
"live_supported",
"modified_at",
"name",
"prizepool",
"serie_id",
"slug",
"winner_id",
"winner_type"
],
"type": "object"
},
"BaseTournaments": {
"items": {
"$ref": "#/components/schemas/BaseTournament"
},
"type": "array"
},
"BettingBaseTournament": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"begin_at": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/TournamentBeginAt"
}
],
"deprecated": false,
"title": "TournamentBeginAt"
},
"end_at": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/TournamentEndAt"
}
],
"deprecated": false,
"title": "TournamentEndAt"
},
"id": {
"$ref": "#/components/schemas/TournamentID"
},
"league_id": {
"$ref": "#/components/schemas/LeagueID"
},
"live_supported": {
"$ref": "#/components/schemas/TournamentLiveSupported"
},
"modified_at": {
"$ref": "#/components/schemas/TournamentModifiedAt"
},
"name": {
"$ref": "#/components/schemas/TournamentName"
},
"prizepool": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/TournamentPrizepool"
}
],
"deprecated": false,
"title": "TournamentPrizepool"
},
"slug": {
"$ref": "#/components/schemas/TournamentSlug"
},
"winner_id": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/OpponentID"
}
],
"deprecated": false,
"title": "OpponentID"
},
"winner_type": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/OpponentType"
}
],
"deprecated": false,
"title": "OpponentType"
}
},
"required": [
"begin_at",
"end_at",
"id",
"league_id",
"live_supported",
"modified_at",
"name",
"prizepool",
"slug",
"winner_id",
"winner_type"
],
"type": "object"
},
"BettingCSGOGame": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"begin_at": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/GameBeginAt"
}
],
"deprecated": false,
"title": "GameBeginAt"
},
"complete": {
"$ref": "#/components/schemas/GameComplete"
},
"detailed_stats": {
"$ref": "#/components/schemas/GameDetailedStats"
},
"end_at": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/GameEndAt"
}
],
"deprecated": false,
"title": "GameEndAt"
},
"finished": {
"$ref": "#/components/schemas/GameIsFinished"
},
"forfeit": {
"$ref": "#/components/schemas/GameIsForfeit"
},
"game_round_teams": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/BettingGameRoundTeams"
}
],
"deprecated": false,
"title": "BettingGameRoundTeams"
},
"id": {
"$ref": "#/components/schemas/CSGOGameID"
},
"length": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/GameLength"
}
],
"deprecated": false,
"title": "GameLength"
},
"map": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/CSGOMap"
}
],
"deprecated": false,
"title": "CSGOMap"
},
"match_id": {
"$ref": "#/components/schemas/MatchID"
},
"number_of_rounds": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/CSGONumberOfRounds"
}
],
"deprecated": false,
"title": "CSGONumberOfRounds"
},
"position": {
"$ref": "#/components/schemas/GamePosition"
},
"status": {
"$ref": "#/components/schemas/GameStatus"
},
"video_url": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/GameVideoUrl"
}
],
"deprecated": false,
"title": "GameVideoUrl"
},
"winner": {
"$ref": "#/components/schemas/GameWinner"
},
"winner_type": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/OpponentType"
}
],
"deprecated": false,
"title": "OpponentType"
}
},
"required": [
"begin_at",
"complete",
"detailed_stats",
"end_at",
"finished",
"forfeit",
"game_round_teams",
"id",
"length",
"map",
"match_id",
"number_of_rounds",
"position",
"status",
"video_url",
"winner",
"winner_type"
],
"type": "object"
},
"BettingCSGOGameRoundTeam": {
"additionalProperties": false,
"deprecated": false,
"description": "Team's data for a Round",
"properties": {
"outcome": {
"$ref": "#/components/schemas/CSGOOutcome"
},
"round": {
"$ref": "#/components/schemas/CSGORoundID"
},
"team_id": {
"$ref": "#/components/schemas/TeamID"
},
"terrorist": {
"$ref": "#/components/schemas/CSGOIsTerrorist"
},
"winner": {
"$ref": "#/components/schemas/CSGOIsRoundWinner"
}
},
"required": [
"outcome",
"round",
"team_id",
"terrorist",
"winner"
],
"type": "object"
},
"BettingCSGOGameRoundTeams": {
"items": {
"$ref": "#/components/schemas/BettingCSGOGameRoundTeam"
},
"type": "array"
},
"BettingDota2Game": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"begin_at": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/GameBeginAt"
}
],
"deprecated": false,
"title": "GameBeginAt"
},
"complete": {
"$ref": "#/components/schemas/GameComplete"
},
"detailed_stats": {
"$ref": "#/components/schemas/GameDetailedStats"
},
"end_at": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/GameEndAt"
}
],
"deprecated": false,
"title": "GameEndAt"
},
"finished": {
"$ref": "#/components/schemas/GameIsFinished"
},
"forfeit": {
"$ref": "#/components/schemas/GameIsForfeit"
},
"id": {
"$ref": "#/components/schemas/Dota2GameID"
},
"length": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/GameLength"
}
],
"deprecated": false,
"title": "GameLength"
},
"match_id": {
"$ref": "#/components/schemas/MatchID"
},
"position": {
"$ref": "#/components/schemas/GamePosition"
},
"status": {
"$ref": "#/components/schemas/GameStatus"
},
"video_url": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/GameVideoUrl"
}
],
"deprecated": false,
"title": "GameVideoUrl"
},
"winner": {
"$ref": "#/components/schemas/GameWinner"
},
"winner_type": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/OpponentType"
}
],
"deprecated": false,
"title": "OpponentType"
}
},
"required": [
"begin_at",
"complete",
"detailed_stats",
"end_at",
"finished",
"forfeit",
"id",
"length",
"match_id",
"position",
"status",
"video_url",
"winner",
"winner_type"
],
"type": "object"
},
"BettingGame": {
"anyOf": [
{
"$ref": "#/components/schemas/BettingCSGOGame"
},
{
"$ref": "#/components/schemas/BettingDota2Game"
},
{
"$ref": "#/components/schemas/BettingLoLGame"
},
{
"$ref": "#/components/schemas/BettingOwGame"
},
{
"$ref": "#/components/schemas/BettingPUBGGame"
}
]
},
"BettingGameRoundTeams": {
"oneOf": [
{
"$ref": "#/components/schemas/BettingCSGOGameRoundTeams"
}
]
},
"BettingGameTeams": {
"oneOf": [
{
"$ref": "#/components/schemas/BettingLoLGameTeams"
}
]
},
"BettingGames": {
"items": {
"$ref": "#/components/schemas/BettingGame"
},
"type": "array"
},
"BettingGroup": {
"additionalProperties": false,
"deprecated": true,
"properties": {
"id": {
"$ref": "#/components/schemas/BlueprintID"
},
"name": {
"$ref": "#/components/schemas/BlueprintName"
}
},
"required": [
"id",
"name"
],
"type": "object"
},
"BettingLeague": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"id": {
"$ref": "#/components/schemas/LeagueID"
},
"image_url": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/LeagueImageURL"
}
],
"deprecated": false,
"title": "LeagueImageURL"
},
"modified_at": {
"$ref": "#/components/schemas/LeagueModifiedAt"
},
"name": {
"$ref": "#/components/schemas/LeagueName"
},
"series": {
"$ref": "#/components/schemas/BaseSeries"
},
"slug": {
"$ref": "#/components/schemas/LeagueSlug"
},
"url": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/LeagueURL"
}
],
"deprecated": false,
"title": "LeagueURL"
},
"videogame": {
"$ref": "#/components/schemas/BettingLeagueVideogame"
}
},
"required": [
"id",
"image_url",
"modified_at",
"name",
"series",
"slug",
"url",
"videogame"
],
"type": "object"
},
"BettingLeagueVideogame": {
"oneOf": [
{
"$ref": "#/components/schemas/LeagueVideogame_LoL"
},
{
"$ref": "#/components/schemas/LeagueVideogame_CSGO"
},
{
"$ref": "#/components/schemas/LeagueVideogame_Dota2"
},
{
"$ref": "#/components/schemas/LeagueVideogame_Overwatch"
},
{
"$ref": "#/components/schemas/LeagueVideogame_PUBG"
},
{
"$ref": "#/components/schemas/LeagueVideogame_Fortnite"
},
{
"$ref": "#/components/schemas/LeagueVideogame_RocketLeague"
},
{
"$ref": "#/components/schemas/LeagueVideogame_Codmw"
},
{
"$ref": "#/components/schemas/LeagueVideogame_R6siege"
},
{
"$ref": "#/components/schemas/LeagueVideogame_Fifa"
},
{
"$ref": "#/components/schemas/LeagueVideogame_Valorant"
}
]
},
"BettingLeagues": {
"items": {
"$ref": "#/components/schemas/BettingLeague"
},
"type": "array"
},
"BettingLoLGame": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"begin_at": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/GameBeginAt"
}
],
"deprecated": false,
"title": "GameBeginAt"
},
"complete": {
"$ref": "#/components/schemas/GameComplete"
},
"detailed_stats": {
"$ref": "#/components/schemas/GameDetailedStats"
},
"end_at": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/GameEndAt"
}
],
"deprecated": false,
"title": "GameEndAt"
},
"finished": {
"$ref": "#/components/schemas/GameIsFinished"
},
"forfeit": {
"$ref": "#/components/schemas/GameIsForfeit"
},
"game_teams": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/BettingGameTeams"
}
],
"deprecated": false,
"title": "BettingGameTeams"
},
"id": {
"$ref": "#/components/schemas/LoLGameID"
},
"length": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/GameLength"
}
],
"deprecated": false,
"title": "GameLength"
},
"match_id": {
"$ref": "#/components/schemas/MatchID"
},
"position": {
"$ref": "#/components/schemas/GamePosition"
},
"status": {
"$ref": "#/components/schemas/GameStatus"
},
"video_url": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/GameVideoUrl"
}
],
"deprecated": false,
"title": "GameVideoUrl"
},
"winner": {
"$ref": "#/components/schemas/GameWinner"
},
"winner_type": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/OpponentType"
}
],
"deprecated": false,
"title": "OpponentType"
}
},
"required": [
"begin_at",
"complete",
"detailed_stats",
"end_at",
"finished",
"forfeit",
"game_teams",
"id",
"length",
"match_id",
"position",
"status",
"video_url",
"winner",
"winner_type"
],
"type": "object"
},
"BettingLoLGameTeam": {
"additionalProperties": false,
"deprecated": false,
"description": "Team's data for a Game",
"properties": {
"baron_kills": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/LoLBaronKills"
}
],
"deprecated": false,
"title": "LoLBaronKills"
},
"color": {
"$ref": "#/components/schemas/LoLTeamColor"
},
"dragon_kills": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/LoLDragonKills"
}
],
"deprecated": false,
"title": "LoLDragonKills"
},
"first_baron": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/LoLTeamGotFirstBaron"
}
],
"deprecated": false,
"title": "LoLTeamGotFirstBaron"
},
"first_blood": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/LoLTeamGotFirstBlood"
}
],
"deprecated": false,
"title": "LoLTeamGotFirstBlood"
},
"first_dragon": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/LoLTeamGotFirstDragon"
}
],
"deprecated": false,
"title": "LoLTeamGotFirstDragon"
},
"first_herald": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/LoLTeamGotFirstHerald"
}
],
"deprecated": false,
"title": "LoLTeamGotFirstHerald"
},
"first_inhibitor": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/LoLTeamGotFirstInhibitor"
}
],
"deprecated": false,
"title": "LoLTeamGotFirstInhibitor"
},
"first_tower": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/LoLTeamGotFirstTower"
}
],
"deprecated": false,
"title": "LoLTeamGotFirstTower"
},
"gold_earned": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/LoLGold"
}
],
"deprecated": false,
"title": "LoLGold"
},
"herald_kill": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/LoLHeraldKills"
}
],
"deprecated": false,
"title": "LoLHeraldKills"
},
"inhibitor_kills": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/LoLInhibitorKills"
}
],
"deprecated": false,
"title": "LoLInhibitorKills"
},
"team_id": {
"$ref": "#/components/schemas/TeamID"
},
"team_kills": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/LoLTeamKills"
}
],
"deprecated": false,
"title": "LoLTeamKills"
},
"tower_kills": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/LoLTowerKills"
}
],
"deprecated": false,
"title": "LoLTowerKills"
}
},
"required": [
"baron_kills",
"color",
"dragon_kills",
"first_baron",
"first_blood",
"first_dragon",
"first_herald",
"first_inhibitor",
"first_tower",
"gold_earned",
"herald_kill",
"inhibitor_kills",
"team_id",
"team_kills",
"tower_kills"
],
"type": "object"
},
"BettingLoLGameTeams": {
"items": {
"$ref": "#/components/schemas/BettingLoLGameTeam"
},
"type": "array"
},
"BettingMatch": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"begin_at": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/MatchBeginAt"
}
],
"deprecated": false,
"title": "MatchBeginAt"
},
"betting_metadata": {
"$ref": "#/components/schemas/BettingMetadata"
},
"detailed_stats": {
"$ref": "#/components/schemas/MatchDetailedStats"
},
"draw": {
"$ref": "#/components/schemas/MatchIsDraw"
},
"end_at": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/MatchEndAt"
}
],
"deprecated": false,
"title": "MatchEndAt"
},
"forfeit": {
"$ref": "#/components/schemas/MatchIsForfeit"
},
"game_advantage": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/OpponentID"
}
],
"deprecated": false,
"title": "OpponentID"
},
"games": {
"$ref": "#/components/schemas/BettingGames"
},
"id": {
"$ref": "#/components/schemas/MatchID"
},
"league": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/BettingLeague"
}
],
"deprecated": false,
"title": "BettingLeague"
},
"league_id": {
"$ref": "#/components/schemas/LeagueID"
},
"live": {
"$ref": "#/components/schemas/MatchLive"
},
"live_embed_url": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/MatchEmbedLiveVideoURLDeprecated"
}
],
"deprecated": true,
"title": "MatchEmbedLiveVideoURLDeprecated"
},
"match_type": {
"$ref": "#/components/schemas/MatchType"
},
"modified_at": {
"$ref": "#/components/schemas/MatchModifiedAt"
},
"name": {
"$ref": "#/components/schemas/MatchName"
},
"number_of_games": {
"$ref": "#/components/schemas/GameCount"
},
"official_stream_url": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/MatchOfficialStreamURL"
}
],
"deprecated": true,
"title": "MatchOfficialStreamURL"
},
"opponents": {
"$ref": "#/components/schemas/Opponents"
},
"original_scheduled_at": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/MatchOriginalScheduledAt"
}
],
"deprecated": false,
"title": "MatchOriginalScheduledAt"
},
"rescheduled": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/MatchIsRescheduled"
}
],
"deprecated": false,
"title": "MatchIsRescheduled"
},
"results": {
"$ref": "#/components/schemas/MatchResults"
},
"scheduled_at": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/MatchScheduledAt"
}
],
"deprecated": false,
"title": "MatchScheduledAt"
},
"serie": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/BettingSerie"
}
],
"deprecated": false,
"title": "BettingSerie"
},
"serie_id": {
"$ref": "#/components/schemas/SerieID"
},
"slug": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/MatchSlug"
}
],
"deprecated": false,
"title": "MatchSlug"
},
"status": {
"$ref": "#/components/schemas/BettingMatchStatus"
},
"streams": {
"$ref": "#/components/schemas/MatchLocalizedStreams"
},
"streams_list": {
"$ref": "#/components/schemas/StreamsList"
},
"tournament": {
"$ref": "#/components/schemas/BettingBaseTournament"
},
"tournament_id": {
"$ref": "#/components/schemas/TournamentID"
},
"videogame": {
"$ref": "#/components/schemas/CurrentVideogame"
},
"videogame_version": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/ShortVideogameVersion"
}
],
"deprecated": false,
"title": "ShortVideogameVersion"
},
"winner": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/BaseOpponent"
}
],
"deprecated": false,
"title": "BaseOpponent"
},
"winner_id": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/OpponentID"
}
],
"deprecated": false,
"title": "OpponentID"
}
},
"required": [
"begin_at",
"betting_metadata",
"detailed_stats",
"draw",
"end_at",
"forfeit",
"game_advantage",
"games",
"id",
"league",
"league_id",
"live",
"live_embed_url",
"match_type",
"modified_at",
"name",
"number_of_games",
"official_stream_url",
"opponents",
"original_scheduled_at",
"rescheduled",
"results",
"scheduled_at",
"serie",
"serie_id",
"slug",
"status",
"streams",
"streams_list",
"tournament",
"tournament_id",
"videogame",
"videogame_version",
"winner",
"winner_id"
],
"type": "object"
},
"BettingMatchStatus": {
"enum": [
"canceled",
"finished",
"live",
"not_booked",
"pending",
"postponed",
"pre_match",
"settled"
],
"type": "string"
},
"BettingMatches": {
"items": {
"$ref": "#/components/schemas/BettingMatch"
},
"type": "array"
},
"BettingMatchesMarkets": {
"items": {
"$ref": "#/components/schemas/MatchMarkets"
},
"type": "array"
},
"BettingMetadata": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"betting_group": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/BettingGroup"
}
],
"deprecated": false,
"title": "BettingGroup"
},
"blueprint": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/Blueprint"
}
],
"deprecated": false,
"title": "Blueprint"
},
"bookable": {
"$ref": "#/components/schemas/MatchBookable"
},
"booked": {
"$ref": "#/components/schemas/MatchBooked"
},
"live_available": {
"$ref": "#/components/schemas/MatchLiveAvailable"
},
"markets_created": {
"$ref": "#/components/schemas/MarketsCreated"
},
"markets_updated_at": {
"$ref": "#/components/schemas/MarketsUpdatedAt"
},
"pandascore_reviewed": {
"$ref": "#/components/schemas/MatchPandaScoreReviewed"
},
"settled": {
"$ref": "#/components/schemas/MatchSettled"
}
},
"required": [
"betting_group",
"blueprint",
"bookable",
"booked",
"live_available",
"markets_created",
"markets_updated_at",
"pandascore_reviewed",
"settled"
],
"type": "object"
},
"BettingOwGame": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"begin_at": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/GameBeginAt"
}
],
"deprecated": false,
"title": "GameBeginAt"
},
"complete": {
"$ref": "#/components/schemas/GameComplete"
},
"detailed_stats": {
"$ref": "#/components/schemas/GameDetailedStats"
},
"end_at": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/GameEndAt"
}
],
"deprecated": false,
"title": "GameEndAt"
},
"finished": {
"$ref": "#/components/schemas/GameIsFinished"
},
"forfeit": {
"$ref": "#/components/schemas/GameIsForfeit"
},
"id": {
"$ref": "#/components/schemas/OwGameID"
},
"length": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/GameLength"
}
],
"deprecated": false,
"title": "GameLength"
},
"match_id": {
"$ref": "#/components/schemas/MatchID"
},
"position": {
"$ref": "#/components/schemas/GamePosition"
},
"status": {
"$ref": "#/components/schemas/GameStatus"
},
"video_url": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/GameVideoUrl"
}
],
"deprecated": false,
"title": "GameVideoUrl"
},
"winner": {
"$ref": "#/components/schemas/GameWinner"
},
"winner_type": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/OpponentType"
}
],
"deprecated": false,
"title": "OpponentType"
}
},
"required": [
"begin_at",
"complete",
"detailed_stats",
"end_at",
"finished",
"forfeit",
"id",
"length",
"match_id",
"position",
"status",
"video_url",
"winner",
"winner_type"
],
"type": "object"
},
"BettingPUBGGame": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"begin_at": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/GameBeginAt"
}
],
"deprecated": false,
"title": "GameBeginAt"
},
"complete": {
"$ref": "#/components/schemas/GameComplete"
},
"detailed_stats": {
"$ref": "#/components/schemas/GameDetailedStats"
},
"end_at": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/GameEndAt"
}
],
"deprecated": false,
"title": "GameEndAt"
},
"finished": {
"$ref": "#/components/schemas/GameIsFinished"
},
"forfeit": {
"$ref": "#/components/schemas/GameIsForfeit"
},
"id": {
"$ref": "#/components/schemas/PUBGGameID"
},
"length": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/GameLength"
}
],
"deprecated": false,
"title": "GameLength"
},
"match_id": {
"$ref": "#/components/schemas/MatchID"
},
"position": {
"$ref": "#/components/schemas/GamePosition"
},
"status": {
"$ref": "#/components/schemas/GameStatus"
},
"video_url": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/GameVideoUrl"
}
],
"deprecated": false,
"title": "GameVideoUrl"
},
"winner": {
"$ref": "#/components/schemas/GameWinner"
},
"winner_type": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/OpponentType"
}
],
"deprecated": false,
"title": "OpponentType"
}
},
"required": [
"begin_at",
"complete",
"detailed_stats",
"end_at",
"finished",
"forfeit",
"id",
"length",
"match_id",
"position",
"status",
"video_url",
"winner",
"winner_type"
],
"type": "object"
},
"BettingSerie": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"begin_at": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/SerieBeginAt"
}
],
"deprecated": false,
"title": "SerieBeginAt"
},
"description": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/SerieDescription"
}
],
"deprecated": false,
"title": "SerieDescription"
},
"end_at": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/SerieEndAt"
}
],
"deprecated": false,
"title": "SerieEndAt"
},
"full_name": {
"$ref": "#/components/schemas/SerieFullName"
},
"id": {
"$ref": "#/components/schemas/SerieID"
},
"league_id": {
"$ref": "#/components/schemas/LeagueID"
},
"league_image_url": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/LeagueImageURL"
}
],
"deprecated": false,
"title": "LeagueImageURL"
},
"league_name": {
"$ref": "#/components/schemas/LeagueName"
},
"modified_at": {
"$ref": "#/components/schemas/SerieModifiedAt"
},
"name": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/SerieName"
}
],
"deprecated": false,
"title": "SerieName"
},
"season": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/SerieSeason"
}
],
"deprecated": false,
"title": "SerieSeason"
},
"slug": {
"$ref": "#/components/schemas/SerieSlug"
},
"tier": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/SerieTier"
}
],
"deprecated": false,
"title": "SerieTier"
},
"videogame": {
"$ref": "#/components/schemas/CurrentVideogame"
},
"winner_id": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/OpponentID"
}
],
"deprecated": false,
"title": "OpponentID"
},
"winner_type": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/OpponentType"
}
],
"deprecated": false,
"title": "OpponentType"
},
"year": {
"$ref": "#/components/schemas/SerieYear"
}
},
"required": [
"begin_at",
"description",
"end_at",
"full_name",
"id",
"league_id",
"league_image_url",
"league_name",
"modified_at",
"name",
"season",
"slug",
"tier",
"videogame",
"winner_id",
"winner_type",
"year"
],
"type": "object"
},
"BettingSeries": {
"items": {
"$ref": "#/components/schemas/BettingSerie"
},
"type": "array"
},
"BettingTournament": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"begin_at": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/TournamentBeginAt"
}
],
"deprecated": false,
"title": "TournamentBeginAt"
},
"end_at": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/TournamentEndAt"
}
],
"deprecated": false,
"title": "TournamentEndAt"
},
"id": {
"$ref": "#/components/schemas/TournamentID"
},
"live_supported": {
"$ref": "#/components/schemas/TournamentLiveSupported"
},
"modified_at": {
"$ref": "#/components/schemas/TournamentModifiedAt"
},
"name": {
"$ref": "#/components/schemas/TournamentName"
},
"prizepool": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/TournamentPrizepool"
}
],
"deprecated": false,
"title": "TournamentPrizepool"
},
"serie_id": {
"$ref": "#/components/schemas/SerieID"
},
"slug": {
"$ref": "#/components/schemas/TournamentSlug"
},
"videogame": {
"$ref": "#/components/schemas/CurrentVideogame"
},
"winner_id": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/OpponentID"
}
],
"deprecated": false,
"title": "OpponentID"
},
"winner_type": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/OpponentType"
}
],
"deprecated": false,
"title": "OpponentType"
}
},
"required": [
"begin_at",
"end_at",
"id",
"live_supported",
"modified_at",
"name",
"prizepool",
"serie_id",
"slug",
"videogame",
"winner_id",
"winner_type"
],
"type": "object"
},
"BettingTournaments": {
"items": {
"$ref": "#/components/schemas/BettingTournament"
},
"type": "array"
},
"Blueprint": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"id": {
"$ref": "#/components/schemas/BlueprintID"
},
"name": {
"$ref": "#/components/schemas/BlueprintName"
}
},
"required": [
"id",
"name"
],
"type": "object"
},
"BlueprintID": {
"minimum": 1,
"type": "integer"
},
"BlueprintName": {
"type": "string"
},
"Bracket": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"begin_at": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/MatchBeginAt"
}
],
"deprecated": false,
"title": "MatchBeginAt"
},
"detailed_stats": {
"$ref": "#/components/schemas/MatchDetailedStats"
},
"draw": {
"$ref": "#/components/schemas/MatchIsDraw"
},
"end_at": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/MatchEndAt"
}
],
"deprecated": false,
"title": "MatchEndAt"
},
"forfeit": {
"$ref": "#/components/schemas/MatchIsForfeit"
},
"game_advantage": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/OpponentID"
}
],
"deprecated": false,
"title": "OpponentID"
},
"games": {
"$ref": "#/components/schemas/Games"
},
"id": {
"$ref": "#/components/schemas/MatchID"
},
"live": {
"$ref": "#/components/schemas/MatchLive"
},
"live_embed_url": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/MatchEmbedLiveVideoURLDeprecated"
}
],
"deprecated": true,
"title": "MatchEmbedLiveVideoURLDeprecated"
},
"match_type": {
"$ref": "#/components/schemas/MatchType"
},
"modified_at": {
"$ref": "#/components/schemas/MatchModifiedAt"
},
"name": {
"$ref": "#/components/schemas/MatchName"
},
"number_of_games": {
"$ref": "#/components/schemas/GameCount"
},
"official_stream_url": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/MatchOfficialStreamURL"
}
],
"deprecated": true,
"title": "MatchOfficialStreamURL"
},
"opponents": {
"$ref": "#/components/schemas/Opponents"
},
"original_scheduled_at": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/MatchOriginalScheduledAt"
}
],
"deprecated": false,
"title": "MatchOriginalScheduledAt"
},
"previous_matches": {
"$ref": "#/components/schemas/PreviousMatches"
},
"scheduled_at": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/MatchScheduledAt"
}
],
"deprecated": false,
"title": "MatchScheduledAt"
},
"slug": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/MatchSlug"
}
],
"deprecated": false,
"title": "MatchSlug"
},
"status": {
"$ref": "#/components/schemas/MatchStatus"
},
"streams": {
"$ref": "#/components/schemas/MatchLocalizedStreams"
},
"streams_list": {
"$ref": "#/components/schemas/StreamsList"
},
"tournament_id": {
"$ref": "#/components/schemas/TournamentID"
},
"winner_id": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/OpponentID"
}
],
"deprecated": false,
"title": "OpponentID"
}
},
"required": [
"begin_at",
"detailed_stats",
"draw",
"end_at",
"forfeit",
"game_advantage",
"games",
"id",
"live",
"live_embed_url",
"match_type",
"modified_at",
"name",
"number_of_games",
"official_stream_url",
"opponents",
"original_scheduled_at",
"previous_matches",
"scheduled_at",
"slug",
"status",
"streams",
"streams_list",
"tournament_id",
"winner_id"
],
"type": "object"
},
"BracketStanding": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"last_match": {
"$ref": "#/components/schemas/BaseMatch"
},
"rank": {
"$ref": "#/components/schemas/StandingRank"
},
"team": {
"$ref": "#/components/schemas/BaseTeam"
}
},
"required": [
"last_match",
"rank",
"team"
],
"type": "object"
},
"Brackets": {
"items": {
"$ref": "#/components/schemas/Bracket"
},
"type": "array"
},
"CSGOGameID": {
"minimum": 1,
"type": "integer"
},
"CSGOIsRoundWinner": {
"description": "For Counter Strike: Global Offensive: whether team has won the round",
"type": "boolean"
},
"CSGOIsTerrorist": {
"description": "For Counter Strike: Global Offensive: whether team is on T side",
"type": "boolean"
},
"CSGOMap": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"id": {
"$ref": "#/components/schemas/CSGOMapID"
},
"image_url": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/CSGOMapImageURL"
}
],
"deprecated": false,
"title": "CSGOMapImageURL"
},
"name": {
"$ref": "#/components/schemas/CSGOMapName"
}
},
"required": [
"id",
"image_url",
"name"
],
"type": "object"
},
"CSGOMapID": {
"minimum": 1,
"type": "integer"
},
"CSGOMapImageURL": {
"format": "uri",
"type": "string"
},
"CSGOMapName": {
"type": "string"
},
"CSGONumberOfRounds": {
"description": "For Counter Strike: Global Offensive: number of rounds for a game",
"minimum": 0,
"type": "integer"
},
"CSGOOutcome": {
"enum": [
"defused",
"eliminated",
"exploded",
"planted_eliminated",
"timeout"
],
"type": "string"
},
"CSGORoundID": {
"minimum": 1,
"type": "integer"
},
"CSGOWeaponID": {
"minimum": 1,
"type": "integer"
},
"CSGOWeaponIDOrSlug": {
"description": "For Counter Strike: Global Offensive: a weapon ID or slug",
"oneOf": [
{
"$ref": "#/components/schemas/CSGOWeaponID"
},
{
"$ref": "#/components/schemas/CSGOWeaponSlug"
}
]
},
"CSGOWeaponSlug": {
"minLength": 1,
"pattern": "^[a-z0-9_-]+$",
"type": "string"
},
"ChangeIncidents": {
"items": {
"$ref": "#/components/schemas/Incident"
},
"type": "array"
},
"CurrentVideogame": {
"enum": [
{
"id": 1,
"name": "LoL",
"slug": "league-of-legends"
},
{
"id": 3,
"name": "CS:GO",
"slug": "cs-go"
},
{
"id": 4,
"name": "Dota 2",
"slug": "dota-2"
},
{
"id": 14,
"name": "Overwatch",
"slug": "ow"
},
{
"id": 20,
"name": "PUBG",
"slug": "pubg"
},
{
"id": 22,
"name": "Rocket League",
"slug": "rl"
},
{
"id": 23,
"name": "Call of Duty",
"slug": "cod-mw"
},
{
"id": 24,
"name": "Rainbow 6 Siege",
"slug": "r6-siege"
},
{
"id": 25,
"name": "FIFA",
"slug": "fifa"
},
{
"id": 26,
"name": "Valorant",
"slug": "valorant"
}
],
"type": "object"
},
"DeletionIncident": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"change_type": {
"$ref": "#/components/schemas/DeletionIncidentChangeType"
},
"id": {
"$ref": "#/components/schemas/IncidentID"
},
"modified_at": {
"$ref": "#/components/schemas/IncidentModifiedAt"
},
"object": {
"$ref": "#/components/schemas/DeletionObject"
},
"type": {
"$ref": "#/components/schemas/IncidentType"
}
},
"required": [
"change_type",
"id",
"modified_at",
"object",
"type"
],
"type": "object"
},
"DeletionIncidentChangeType": {
"enum": [
"deletion"
],
"type": "string"
},
"DeletionIncidents": {
"items": {
"$ref": "#/components/schemas/DeletionIncident"
},
"type": "array"
},
"DeletionObject": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"deleted_at": {
"$ref": "#/components/schemas/IncidentDeletedAt"
},
"reason": {
"$ref": "#/components/schemas/IncidentDeletionReason"
},
"videogame_id": {
"$ref": "#/components/schemas/VideogameID"
}
},
"required": [
"deleted_at",
"reason",
"videogame_id"
],
"type": "object"
},
"Dota2AbilityID": {
"minimum": 1,
"type": "integer"
},
"Dota2AbilityIDOrSlug": {
"description": "For Dota 2: an ability ID or slug",
"oneOf": [
{
"$ref": "#/components/schemas/Dota2AbilityID"
},
{
"$ref": "#/components/schemas/Dota2AbilitySlug"
}
]
},
"Dota2AbilitySlug": {
"minLength": 1,
"pattern": "^[a-z0-9_-]+$",
"type": "string"
},
"Dota2GameID": {
"minimum": 1,
"type": "integer"
},
"Dota2HeroID": {
"minimum": 1,
"type": "integer"
},
"Dota2HeroIDOrSlug": {
"description": "For Dota 2: a hero ID or slug",
"oneOf": [
{
"$ref": "#/components/schemas/Dota2HeroID"
},
{
"$ref": "#/components/schemas/Dota2HeroSlug"
}
]
},
"Dota2HeroSlug": {
"minLength": 1,
"pattern": "^[a-z0-9_-]+$",
"type": "string"
},
"Dota2ItemID": {
"minimum": 1,
"type": "integer"
},
"Dota2ItemIDOrSlug": {
"description": "For Dota 2: an item ID or slug",
"oneOf": [
{
"$ref": "#/components/schemas/Dota2ItemID"
},
{
"$ref": "#/components/schemas/Dota2ItemSlug"
}
]
},
"Dota2ItemSlug": {
"minLength": 1,
"pattern": "^[a-z0-9_-]+$",
"type": "string"
},
"Esport": {
"oneOf": [
{
"$ref": "#/components/schemas/Esport_LoL"
},
{
"$ref": "#/components/schemas/Esport_CSGO"
},
{
"$ref": "#/components/schemas/Esport_Dota2"
},
{
"$ref": "#/components/schemas/Esport_Overwatch"
},
{
"$ref": "#/components/schemas/Esport_PUBG"
},
{
"$ref": "#/components/schemas/Esport_Fortnite"
},
{
"$ref": "#/components/schemas/Esport_RocketLeague"
},
{
"$ref": "#/components/schemas/Esport_Codmw"
},
{
"$ref": "#/components/schemas/Esport_R6siege"
},
{
"$ref": "#/components/schemas/Esport_Fifa"
},
{
"$ref": "#/components/schemas/Esport_Valorant"
}
]
},
"Esport_CSGO": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"current_version": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/VideogameVersion"
}
],
"deprecated": false,
"title": "VideogameVersion"
},
"id": {
"enum": [
3
]
},
"name": {
"enum": [
"CS:GO"
]
},
"series": {
"$ref": "#/components/schemas/BettingSeries"
},
"slug": {
"enum": [
"cs-go"
]
}
},
"required": [
"current_version",
"id",
"name",
"series",
"slug"
],
"type": "object"
},
"Esport_Codmw": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"current_version": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/VideogameVersion"
}
],
"deprecated": false,
"title": "VideogameVersion"
},
"id": {
"enum": [
23
]
},
"name": {
"enum": [
"Call of Duty"
]
},
"series": {
"$ref": "#/components/schemas/BettingSeries"
},
"slug": {
"enum": [
"cod-mw"
]
}
},
"required": [
"current_version",
"id",
"name",
"series",
"slug"
],
"type": "object"
},
"Esport_Dota2": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"current_version": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/VideogameVersion"
}
],
"deprecated": false,
"title": "VideogameVersion"
},
"id": {
"enum": [
4
]
},
"name": {
"enum": [
"Dota 2"
]
},
"series": {
"$ref": "#/components/schemas/BettingSeries"
},
"slug": {
"enum": [
"dota-2"
]
}
},
"required": [
"current_version",
"id",
"name",
"series",
"slug"
],
"type": "object"
},
"Esport_Fifa": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"current_version": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/VideogameVersion"
}
],
"deprecated": false,
"title": "VideogameVersion"
},
"id": {
"enum": [
25
]
},
"name": {
"enum": [
"FIFA"
]
},
"series": {
"$ref": "#/components/schemas/BettingSeries"
},
"slug": {
"enum": [
"fifa"
]
}
},
"required": [
"current_version",
"id",
"name",
"series",
"slug"
],
"type": "object"
},
"Esport_Fortnite": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"current_version": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/VideogameVersion"
}
],
"deprecated": false,
"title": "VideogameVersion"
},
"id": {
"enum": [
21
]
},
"name": {
"enum": [
"Fortnite"
]
},
"series": {
"$ref": "#/components/schemas/BettingSeries"
},
"slug": {
"enum": [
"fortnite"
]
}
},
"required": [
"current_version",
"id",
"name",
"series",
"slug"
],
"type": "object"
},
"Esport_LoL": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"current_version": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/VideogameVersion"
}
],
"deprecated": false,
"title": "VideogameVersion"
},
"id": {
"enum": [
1
]
},
"name": {
"enum": [
"LoL"
]
},
"series": {
"$ref": "#/components/schemas/BettingSeries"
},
"slug": {
"enum": [
"league-of-legends"
]
}
},
"required": [
"current_version",
"id",
"name",
"series",
"slug"
],
"type": "object"
},
"Esport_Overwatch": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"current_version": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/VideogameVersion"
}
],
"deprecated": false,
"title": "VideogameVersion"
},
"id": {
"enum": [
14
]
},
"name": {
"enum": [
"Overwatch"
]
},
"series": {
"$ref": "#/components/schemas/BettingSeries"
},
"slug": {
"enum": [
"ow"
]
}
},
"required": [
"current_version",
"id",
"name",
"series",
"slug"
],
"type": "object"
},
"Esport_PUBG": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"current_version": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/VideogameVersion"
}
],
"deprecated": false,
"title": "VideogameVersion"
},
"id": {
"enum": [
20
]
},
"name": {
"enum": [
"PUBG"
]
},
"series": {
"$ref": "#/components/schemas/BettingSeries"
},
"slug": {
"enum": [
"pubg"
]
}
},
"required": [
"current_version",
"id",
"name",
"series",
"slug"
],
"type": "object"
},
"Esport_R6siege": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"current_version": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/VideogameVersion"
}
],
"deprecated": false,
"title": "VideogameVersion"
},
"id": {
"enum": [
24
]
},
"name": {
"enum": [
"Rainbow 6 Siege"
]
},
"series": {
"$ref": "#/components/schemas/BettingSeries"
},
"slug": {
"enum": [
"r6-siege"
]
}
},
"required": [
"current_version",
"id",
"name",
"series",
"slug"
],
"type": "object"
},
"Esport_RocketLeague": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"current_version": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/VideogameVersion"
}
],
"deprecated": false,
"title": "VideogameVersion"
},
"id": {
"enum": [
22
]
},
"name": {
"enum": [
"Rocket League"
]
},
"series": {
"$ref": "#/components/schemas/BettingSeries"
},
"slug": {
"enum": [
"rl"
]
}
},
"required": [
"current_version",
"id",
"name",
"series",
"slug"
],
"type": "object"
},
"Esport_Valorant": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"current_version": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/VideogameVersion"
}
],
"deprecated": false,
"title": "VideogameVersion"
},
"id": {
"enum": [
26
]
},
"name": {
"enum": [
"Valorant"
]
},
"series": {
"$ref": "#/components/schemas/BettingSeries"
},
"slug": {
"enum": [
"valorant"
]
}
},
"required": [
"current_version",
"id",
"name",
"series",
"slug"
],
"type": "object"
},
"Esports": {
"items": {
"$ref": "#/components/schemas/Esport"
},
"type": "array"
},
"EventBeginAt": {
"format": "date-time",
"minLength": 1,
"type": "string"
},
"EventEndAt": {
"format": "date-time",
"minLength": 1,
"type": "string"
},
"EventID": {
"deprecated": true,
"minimum": 1,
"type": "integer"
},
"EventIsActive": {
"description": "Whether event is active",
"type": "boolean"
},
"EventStreamURL": {
"format": "uri",
"type": "string"
},
"Game": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"begin_at": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/GameBeginAt"
}
],
"deprecated": false,
"title": "GameBeginAt"
},
"complete": {
"$ref": "#/components/schemas/GameComplete"
},
"detailed_stats": {
"$ref": "#/components/schemas/GameDetailedStats"
},
"end_at": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/GameEndAt"
}
],
"deprecated": false,
"title": "GameEndAt"
},
"finished": {
"$ref": "#/components/schemas/GameIsFinished"
},
"forfeit": {
"$ref": "#/components/schemas/GameIsForfeit"
},
"id": {
"$ref": "#/components/schemas/GameID"
},
"length": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/GameLength"
}
],
"deprecated": false,
"title": "GameLength"
},
"match_id": {
"$ref": "#/components/schemas/MatchID"
},
"position": {
"$ref": "#/components/schemas/GamePosition"
},
"status": {
"$ref": "#/components/schemas/GameStatus"
},
"video_url": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/GameVideoUrl"
}
],
"deprecated": false,
"title": "GameVideoUrl"
},
"winner": {
"$ref": "#/components/schemas/GameWinner"
},
"winner_type": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/OpponentType"
}
],
"deprecated": false,
"title": "OpponentType"
}
},
"required": [
"begin_at",
"complete",
"detailed_stats",
"end_at",
"finished",
"forfeit",
"id",
"length",
"match_id",
"position",
"status",
"video_url",
"winner",
"winner_type"
],
"type": "object"
},
"GameBeginAt": {
"format": "date-time",
"minLength": 1,
"type": "string"
},
"GameComplete": {
"description": "Whether game data are complete and won't change",
"type": "boolean"
},
"GameCount": {
"description": "Number of games",
"minimum": 0,
"type": "integer"
},
"GameDetailedStats": {
"description": "Whether the game offers full stats",
"type": "boolean"
},
"GameEndAt": {
"format": "date-time",
"minLength": 1,
"type": "string"
},
"GameID": {
"anyOf": [
{
"$ref": "#/components/schemas/LoLGameID"
},
{
"$ref": "#/components/schemas/CSGOGameID"
},
{
"$ref": "#/components/schemas/OwGameID"
},
{
"$ref": "#/components/schemas/Dota2GameID"
},
{
"$ref": "#/components/schemas/PUBGGameID"
}
],
"description": "A game ID"
},
"GameIsFinished": {
"description": "Whether game is finished",
"type": "boolean"
},
"GameIsForfeit": {
"description": "Whether game is forfeit",
"type": "boolean"
},
"GameLength": {
"minimum": 0,
"type": "integer"
},
"GamePosition": {
"minimum": 1,
"type": "integer"
},
"GameStatus": {
"enum": [
"finished",
"not_played",
"not_started",
"running"
],
"type": "string"
},
"GameVideoUrl": {
"format": "uri",
"type": "string"
},
"GameWinner": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"id": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/OpponentID"
}
],
"deprecated": false,
"title": "OpponentID"
},
"type": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/OpponentType"
}
],
"deprecated": false,
"title": "OpponentType"
}
},
"required": [
"id",
"type"
],
"type": "object"
},
"Games": {
"items": {
"$ref": "#/components/schemas/Game"
},
"type": "array"
},
"GroupStanding": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"losses": {
"$ref": "#/components/schemas/StandingLosses"
},
"rank": {
"$ref": "#/components/schemas/StandingRank"
},
"team": {
"$ref": "#/components/schemas/BaseTeam"
},
"ties": {
"$ref": "#/components/schemas/StandingTies"
},
"total": {
"$ref": "#/components/schemas/MatchCount"
},
"wins": {
"$ref": "#/components/schemas/MatchCount"
}
},
"required": [
"losses",
"rank",
"team",
"total",
"wins"
],
"type": "object"
},
"Incident": {
"oneOf": [
{
"$ref": "#/components/schemas/IncidentOfTypeLeague"
},
{
"$ref": "#/components/schemas/IncidentOfTypeMatch"
},
{
"$ref": "#/components/schemas/IncidentOfTypePlayer"
},
{
"$ref": "#/components/schemas/IncidentOfTypeSerie"
},
{
"$ref": "#/components/schemas/IncidentOfTypeTeam"
},
{
"$ref": "#/components/schemas/IncidentOfTypeTournament"
},
{
"$ref": "#/components/schemas/DeletionIncident"
}
]
},
"IncidentChangeType": {
"enum": [
"creation",
"deletion",
"update"
],
"type": "string"
},
"IncidentDeletedAt": {
"format": "date-time",
"minLength": 1,
"type": "string"
},
"IncidentDeletionReason": {
"oneOf": [
{
"$ref": "#/components/schemas/IncidentDeletionReasonReplaced"
},
{
"$ref": "#/components/schemas/IncidentDeletionReasonMerged"
},
{
"$ref": "#/components/schemas/IncidentDeletionReasonDeleted"
}
]
},
"IncidentDeletionReasonDeleted": {
"description": "The entity no longer exists.",
"enum": [
"Model deleted"
],
"type": "string"
},
"IncidentDeletionReasonMerged": {
"description": "The entity has been merged with another one of the same type.",
"pattern": "^Merged with [0-9]+$",
"type": "string"
},
"IncidentDeletionReasonReplaced": {
"description": "The entity has been replaced with another one of another type.",
"pattern": "^Replaced by (serie|tournament) [0-9]+$",
"type": "string"
},
"IncidentID": {
"anyOf": [
{
"$ref": "#/components/schemas/LeagueID"
},
{
"$ref": "#/components/schemas/MatchID"
},
{
"$ref": "#/components/schemas/PlayerID"
},
{
"$ref": "#/components/schemas/SerieID"
},
{
"$ref": "#/components/schemas/TeamID"
},
{
"$ref": "#/components/schemas/TournamentID"
}
],
"description": "An incident ID"
},
"IncidentModifiedAt": {
"format": "date-time",
"minLength": 1,
"type": "string"
},
"IncidentOfTypeLeague": {
"additionalProperties": false,
"deprecated": false,
"description": "An added or changed league",
"properties": {
"change_type": {
"$ref": "#/components/schemas/IncidentChangeType"
},
"id": {
"$ref": "#/components/schemas/IncidentID"
},
"modified_at": {
"$ref": "#/components/schemas/IncidentModifiedAt"
},
"object": {
"$ref": "#/components/schemas/League"
},
"type": {
"enum": [
"league"
]
}
},
"required": [
"change_type",
"id",
"modified_at",
"object",
"type"
],
"type": "object"
},
"IncidentOfTypeMatch": {
"additionalProperties": false,
"deprecated": false,
"description": "An added or changed match",
"properties": {
"change_type": {
"$ref": "#/components/schemas/IncidentChangeType"
},
"id": {
"$ref": "#/components/schemas/IncidentID"
},
"modified_at": {
"$ref": "#/components/schemas/IncidentModifiedAt"
},
"object": {
"$ref": "#/components/schemas/Match"
},
"type": {
"enum": [
"match"
]
}
},
"required": [
"change_type",
"id",
"modified_at",
"object",
"type"
],
"type": "object"
},
"IncidentOfTypePlayer": {
"additionalProperties": false,
"deprecated": false,
"description": "An added or changed player",
"properties": {
"change_type": {
"$ref": "#/components/schemas/IncidentChangeType"
},
"id": {
"$ref": "#/components/schemas/IncidentID"
},
"modified_at": {
"$ref": "#/components/schemas/IncidentModifiedAt"
},
"object": {
"$ref": "#/components/schemas/Player"
},
"type": {
"enum": [
"player"
]
}
},
"required": [
"change_type",
"id",
"modified_at",
"object",
"type"
],
"type": "object"
},
"IncidentOfTypeSerie": {
"additionalProperties": false,
"deprecated": false,
"description": "An added or changed serie",
"properties": {
"change_type": {
"$ref": "#/components/schemas/IncidentChangeType"
},
"id": {
"$ref": "#/components/schemas/IncidentID"
},
"modified_at": {
"$ref": "#/components/schemas/IncidentModifiedAt"
},
"object": {
"$ref": "#/components/schemas/Serie"
},
"type": {
"enum": [
"serie"
]
}
},
"required": [
"change_type",
"id",
"modified_at",
"object",
"type"
],
"type": "object"
},
"IncidentOfTypeTeam": {
"additionalProperties": false,
"deprecated": false,
"description": "An added or changed team",
"properties": {
"change_type": {
"$ref": "#/components/schemas/IncidentChangeType"
},
"id": {
"$ref": "#/components/schemas/IncidentID"
},
"modified_at": {
"$ref": "#/components/schemas/IncidentModifiedAt"
},
"object": {
"$ref": "#/components/schemas/Team"
},
"type": {
"enum": [
"team"
]
}
},
"required": [
"change_type",
"id",
"modified_at",
"object",
"type"
],
"type": "object"
},
"IncidentOfTypeTournament": {
"additionalProperties": false,
"deprecated": false,
"description": "An added or changed tournament",
"properties": {
"change_type": {
"$ref": "#/components/schemas/IncidentChangeType"
},
"id": {
"$ref": "#/components/schemas/IncidentID"
},
"modified_at": {
"$ref": "#/components/schemas/IncidentModifiedAt"
},
"object": {
"$ref": "#/components/schemas/Tournament"
},
"type": {
"enum": [
"tournament"
]
}
},
"required": [
"change_type",
"id",
"modified_at",
"object",
"type"
],
"type": "object"
},
"IncidentType": {
"enum": [
"league",
"match",
"player",
"serie",
"team",
"tournament"
],
"type": "string"
},
"Incidents": {
"items": {
"$ref": "#/components/schemas/Incident"
},
"type": "array"
},
"League": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"id": {
"$ref": "#/components/schemas/LeagueID"
},
"image_url": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/LeagueImageURL"
}
],
"deprecated": false,
"title": "LeagueImageURL"
},
"modified_at": {
"$ref": "#/components/schemas/LeagueModifiedAt"
},
"name": {
"$ref": "#/components/schemas/LeagueName"
},
"series": {
"$ref": "#/components/schemas/BaseSeries"
},
"slug": {
"$ref": "#/components/schemas/LeagueSlug"
},
"url": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/LeagueURL"
}
],
"deprecated": false,
"title": "LeagueURL"
},
"videogame": {
"$ref": "#/components/schemas/LeagueVideogame"
}
},
"required": [
"id",
"image_url",
"modified_at",
"name",
"series",
"slug",
"url",
"videogame"
],
"type": "object"
},
"LeagueID": {
"minimum": 1,
"type": "integer"
},
"LeagueIDOrSlug": {
"description": "A league ID or slug",
"oneOf": [
{
"$ref": "#/components/schemas/LeagueID"
},
{
"$ref": "#/components/schemas/LeagueSlug"
}
]
},
"LeagueImageURL": {
"format": "uri",
"type": "string"
},
"LeagueModifiedAt": {
"format": "date-time",
"minLength": 1,
"type": "string"
},
"LeagueName": {
"type": "string"
},
"LeagueSlug": {
"minLength": 1,
"pattern": "^[a-z0-9:_-]+$",
"type": "string"
},
"LeagueURL": {
"format": "uri",
"type": "string"
},
"LeagueVideogame": {
"oneOf": [
{
"$ref": "#/components/schemas/LeagueVideogame_LoL"
},
{
"$ref": "#/components/schemas/LeagueVideogame_CSGO"
},
{
"$ref": "#/components/schemas/LeagueVideogame_Dota2"
},
{
"$ref": "#/components/schemas/LeagueVideogame_Overwatch"
},
{
"$ref": "#/components/schemas/LeagueVideogame_PUBG"
},
{
"$ref": "#/components/schemas/LeagueVideogame_RocketLeague"
},
{
"$ref": "#/components/schemas/LeagueVideogame_Codmw"
},
{
"$ref": "#/components/schemas/LeagueVideogame_R6siege"
},
{
"$ref": "#/components/schemas/LeagueVideogame_Fifa"
},
{
"$ref": "#/components/schemas/LeagueVideogame_Valorant"
}
]
},
"LeagueVideogame_CSGO": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"current_version": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/VideogameVersion"
}
],
"deprecated": false,
"title": "VideogameVersion"
},
"id": {
"enum": [
3
]
},
"name": {
"enum": [
"CS:GO"
]
},
"slug": {
"enum": [
"cs-go"
]
}
},
"required": [
"current_version",
"id",
"name",
"slug"
],
"type": "object"
},
"LeagueVideogame_Codmw": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"current_version": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/VideogameVersion"
}
],
"deprecated": false,
"title": "VideogameVersion"
},
"id": {
"enum": [
23
]
},
"name": {
"enum": [
"Call of Duty"
]
},
"slug": {
"enum": [
"cod-mw"
]
}
},
"required": [
"current_version",
"id",
"name",
"slug"
],
"type": "object"
},
"LeagueVideogame_Dota2": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"current_version": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/VideogameVersion"
}
],
"deprecated": false,
"title": "VideogameVersion"
},
"id": {
"enum": [
4
]
},
"name": {
"enum": [
"Dota 2"
]
},
"slug": {
"enum": [
"dota-2"
]
}
},
"required": [
"current_version",
"id",
"name",
"slug"
],
"type": "object"
},
"LeagueVideogame_Fifa": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"current_version": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/VideogameVersion"
}
],
"deprecated": false,
"title": "VideogameVersion"
},
"id": {
"enum": [
25
]
},
"name": {
"enum": [
"FIFA"
]
},
"slug": {
"enum": [
"fifa"
]
}
},
"required": [
"current_version",
"id",
"name",
"slug"
],
"type": "object"
},
"LeagueVideogame_Fortnite": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"current_version": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/VideogameVersion"
}
],
"deprecated": false,
"title": "VideogameVersion"
},
"id": {
"enum": [
21
]
},
"name": {
"enum": [
"Fortnite"
]
},
"slug": {
"enum": [
"fortnite"
]
}
},
"required": [
"current_version",
"id",
"name",
"slug"
],
"type": "object"
},
"LeagueVideogame_LoL": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"current_version": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/VideogameVersion"
}
],
"deprecated": false,
"title": "VideogameVersion"
},
"id": {
"enum": [
1
]
},
"name": {
"enum": [
"LoL"
]
},
"slug": {
"enum": [
"league-of-legends"
]
}
},
"required": [
"current_version",
"id",
"name",
"slug"
],
"type": "object"
},
"LeagueVideogame_Overwatch": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"current_version": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/VideogameVersion"
}
],
"deprecated": false,
"title": "VideogameVersion"
},
"id": {
"enum": [
14
]
},
"name": {
"enum": [
"Overwatch"
]
},
"slug": {
"enum": [
"ow"
]
}
},
"required": [
"current_version",
"id",
"name",
"slug"
],
"type": "object"
},
"LeagueVideogame_PUBG": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"current_version": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/VideogameVersion"
}
],
"deprecated": false,
"title": "VideogameVersion"
},
"id": {
"enum": [
20
]
},
"name": {
"enum": [
"PUBG"
]
},
"slug": {
"enum": [
"pubg"
]
}
},
"required": [
"current_version",
"id",
"name",
"slug"
],
"type": "object"
},
"LeagueVideogame_R6siege": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"current_version": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/VideogameVersion"
}
],
"deprecated": false,
"title": "VideogameVersion"
},
"id": {
"enum": [
24
]
},
"name": {
"enum": [
"Rainbow 6 Siege"
]
},
"slug": {
"enum": [
"r6-siege"
]
}
},
"required": [
"current_version",
"id",
"name",
"slug"
],
"type": "object"
},
"LeagueVideogame_RocketLeague": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"current_version": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/VideogameVersion"
}
],
"deprecated": false,
"title": "VideogameVersion"
},
"id": {
"enum": [
22
]
},
"name": {
"enum": [
"Rocket League"
]
},
"slug": {
"enum": [
"rl"
]
}
},
"required": [
"current_version",
"id",
"name",
"slug"
],
"type": "object"
},
"LeagueVideogame_Valorant": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"current_version": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/VideogameVersion"
}
],
"deprecated": false,
"title": "VideogameVersion"
},
"id": {
"enum": [
26
]
},
"name": {
"enum": [
"Valorant"
]
},
"slug": {
"enum": [
"valorant"
]
}
},
"required": [
"current_version",
"id",
"name",
"slug"
],
"type": "object"
},
"Leagues": {
"items": {
"$ref": "#/components/schemas/League"
},
"type": "array"
},
"Live": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"endpoints": {
"$ref": "#/components/schemas/LiveEndpoints"
},
"event": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/LiveEvent"
}
],
"deprecated": true,
"title": "LiveEvent"
},
"match": {
"$ref": "#/components/schemas/Match"
}
},
"required": [
"endpoints",
"event",
"match"
],
"type": "object"
},
"LiveBeginAt": {
"format": "date-time",
"minLength": 1,
"type": "string"
},
"LiveEndpoint": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"begin_at": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/LiveBeginAt"
}
],
"deprecated": false,
"title": "LiveBeginAt"
},
"expected_begin_at": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/LiveExpectedBeginAt"
}
],
"deprecated": false,
"title": "LiveExpectedBeginAt"
},
"last_active": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/LiveLastActive"
}
],
"deprecated": false,
"title": "LiveLastActive"
},
"match_id": {
"$ref": "#/components/schemas/MatchID"
},
"open": {
"$ref": "#/components/schemas/LiveIsOpen"
},
"type": {
"$ref": "#/components/schemas/LiveType"
},
"url": {
"$ref": "#/components/schemas/LiveUrl"
}
},
"required": [
"begin_at",
"expected_begin_at",
"last_active",
"match_id",
"open",
"type",
"url"
],
"type": "object"
},
"LiveEndpoints": {
"items": {
"$ref": "#/components/schemas/LiveEndpoint"
},
"type": "array"
},
"LiveEvent": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"begin_at": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/EventBeginAt"
}
],
"deprecated": true,
"title": "EventBeginAt"
},
"end_at": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/EventEndAt"
}
],
"deprecated": true,
"title": "EventEndAt"
},
"game": {
"$ref": "#/components/schemas/VideogameSlug"
},
"id": {
"$ref": "#/components/schemas/EventID"
},
"is_active": {
"$ref": "#/components/schemas/EventIsActive"
},
"stream_url": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/EventStreamURL"
}
],
"deprecated": false,
"title": "EventStreamURL"
},
"tournament_id": {
"$ref": "#/components/schemas/TournamentID"
}
},
"required": [
"begin_at",
"end_at",
"game",
"id",
"is_active",
"stream_url",
"tournament_id"
],
"type": "object"
},
"LiveExpectedBeginAt": {
"format": "date-time",
"minLength": 1,
"type": "string"
},
"LiveIsOpen": {
"description": "Whether live is open",
"type": "boolean"
},
"LiveLastActive": {
"description": "Timestamp in milliseconds (since January 1, 1970 00:00:00 UTC)",
"minimum": 0,
"type": "integer"
},
"LiveType": {
"enum": [
"events",
"frames"
],
"type": "string"
},
"LiveUrl": {
"format": "uri",
"type": "string"
},
"Lives": {
"items": {
"$ref": "#/components/schemas/Live"
},
"type": "array"
},
"LoLBaronKills": {
"minimum": 0,
"type": "integer"
},
"LoLChampionID": {
"minimum": 1,
"type": "integer"
},
"LoLDragonKills": {
"minimum": 0,
"type": "integer"
},
"LoLGameID": {
"minimum": 1,
"type": "integer"
},
"LoLGold": {
"minimum": 0,
"type": "integer"
},
"LoLHeraldKills": {
"minimum": 0,
"type": "integer"
},
"LoLInhibitorKills": {
"minimum": 0,
"type": "integer"
},
"LoLItemID": {
"minimum": 1,
"type": "integer"
},
"LoLMasteryID": {
"minimum": 1,
"type": "integer"
},
"LoLRuneID": {
"minimum": 1,
"type": "integer"
},
"LoLSpellID": {
"minimum": 1,
"type": "integer"
},
"LoLTeamColor": {
"enum": [
"blue",
"red"
],
"type": "string"
},
"LoLTeamGotFirstBaron": {
"description": "For League-of-Legends: whether team got first baron Nashor",
"type": "boolean"
},
"LoLTeamGotFirstBlood": {
"description": "For League-of-Legends: whether team got first blood",
"type": "boolean"
},
"LoLTeamGotFirstDragon": {
"description": "For League-of-Legends: whether team got first dragon",
"type": "boolean"
},
"LoLTeamGotFirstHerald": {
"description": "For League-of-Legends: whether team got first herald",
"type": "boolean"
},
"LoLTeamGotFirstInhibitor": {
"description": "For League-of-Legends: whether team got first inhibitor",
"type": "boolean"
},
"LoLTeamGotFirstTower": {
"description": "For League-of-Legends: whether team got first tower",
"type": "boolean"
},
"LoLTeamKills": {
"minimum": 0,
"type": "integer"
},
"LoLTowerKills": {
"minimum": 0,
"type": "integer"
},
"LoLVersionName": {
"minimum": 1,
"type": "integer"
},
"Market": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"id": {
"$ref": "#/components/schemas/MarketID"
},
"line": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/MarketLine"
}
],
"deprecated": false,
"title": "MarketLine"
},
"margin": {
"$ref": "#/components/schemas/MarketMargin"
},
"name": {
"$ref": "#/components/schemas/MarketName"
},
"participant_id": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/OpponentID"
}
],
"deprecated": false,
"title": "OpponentID"
},
"participant_type": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/OpponentType"
}
],
"deprecated": false,
"title": "OpponentType"
},
"selections": {
"$ref": "#/components/schemas/MarketSelections"
},
"status": {
"$ref": "#/components/schemas/MarketStatus"
},
"template": {
"$ref": "#/components/schemas/MarketTemplate"
}
},
"required": [
"id",
"line",
"margin",
"name",
"participant_id",
"participant_type",
"selections",
"status",
"template"
],
"type": "object"
},
"MarketID": {
"minLength": 1,
"pattern": "^[a-z0-9_-]+$",
"type": "string"
},
"MarketLine": {
"type": "string"
},
"MarketMargin": {
"minimum": 0,
"type": "number"
},
"MarketName": {
"type": "string"
},
"MarketSelection": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"line": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/SelectionLine"
}
],
"deprecated": false,
"title": "SelectionLine"
},
"name": {
"$ref": "#/components/schemas/SelectionName"
},
"participant_id": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/OpponentID"
}
],
"deprecated": false,
"title": "OpponentID"
},
"participant_type": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/OpponentType"
}
],
"deprecated": false,
"title": "OpponentType"
},
"position": {
"$ref": "#/components/schemas/SelectionPosition"
},
"probability": {
"$ref": "#/components/schemas/SelectionProbability"
},
"probability_with_margin": {
"$ref": "#/components/schemas/SelectionProbabilityWithMargin"
},
"result": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/SelectionResult"
}
],
"deprecated": false,
"title": "SelectionResult"
},
"template": {
"$ref": "#/components/schemas/SelectionTemplate"
}
},
"required": [
"line",
"name",
"participant_id",
"participant_type",
"position",
"probability",
"probability_with_margin",
"result",
"template"
],
"type": "object"
},
"MarketSelections": {
"items": {
"$ref": "#/components/schemas/MarketSelection"
},
"type": "array"
},
"MarketStatus": {
"enum": [
"deactivated",
"new",
"settled",
"suspended"
],
"type": "string"
},
"MarketTemplate": {
"type": "string"
},
"Markets": {
"items": {
"$ref": "#/components/schemas/Market"
},
"type": "array"
},
"MarketsCreated": {
"description": "Whether markets has been created",
"type": "boolean"
},
"MarketsUpdatedAt": {
"format": "date-time",
"minLength": 1,
"type": "string"
},
"Match": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"begin_at": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/MatchBeginAt"
}
],
"deprecated": false,
"title": "MatchBeginAt"
},
"detailed_stats": {
"$ref": "#/components/schemas/MatchDetailedStats"
},
"draw": {
"$ref": "#/components/schemas/MatchIsDraw"
},
"end_at": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/MatchEndAt"
}
],
"deprecated": false,
"title": "MatchEndAt"
},
"forfeit": {
"$ref": "#/components/schemas/MatchIsForfeit"
},
"game_advantage": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/OpponentID"
}
],
"deprecated": false,
"title": "OpponentID"
},
"games": {
"$ref": "#/components/schemas/Games"
},
"id": {
"$ref": "#/components/schemas/MatchID"
},
"league": {
"$ref": "#/components/schemas/BaseLeague"
},
"league_id": {
"$ref": "#/components/schemas/LeagueID"
},
"live": {
"$ref": "#/components/schemas/MatchLive"
},
"live_embed_url": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/MatchEmbedLiveVideoURLDeprecated"
}
],
"deprecated": true,
"title": "MatchEmbedLiveVideoURLDeprecated"
},
"match_type": {
"$ref": "#/components/schemas/MatchType"
},
"modified_at": {
"$ref": "#/components/schemas/MatchModifiedAt"
},
"name": {
"$ref": "#/components/schemas/MatchName"
},
"number_of_games": {
"$ref": "#/components/schemas/GameCount"
},
"official_stream_url": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/MatchOfficialStreamURL"
}
],
"deprecated": true,
"title": "MatchOfficialStreamURL"
},
"opponents": {
"$ref": "#/components/schemas/Opponents"
},
"original_scheduled_at": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/MatchOriginalScheduledAt"
}
],
"deprecated": false,
"title": "MatchOriginalScheduledAt"
},
"rescheduled": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/MatchIsRescheduled"
}
],
"deprecated": false,
"title": "MatchIsRescheduled"
},
"results": {
"$ref": "#/components/schemas/MatchResults"
},
"scheduled_at": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/MatchScheduledAt"
}
],
"deprecated": false,
"title": "MatchScheduledAt"
},
"serie": {
"$ref": "#/components/schemas/BaseSerie"
},
"serie_id": {
"$ref": "#/components/schemas/SerieID"
},
"slug": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/MatchSlug"
}
],
"deprecated": false,
"title": "MatchSlug"
},
"status": {
"$ref": "#/components/schemas/MatchStatus"
},
"streams": {
"$ref": "#/components/schemas/MatchLocalizedStreams"
},
"streams_list": {
"$ref": "#/components/schemas/StreamsList"
},
"tournament": {
"$ref": "#/components/schemas/BaseTournament"
},
"tournament_id": {
"$ref": "#/components/schemas/TournamentID"
},
"videogame": {
"$ref": "#/components/schemas/CurrentVideogame"
},
"videogame_version": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/ShortVideogameVersion"
}
],
"deprecated": false,
"title": "ShortVideogameVersion"
},
"winner": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/BaseOpponent"
}
],
"deprecated": false,
"title": "BaseOpponent"
},
"winner_id": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/OpponentID"
}
],
"deprecated": false,
"title": "OpponentID"
}
},
"required": [
"begin_at",
"detailed_stats",
"draw",
"end_at",
"forfeit",
"game_advantage",
"games",
"id",
"league",
"league_id",
"live",
"live_embed_url",
"match_type",
"modified_at",
"name",
"number_of_games",
"official_stream_url",
"opponents",
"original_scheduled_at",
"rescheduled",
"results",
"scheduled_at",
"serie",
"serie_id",
"slug",
"status",
"streams",
"streams_list",
"tournament",
"tournament_id",
"videogame",
"videogame_version",
"winner",
"winner_id"
],
"type": "object"
},
"MatchBeginAt": {
"format": "date-time",
"minLength": 1,
"type": "string"
},
"MatchBookable": {
"description": "Whether match can be booked",
"type": "boolean"
},
"MatchBooked": {
"description": "Whether match has been booked",
"type": "boolean"
},
"MatchCount": {
"minimum": 0,
"type": "integer"
},
"MatchDetailedStats": {
"description": "Whether the match offers full stats",
"type": "boolean"
},
"MatchEmbedLiveVideoURL": {
"format": "uri",
"type": "string"
},
"MatchEmbedLiveVideoURLDeprecated": {
"description": "Use `.streams.official.embed_url` instead",
"format": "uri",
"type": "string"
},
"MatchEndAt": {
"format": "date-time",
"minLength": 1,
"type": "string"
},
"MatchID": {
"minimum": 1,
"type": "integer"
},
"MatchIDOrSlug": {
"description": "A match ID or slug",
"oneOf": [
{
"$ref": "#/components/schemas/MatchID"
},
{
"$ref": "#/components/schemas/MatchSlug"
}
]
},
"MatchIsDraw": {
"description": "Whether result of the match is a draw",
"type": "boolean"
},
"MatchIsForfeit": {
"description": "Whether match was forfeited",
"type": "boolean"
},
"MatchIsRescheduled": {
"description": "Whether match has been rescheduled",
"type": "boolean"
},
"MatchLive": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"opens_at": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/MatchLiveOpensAt"
}
],
"deprecated": false,
"title": "MatchLiveOpensAt"
},
"supported": {
"$ref": "#/components/schemas/MatchLiveIsSupported"
},
"url": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/MatchLiveURL"
}
],
"deprecated": false,
"title": "MatchLiveURL"
}
},
"required": [
"opens_at",
"supported",
"url"
],
"type": "object"
},
"MatchLiveAvailable": {
"description": "Whether live is available",
"type": "boolean"
},
"MatchLiveIsSupported": {
"description": "Whether live is supported",
"type": "boolean"
},
"MatchLiveOpensAt": {
"format": "date-time",
"minLength": 1,
"type": "string"
},
"MatchLiveURL": {
"format": "uri",
"type": "string"
},
"MatchLiveVideoRawURL": {
"format": "uri",
"type": "string"
},
"MatchLocalizedStream": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"embed_url": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/MatchEmbedLiveVideoURL"
}
],
"deprecated": false,
"title": "MatchEmbedLiveVideoURL"
},
"raw_url": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/MatchLiveVideoRawURL"
}
],
"deprecated": false,
"title": "MatchLiveVideoRawURL"
}
},
"required": [
"embed_url",
"raw_url"
],
"type": "object"
},
"MatchLocalizedStreams": {
"additionalProperties": false,
"deprecated": true,
"properties": {
"english": {
"$ref": "#/components/schemas/MatchLocalizedStream"
},
"official": {
"$ref": "#/components/schemas/MatchLocalizedStream"
},
"russian": {
"$ref": "#/components/schemas/MatchLocalizedStream"
}
},
"required": [
"english",
"official",
"russian"
],
"type": "object"
},
"MatchMarketGame": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"id": {
"$ref": "#/components/schemas/GameID"
},
"markets": {
"$ref": "#/components/schemas/Markets"
}
},
"required": [
"id",
"markets"
],
"type": "object"
},
"MatchMarketGames": {
"items": {
"$ref": "#/components/schemas/MatchMarketGame"
},
"type": "array"
},
"MatchMarkets": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"games": {
"$ref": "#/components/schemas/MatchMarketGames"
},
"id": {
"$ref": "#/components/schemas/MatchID"
},
"markets": {
"$ref": "#/components/schemas/Markets"
}
},
"required": [
"games",
"id",
"markets"
],
"type": "object"
},
"MatchModifiedAt": {
"format": "date-time",
"minLength": 1,
"type": "string"
},
"MatchName": {
"type": "string"
},
"MatchOfficialStreamURL": {
"description": "Use `.streams.official.raw_url` instead",
"format": "uri",
"type": "string"
},
"MatchOpponentBasePlayer": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"birth_year": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/PlayerBirthYear"
}
],
"deprecated": false,
"title": "PlayerBirthYear"
},
"birthday": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/PlayerBirthday"
}
],
"deprecated": false,
"title": "PlayerBirthday"
},
"current_videogame": {
"$ref": "#/components/schemas/CurrentVideogame"
},
"first_name": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/PlayerFirstName"
}
],
"deprecated": false,
"title": "PlayerFirstName"
},
"hometown": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/PlayerHometown"
}
],
"deprecated": false,
"title": "PlayerHometown"
},
"id": {
"$ref": "#/components/schemas/PlayerID"
},
"image_url": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/PlayerImageURL"
}
],
"deprecated": false,
"title": "PlayerImageURL"
},
"last_name": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/PlayerLastName"
}
],
"deprecated": false,
"title": "PlayerLastName"
},
"name": {
"$ref": "#/components/schemas/PlayerName"
},
"nationality": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/PlayerNationality"
}
],
"deprecated": false,
"title": "PlayerNationality"
},
"role": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/PlayerRoleSlug"
}
],
"deprecated": false,
"title": "PlayerRoleSlug"
},
"slug": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/PlayerSlug"
}
],
"deprecated": false,
"title": "PlayerSlug"
}
},
"required": [
"birth_year",
"birthday",
"current_videogame",
"first_name",
"hometown",
"id",
"image_url",
"last_name",
"name",
"nationality",
"role",
"slug"
],
"type": "object"
},
"MatchOpponentBasePlayers": {
"description": "A list of players",
"items": {
"$ref": "#/components/schemas/MatchOpponentBasePlayer"
},
"type": "array"
},
"MatchOpponentsObject": {
"oneOf": [
{
"$ref": "#/components/schemas/MatchTeamOpponentsObject"
},
{
"$ref": "#/components/schemas/MatchPlayerOpponentsObject"
}
]
},
"MatchOriginalScheduledAt": {
"format": "date-time",
"minLength": 1,
"type": "string"
},
"MatchPandaScoreReviewed": {
"description": "Whether PandaScore reviewed the match",
"type": "boolean"
},
"MatchPlayerOpponentsObject": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"opponent_type": {
"$ref": "#/components/schemas/OpponentTypePlayer"
},
"opponents": {
"$ref": "#/components/schemas/MatchOpponentBasePlayers"
}
},
"required": [
"opponent_type",
"opponents"
],
"type": "object"
},
"MatchPlayerResult": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"player_id": {
"$ref": "#/components/schemas/PlayerID"
},
"score": {
"$ref": "#/components/schemas/MatchScore"
}
},
"required": [
"player_id",
"score"
],
"type": "object"
},
"MatchResult": {
"anyOf": [
{
"$ref": "#/components/schemas/MatchTeamResult"
},
{
"$ref": "#/components/schemas/MatchPlayerResult"
}
]
},
"MatchResults": {
"items": {
"$ref": "#/components/schemas/MatchResult"
},
"type": "array"
},
"MatchScheduledAt": {
"format": "date-time",
"minLength": 1,
"type": "string"
},
"MatchScore": {
"minimum": 0,
"type": "integer"
},
"MatchSettled": {
"description": "Whether match has been settled",
"type": "boolean"
},
"MatchSlug": {
"minLength": 1,
"pattern": "^[ a-zA-Z0-9_-]+$",
"type": "string"
},
"MatchStatus": {
"enum": [
"canceled",
"finished",
"not_started",
"postponed",
"running"
],
"type": "string"
},
"MatchTeamOpponentsObject": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"opponent_type": {
"$ref": "#/components/schemas/OpponentTypeTeam"
},
"opponents": {
"$ref": "#/components/schemas/Teams"
}
},
"required": [
"opponent_type",
"opponents"
],
"type": "object"
},
"MatchTeamResult": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"score": {
"$ref": "#/components/schemas/MatchScore"
},
"team_id": {
"$ref": "#/components/schemas/TeamID"
}
},
"required": [
"score",
"team_id"
],
"type": "object"
},
"MatchType": {
"enum": [
"best_of",
"custom",
"first_to",
"ow_best_of"
],
"type": "string"
},
"Matches": {
"items": {
"$ref": "#/components/schemas/Match"
},
"type": "array"
},
"NonDeletionIncident": {
"oneOf": [
{
"$ref": "#/components/schemas/IncidentOfTypeLeague"
},
{
"$ref": "#/components/schemas/IncidentOfTypeMatch"
},
{
"$ref": "#/components/schemas/IncidentOfTypePlayer"
},
{
"$ref": "#/components/schemas/IncidentOfTypeSerie"
},
{
"$ref": "#/components/schemas/IncidentOfTypeTeam"
},
{
"$ref": "#/components/schemas/IncidentOfTypeTournament"
}
]
},
"Opponent": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"opponent": {
"$ref": "#/components/schemas/BaseOpponent"
},
"type": {
"$ref": "#/components/schemas/OpponentType"
}
},
"required": [
"opponent",
"type"
],
"type": "object"
},
"OpponentID": {
"anyOf": [
{
"$ref": "#/components/schemas/PlayerID"
},
{
"$ref": "#/components/schemas/TeamID"
}
]
},
"OpponentType": {
"enum": [
"Player",
"Team"
],
"type": "string"
},
"OpponentTypePlayer": {
"enum": [
"Player"
],
"type": "string"
},
"OpponentTypeTeam": {
"enum": [
"Team"
],
"type": "string"
},
"Opponents": {
"items": {
"$ref": "#/components/schemas/Opponent"
},
"type": "array"
},
"OwGameID": {
"minimum": 1,
"type": "integer"
},
"OwHeroID": {
"minimum": 1,
"type": "integer"
},
"OwHeroIDOrSlug": {
"description": "For Overwatch: a hero ID or slug",
"oneOf": [
{
"$ref": "#/components/schemas/OwHeroID"
},
{
"$ref": "#/components/schemas/OwHeroSlug"
}
]
},
"OwHeroSlug": {
"minLength": 1,
"pattern": "^[a-z0-9_-]+$",
"type": "string"
},
"OwMapID": {
"minimum": 1,
"type": "integer"
},
"OwMapIDOrSlug": {
"description": "For Overwatch: a map ID or slug",
"oneOf": [
{
"$ref": "#/components/schemas/OwMapID"
},
{
"$ref": "#/components/schemas/OwMapSlug"
}
]
},
"OwMapSlug": {
"minLength": 1,
"pattern": "^[a-z0-9_-]+$",
"type": "string"
},
"PUBGGameID": {
"minimum": 1,
"type": "integer"
},
"Player": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"birth_year": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/PlayerBirthYear"
}
],
"deprecated": false,
"title": "PlayerBirthYear"
},
"birthday": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/PlayerBirthday"
}
],
"deprecated": false,
"title": "PlayerBirthday"
},
"current_team": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/BaseTeam"
}
],
"deprecated": false,
"title": "BaseTeam"
},
"current_videogame": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/CurrentVideogame"
}
],
"deprecated": false,
"title": "CurrentVideogame"
},
"first_name": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/PlayerFirstName"
}
],
"deprecated": false,
"title": "PlayerFirstName"
},
"hometown": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/PlayerHometown"
}
],
"deprecated": false,
"title": "PlayerHometown"
},
"id": {
"$ref": "#/components/schemas/PlayerID"
},
"image_url": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/PlayerImageURL"
}
],
"deprecated": false,
"title": "PlayerImageURL"
},
"last_name": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/PlayerLastName"
}
],
"deprecated": false,
"title": "PlayerLastName"
},
"name": {
"$ref": "#/components/schemas/PlayerName"
},
"nationality": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/PlayerNationality"
}
],
"deprecated": false,
"title": "PlayerNationality"
},
"role": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/PlayerRoleSlug"
}
],
"deprecated": false,
"title": "PlayerRoleSlug"
},
"slug": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/PlayerSlug"
}
],
"deprecated": false,
"title": "PlayerSlug"
}
},
"required": [
"current_team",
"current_videogame",
"first_name",
"hometown",
"id",
"image_url",
"last_name",
"name",
"nationality",
"role",
"slug"
],
"type": "object"
},
"PlayerBirthYear": {
"description": "Not present if the client did not subscribe to the appropriate plan.",
"minimum": 0,
"type": "number"
},
"PlayerBirthday": {
"description": "Not present if the client did not subscribe to the appropriate plan.",
"type": "string"
},
"PlayerFirstName": {
"type": "string"
},
"PlayerHometown": {
"type": "string"
},
"PlayerID": {
"minimum": 1,
"type": "integer"
},
"PlayerIDOrSlug": {
"description": "A player ID or slug",
"oneOf": [
{
"$ref": "#/components/schemas/PlayerID"
},
{
"$ref": "#/components/schemas/PlayerSlug"
}
]
},
"PlayerImageURL": {
"format": "uri",
"type": "string"
},
"PlayerLastName": {
"type": "string"
},
"PlayerName": {
"type": "string"
},
"PlayerNationality": {
"type": "string"
},
"PlayerRoleSlug": {
"type": "string"
},
"PlayerSlug": {
"minLength": 1,
"pattern": "^[a-z0-9_-]+$",
"type": "string"
},
"Players": {
"items": {
"$ref": "#/components/schemas/Player"
},
"type": "array"
},
"PreviousMatch": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"match_id": {
"$ref": "#/components/schemas/MatchID"
},
"type": {
"$ref": "#/components/schemas/PreviousMatchType"
}
},
"required": [
"match_id",
"type"
],
"type": "object"
},
"PreviousMatchType": {
"enum": [
"loser",
"winner"
],
"type": "string"
},
"PreviousMatches": {
"items": {
"$ref": "#/components/schemas/PreviousMatch"
},
"type": "array"
},
"SelectionLine": {
"type": "string"
},
"SelectionName": {
"type": "string"
},
"SelectionPosition": {
"minimum": 0,
"type": "integer"
},
"SelectionProbability": {
"maximum": 1,
"minimum": 0,
"type": "number"
},
"SelectionProbabilityWithMargin": {
"maximum": 1,
"minimum": 0,
"type": "number"
},
"SelectionResult": {
"enum": [
"lose",
"void",
"win"
],
"type": "string"
},
"SelectionTemplate": {
"type": "string"
},
"Serie": {
"additionalProperties": false,
"deprecated": false,
"description": "A serie, an occurrence of a league event",
"properties": {
"begin_at": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/SerieBeginAt"
}
],
"deprecated": false,
"title": "SerieBeginAt"
},
"description": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/SerieDescription"
}
],
"deprecated": false,
"title": "SerieDescription"
},
"end_at": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/SerieEndAt"
}
],
"deprecated": false,
"title": "SerieEndAt"
},
"full_name": {
"$ref": "#/components/schemas/SerieFullName"
},
"id": {
"$ref": "#/components/schemas/SerieID"
},
"league": {
"$ref": "#/components/schemas/BaseLeague"
},
"league_id": {
"$ref": "#/components/schemas/LeagueID"
},
"modified_at": {
"$ref": "#/components/schemas/SerieModifiedAt"
},
"name": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/SerieName"
}
],
"deprecated": false,
"title": "SerieName"
},
"season": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/SerieSeason"
}
],
"deprecated": false,
"title": "SerieSeason"
},
"slug": {
"$ref": "#/components/schemas/SerieSlug"
},
"tier": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/SerieTier"
}
],
"deprecated": false,
"title": "SerieTier"
},
"tournaments": {
"$ref": "#/components/schemas/BaseTournaments"
},
"videogame": {
"$ref": "#/components/schemas/CurrentVideogame"
},
"videogame_title": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/VideogameTitle"
}
],
"deprecated": false,
"title": "VideogameTitle"
},
"winner_id": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/OpponentID"
}
],
"deprecated": false,
"title": "OpponentID"
},
"winner_type": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/OpponentType"
}
],
"deprecated": false,
"title": "OpponentType"
},
"year": {
"$ref": "#/components/schemas/SerieYear"
}
},
"required": [
"begin_at",
"description",
"end_at",
"full_name",
"id",
"league",
"league_id",
"modified_at",
"name",
"season",
"slug",
"tier",
"tournaments",
"videogame",
"videogame_title",
"winner_id",
"winner_type",
"year"
],
"type": "object"
},
"SerieBeginAt": {
"format": "date-time",
"minLength": 1,
"type": "string"
},
"SerieDescription": {
"type": "string"
},
"SerieEndAt": {
"format": "date-time",
"minLength": 1,
"type": "string"
},
"SerieFullName": {
"type": "string"
},
"SerieID": {
"minimum": 1,
"type": "integer"
},
"SerieIDOrSlug": {
"description": "A serie ID or slug",
"oneOf": [
{
"$ref": "#/components/schemas/SerieID"
},
{
"$ref": "#/components/schemas/SerieSlug"
}
]
},
"SerieModifiedAt": {
"format": "date-time",
"minLength": 1,
"type": "string"
},
"SerieName": {
"type": "string"
},
"SerieSeason": {
"type": "string"
},
"SerieSlug": {
"minLength": 1,
"pattern": "^[a-z0-9_-]+$",
"type": "string"
},
"SerieTier": {
"type": "string"
},
"SerieYear": {
"minimum": 2012,
"type": "integer"
},
"Series": {
"items": {
"$ref": "#/components/schemas/Serie"
},
"type": "array"
},
"ShortTournament": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"begin_at": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/TournamentBeginAt"
}
],
"deprecated": false,
"title": "TournamentBeginAt"
},
"end_at": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/TournamentEndAt"
}
],
"deprecated": false,
"title": "TournamentEndAt"
},
"id": {
"$ref": "#/components/schemas/TournamentID"
},
"league": {
"$ref": "#/components/schemas/BaseLeague"
},
"league_id": {
"$ref": "#/components/schemas/LeagueID"
},
"live_supported": {
"$ref": "#/components/schemas/TournamentLiveSupported"
},
"matches": {
"$ref": "#/components/schemas/BaseMatches"
},
"modified_at": {
"$ref": "#/components/schemas/TournamentModifiedAt"
},
"name": {
"$ref": "#/components/schemas/TournamentName"
},
"prizepool": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/TournamentPrizepool"
}
],
"deprecated": false,
"title": "TournamentPrizepool"
},
"serie": {
"$ref": "#/components/schemas/BaseSerie"
},
"serie_id": {
"$ref": "#/components/schemas/SerieID"
},
"slug": {
"$ref": "#/components/schemas/TournamentSlug"
},
"teams": {
"$ref": "#/components/schemas/BaseTeams"
},
"videogame": {
"$ref": "#/components/schemas/CurrentVideogame"
},
"winner_id": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/OpponentID"
}
],
"deprecated": false,
"title": "OpponentID"
},
"winner_type": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/OpponentType"
}
],
"deprecated": false,
"title": "OpponentType"
}
},
"required": [
"begin_at",
"end_at",
"id",
"league",
"league_id",
"live_supported",
"matches",
"modified_at",
"name",
"prizepool",
"serie",
"serie_id",
"slug",
"teams",
"videogame",
"winner_id",
"winner_type"
],
"type": "object"
},
"ShortTournaments": {
"items": {
"$ref": "#/components/schemas/ShortTournament"
},
"type": "array"
},
"ShortVideogameVersion": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"current": {
"$ref": "#/components/schemas/VideogameVersionIsCurrent"
},
"name": {
"$ref": "#/components/schemas/VideogameVersion"
}
},
"required": [
"current",
"name"
],
"type": "object"
},
"ShortVideogameVersions": {
"items": {
"$ref": "#/components/schemas/ShortVideogameVersion"
},
"type": "array"
},
"Standing": {
"oneOf": [
{
"$ref": "#/components/schemas/BracketStanding"
},
{
"$ref": "#/components/schemas/GroupStanding"
}
]
},
"StandingLosses": {
"minimum": 0,
"type": "integer"
},
"StandingRank": {
"minimum": 0,
"type": "integer"
},
"StandingTies": {
"description": "Only present if ties occured during the tournament",
"minimum": 1,
"type": "integer"
},
"Standings": {
"items": {
"$ref": "#/components/schemas/Standing"
},
"type": "array"
},
"Stream": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"embed_url": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/StreamEmbedURL"
}
],
"deprecated": false,
"title": "StreamEmbedURL"
},
"language": {
"$ref": "#/components/schemas/StreamLanguage"
},
"main": {
"$ref": "#/components/schemas/StreamIsMain"
},
"official": {
"$ref": "#/components/schemas/StreamIsOfficial"
},
"raw_url": {
"$ref": "#/components/schemas/StreamURL"
}
},
"required": [
"embed_url",
"language",
"main",
"official",
"raw_url"
],
"type": "object"
},
"StreamEmbedURL": {
"description": "URL to embed in an iframe.",
"format": "uri",
"type": "string"
},
"StreamIsMain": {
"description": "Whether it is the main stream. Main stream is always official.",
"type": "boolean"
},
"StreamIsOfficial": {
"description": "Whether it is an official broadcast.",
"type": "boolean"
},
"StreamLanguage": {
"description": "Language alpha-2 code according to ISO 649-1 standard.",
"enum": [
"aa",
"ab",
"ae",
"af",
"ak",
"am",
"an",
"ar",
"as",
"av",
"ay",
"az",
"ba",
"be",
"bg",
"bh",
"bi",
"bm",
"bn",
"bo",
"br",
"bs",
"ca",
"ce",
"ch",
"co",
"cr",
"cs",
"cu",
"cv",
"cy",
"da",
"de",
"dv",
"dz",
"ee",
"el",
"en",
"eo",
"es",
"et",
"eu",
"fa",
"ff",
"fi",
"fj",
"fo",
"fr",
"fy",
"ga",
"gd",
"gl",
"gn",
"gu",
"gv",
"ha",
"he",
"hi",
"ho",
"hr",
"ht",
"hu",
"hy",
"hz",
"ia",
"id",
"ie",
"ig",
"ii",
"ik",
"io",
"is",
"it",
"iu",
"ja",
"jv",
"ka",
"kg",
"ki",
"kj",
"kk",
"kl",
"km",
"kn",
"ko",
"kr",
"ks",
"ku",
"kv",
"kw",
"ky",
"la",
"lb",
"lg",
"li",
"ln",
"lo",
"lt",
"lu",
"lv",
"mg",
"mh",
"mi",
"mk",
"ml",
"mn",
"mr",
"ms",
"mt",
"my",
"na",
"nb",
"nd",
"ne",
"ng",
"nl",
"nn",
"no",
"nr",
"nv",
"ny",
"oc",
"oj",
"om",
"or",
"os",
"pa",
"pi",
"pl",
"ps",
"pt",
"qu",
"rm",
"rn",
"ro",
"ru",
"rw",
"sa",
"sc",
"sd",
"se",
"sg",
"si",
"sk",
"sl",
"sm",
"sn",
"so",
"sq",
"sr",
"ss",
"st",
"su",
"sv",
"sw",
"ta",
"te",
"tg",
"th",
"ti",
"tk",
"tl",
"tn",
"to",
"tr",
"ts",
"tt",
"tw",
"ty",
"ug",
"uk",
"ur",
"uz",
"ve",
"vi",
"vo",
"wa",
"wo",
"xh",
"yi",
"yo",
"za",
"zh",
"zu"
],
"type": "string"
},
"StreamURL": {
"description": "URL to the stream on host website.",
"format": "uri",
"type": "string"
},
"StreamsList": {
"items": {
"$ref": "#/components/schemas/Stream"
},
"type": "array"
},
"Team": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"acronym": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/TeamAcronym"
}
],
"deprecated": false,
"title": "TeamAcronym"
},
"current_videogame": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/CurrentVideogame"
}
],
"deprecated": false,
"title": "CurrentVideogame"
},
"id": {
"$ref": "#/components/schemas/TeamID"
},
"image_url": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/TeamImageURL"
}
],
"deprecated": false,
"title": "TeamImageURL"
},
"location": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/TeamLocation"
}
],
"deprecated": false,
"title": "TeamLocation"
},
"modified_at": {
"$ref": "#/components/schemas/TeamModifiedAt"
},
"name": {
"$ref": "#/components/schemas/TeamName"
},
"players": {
"$ref": "#/components/schemas/BasePlayers"
},
"slug": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/TeamSlug"
}
],
"deprecated": false,
"title": "TeamSlug"
}
},
"required": [
"acronym",
"current_videogame",
"id",
"image_url",
"location",
"modified_at",
"name",
"players",
"slug"
],
"type": "object"
},
"TeamAcronym": {
"type": "string"
},
"TeamID": {
"minimum": 1,
"type": "integer"
},
"TeamIDOrSlug": {
"description": "A team ID or slug",
"oneOf": [
{
"$ref": "#/components/schemas/TeamID"
},
{
"$ref": "#/components/schemas/TeamSlug"
}
]
},
"TeamImageURL": {
"format": "uri",
"type": "string"
},
"TeamLocation": {
"description": "The team's organization location",
"type": "string"
},
"TeamModifiedAt": {
"format": "date-time",
"minLength": 1,
"type": "string"
},
"TeamName": {
"type": "string"
},
"TeamSlug": {
"minLength": 1,
"pattern": "^[a-z0-9_-]+$",
"type": "string"
},
"Teams": {
"description": "A list of teams",
"items": {
"$ref": "#/components/schemas/Team"
},
"type": "array"
},
"Tournament": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"begin_at": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/TournamentBeginAt"
}
],
"deprecated": false,
"title": "TournamentBeginAt"
},
"end_at": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/TournamentEndAt"
}
],
"deprecated": false,
"title": "TournamentEndAt"
},
"expected_roster": {
"$ref": "#/components/schemas/TournamentRosterItems"
},
"id": {
"$ref": "#/components/schemas/TournamentID"
},
"league": {
"$ref": "#/components/schemas/BaseLeague"
},
"league_id": {
"$ref": "#/components/schemas/LeagueID"
},
"live_supported": {
"$ref": "#/components/schemas/TournamentLiveSupported"
},
"matches": {
"$ref": "#/components/schemas/BaseMatches"
},
"modified_at": {
"$ref": "#/components/schemas/TournamentModifiedAt"
},
"name": {
"$ref": "#/components/schemas/TournamentName"
},
"prizepool": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/TournamentPrizepool"
}
],
"deprecated": false,
"title": "TournamentPrizepool"
},
"serie": {
"$ref": "#/components/schemas/BaseSerie"
},
"serie_id": {
"$ref": "#/components/schemas/SerieID"
},
"slug": {
"$ref": "#/components/schemas/TournamentSlug"
},
"teams": {
"$ref": "#/components/schemas/BaseTeams"
},
"videogame": {
"$ref": "#/components/schemas/CurrentVideogame"
},
"winner_id": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/OpponentID"
}
],
"deprecated": false,
"title": "OpponentID"
},
"winner_type": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/OpponentType"
}
],
"deprecated": false,
"title": "OpponentType"
}
},
"required": [
"begin_at",
"end_at",
"expected_roster",
"id",
"league",
"league_id",
"live_supported",
"matches",
"modified_at",
"name",
"prizepool",
"serie",
"serie_id",
"slug",
"teams",
"videogame",
"winner_id",
"winner_type"
],
"type": "object"
},
"TournamentBeginAt": {
"format": "date-time",
"minLength": 1,
"type": "string"
},
"TournamentEndAt": {
"format": "date-time",
"minLength": 1,
"type": "string"
},
"TournamentID": {
"minimum": 1,
"type": "integer"
},
"TournamentIDOrSlug": {
"description": "A tournament ID or slug",
"oneOf": [
{
"$ref": "#/components/schemas/TournamentID"
},
{
"$ref": "#/components/schemas/TournamentSlug"
}
]
},
"TournamentLiveSupported": {
"description": "Whether live is supported",
"type": "boolean"
},
"TournamentModifiedAt": {
"format": "date-time",
"minLength": 1,
"type": "string"
},
"TournamentName": {
"type": "string"
},
"TournamentPlayerRosters": {
"additionalProperties": false,
"deprecated": false,
"description": "Rosters for a tournament with player participants",
"properties": {
"rosters": {
"$ref": "#/components/schemas/Players"
},
"type": {
"$ref": "#/components/schemas/OpponentTypePlayer"
}
},
"required": [
"rosters",
"type"
],
"type": "object"
},
"TournamentPrizepool": {
"type": "string"
},
"TournamentRosterItem": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"players": {
"$ref": "#/components/schemas/BasePlayers"
},
"team": {
"$ref": "#/components/schemas/BaseTeam"
}
},
"required": [
"players",
"team"
],
"type": "object"
},
"TournamentRosterItems": {
"items": {
"$ref": "#/components/schemas/TournamentRosterItem"
},
"type": "array"
},
"TournamentRosters": {
"oneOf": [
{
"$ref": "#/components/schemas/TournamentTeamRosters"
},
{
"$ref": "#/components/schemas/TournamentPlayerRosters"
}
]
},
"TournamentSlug": {
"minLength": 1,
"pattern": "^[a-z0-9_-]+$",
"type": "string"
},
"TournamentTeamRosters": {
"additionalProperties": false,
"deprecated": false,
"description": "Rosters for a tournament with team participants",
"properties": {
"rosters": {
"$ref": "#/components/schemas/Teams"
},
"type": {
"$ref": "#/components/schemas/OpponentTypeTeam"
}
},
"required": [
"rosters",
"type"
],
"type": "object"
},
"Videogame": {
"oneOf": [
{
"$ref": "#/components/schemas/Videogame_LoL"
},
{
"$ref": "#/components/schemas/Videogame_CSGO"
},
{
"$ref": "#/components/schemas/Videogame_Dota2"
},
{
"$ref": "#/components/schemas/Videogame_Overwatch"
},
{
"$ref": "#/components/schemas/Videogame_PUBG"
},
{
"$ref": "#/components/schemas/Videogame_RocketLeague"
},
{
"$ref": "#/components/schemas/Videogame_Codmw"
},
{
"$ref": "#/components/schemas/Videogame_R6siege"
},
{
"$ref": "#/components/schemas/Videogame_Fifa"
},
{
"$ref": "#/components/schemas/Videogame_Valorant"
}
]
},
"VideogameID": {
"description": "A videogame ID",
"enum": [
1,
3,
4,
14,
20,
22,
23,
24,
25,
26
],
"type": "integer"
},
"VideogameIDOrSlug": {
"description": "A videogame ID or slug",
"oneOf": [
{
"$ref": "#/components/schemas/VideogameID"
},
{
"$ref": "#/components/schemas/VideogameSlug"
}
]
},
"VideogameLeague": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"id": {
"$ref": "#/components/schemas/LeagueID"
},
"image_url": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/LeagueImageURL"
}
],
"deprecated": false,
"title": "LeagueImageURL"
},
"modified_at": {
"$ref": "#/components/schemas/LeagueModifiedAt"
},
"name": {
"$ref": "#/components/schemas/LeagueName"
},
"series": {
"$ref": "#/components/schemas/BaseSeries"
},
"slug": {
"$ref": "#/components/schemas/LeagueSlug"
},
"url": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/LeagueURL"
}
],
"deprecated": false,
"title": "LeagueURL"
}
},
"required": [
"id",
"image_url",
"modified_at",
"name",
"series",
"slug",
"url"
],
"type": "object"
},
"VideogameLeagues": {
"items": {
"$ref": "#/components/schemas/VideogameLeague"
},
"type": "array"
},
"VideogameSlug": {
"description": "A videogame slug",
"enum": [
"cod-mw",
"cs-go",
"dota-2",
"fifa",
"league-of-legends",
"ow",
"pubg",
"r6-siege",
"rl",
"valorant"
],
"type": "string"
},
"VideogameTitle": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"id": {
"$ref": "#/components/schemas/VideogameTitleID"
},
"name": {
"$ref": "#/components/schemas/VideogameTitleName"
},
"videogame_id": {
"$ref": "#/components/schemas/VideogameID"
}
},
"required": [
"id",
"name",
"videogame_id"
],
"type": "object"
},
"VideogameTitleID": {
"minimum": 1,
"type": "integer"
},
"VideogameTitleName": {
"type": "string"
},
"VideogameVersion": {
"pattern": "^[0-9]+\\.[0-9]+\\.[0-9]+$",
"type": "string"
},
"VideogameVersionIsCurrent": {
"description": "Whether this videogame version is current",
"type": "boolean"
},
"Videogame_CSGO": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"current_version": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/VideogameVersion"
}
],
"deprecated": false,
"title": "VideogameVersion"
},
"id": {
"enum": [
3
]
},
"leagues": {
"$ref": "#/components/schemas/VideogameLeagues"
},
"name": {
"enum": [
"CS:GO"
]
},
"slug": {
"enum": [
"cs-go"
]
}
},
"required": [
"current_version",
"id",
"leagues",
"name",
"slug"
],
"type": "object"
},
"Videogame_Codmw": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"current_version": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/VideogameVersion"
}
],
"deprecated": false,
"title": "VideogameVersion"
},
"id": {
"enum": [
23
]
},
"leagues": {
"$ref": "#/components/schemas/VideogameLeagues"
},
"name": {
"enum": [
"Call of Duty"
]
},
"slug": {
"enum": [
"cod-mw"
]
}
},
"required": [
"current_version",
"id",
"leagues",
"name",
"slug"
],
"type": "object"
},
"Videogame_Dota2": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"current_version": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/VideogameVersion"
}
],
"deprecated": false,
"title": "VideogameVersion"
},
"id": {
"enum": [
4
]
},
"leagues": {
"$ref": "#/components/schemas/VideogameLeagues"
},
"name": {
"enum": [
"Dota 2"
]
},
"slug": {
"enum": [
"dota-2"
]
}
},
"required": [
"current_version",
"id",
"leagues",
"name",
"slug"
],
"type": "object"
},
"Videogame_Fifa": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"current_version": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/VideogameVersion"
}
],
"deprecated": false,
"title": "VideogameVersion"
},
"id": {
"enum": [
25
]
},
"leagues": {
"$ref": "#/components/schemas/VideogameLeagues"
},
"name": {
"enum": [
"FIFA"
]
},
"slug": {
"enum": [
"fifa"
]
}
},
"required": [
"current_version",
"id",
"leagues",
"name",
"slug"
],
"type": "object"
},
"Videogame_LoL": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"current_version": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/VideogameVersion"
}
],
"deprecated": false,
"title": "VideogameVersion"
},
"id": {
"enum": [
1
]
},
"leagues": {
"$ref": "#/components/schemas/VideogameLeagues"
},
"name": {
"enum": [
"LoL"
]
},
"slug": {
"enum": [
"league-of-legends"
]
}
},
"required": [
"current_version",
"id",
"leagues",
"name",
"slug"
],
"type": "object"
},
"Videogame_Overwatch": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"current_version": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/VideogameVersion"
}
],
"deprecated": false,
"title": "VideogameVersion"
},
"id": {
"enum": [
14
]
},
"leagues": {
"$ref": "#/components/schemas/VideogameLeagues"
},
"name": {
"enum": [
"Overwatch"
]
},
"slug": {
"enum": [
"ow"
]
}
},
"required": [
"current_version",
"id",
"leagues",
"name",
"slug"
],
"type": "object"
},
"Videogame_PUBG": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"current_version": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/VideogameVersion"
}
],
"deprecated": false,
"title": "VideogameVersion"
},
"id": {
"enum": [
20
]
},
"leagues": {
"$ref": "#/components/schemas/VideogameLeagues"
},
"name": {
"enum": [
"PUBG"
]
},
"slug": {
"enum": [
"pubg"
]
}
},
"required": [
"current_version",
"id",
"leagues",
"name",
"slug"
],
"type": "object"
},
"Videogame_R6siege": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"current_version": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/VideogameVersion"
}
],
"deprecated": false,
"title": "VideogameVersion"
},
"id": {
"enum": [
24
]
},
"leagues": {
"$ref": "#/components/schemas/VideogameLeagues"
},
"name": {
"enum": [
"Rainbow 6 Siege"
]
},
"slug": {
"enum": [
"r6-siege"
]
}
},
"required": [
"current_version",
"id",
"leagues",
"name",
"slug"
],
"type": "object"
},
"Videogame_RocketLeague": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"current_version": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/VideogameVersion"
}
],
"deprecated": false,
"title": "VideogameVersion"
},
"id": {
"enum": [
22
]
},
"leagues": {
"$ref": "#/components/schemas/VideogameLeagues"
},
"name": {
"enum": [
"Rocket League"
]
},
"slug": {
"enum": [
"rl"
]
}
},
"required": [
"current_version",
"id",
"leagues",
"name",
"slug"
],
"type": "object"
},
"Videogame_Valorant": {
"additionalProperties": false,
"deprecated": false,
"properties": {
"current_version": {
"allOf": [
{
"nullable": true
},
{
"$ref": "#/components/schemas/VideogameVersion"
}
],
"deprecated": false,
"title": "VideogameVersion"
},
"id": {
"enum": [
26
]
},
"leagues": {
"$ref": "#/components/schemas/VideogameLeagues"
},
"name": {
"enum": [
"Valorant"
]
},
"slug": {
"enum": [
"valorant"
]
}
},
"required": [
"current_version",
"id",
"leagues",
"name",
"slug"
],
"type": "object"
},
"Videogames": {
"items": {
"$ref": "#/components/schemas/Videogame"
},
"type": "array"
},
"filter_over_Brackets": {
"additionalProperties": false,
"minProperties": 1,
"properties": {
"begin_at": {
"items": {
"$ref": "#/components/schemas/MatchBeginAt"
},
"minItems": 1,
"type": "array"
},
"detailed_stats": {
"$ref": "#/components/schemas/MatchDetailedStats"
},
"draw": {
"$ref": "#/components/schemas/MatchIsDraw"
},
"end_at": {
"items": {
"$ref": "#/components/schemas/MatchEndAt"
},
"minItems": 1,
"type": "array"
},
"forfeit": {
"$ref": "#/components/schemas/MatchIsForfeit"
},
"game_advantage": {
"items": {
"$ref": "#/components/schemas/OpponentID"
},
"minItems": 1,
"type": "array"
},
"id": {
"items": {
"$ref": "#/components/schemas/MatchID"
},
"minItems": 1,
"type": "array"
},
"live_embed_url": {
"items": {
"$ref": "#/components/schemas/MatchEmbedLiveVideoURLDeprecated"
},
"minItems": 1,
"type": "array"
},
"match_type": {
"items": {
"$ref": "#/components/schemas/MatchType"
},
"minItems": 1,
"type": "array"
},
"modified_at": {
"items": {
"$ref": "#/components/schemas/MatchModifiedAt"
},
"minItems": 1,
"type": "array"
},
"name": {
"items": {
"$ref": "#/components/schemas/MatchName"
},
"minItems": 1,
"type": "array"
},
"number_of_games": {
"items": {
"$ref": "#/components/schemas/GameCount"
},
"minItems": 1,
"type": "array"
},
"official_stream_url": {
"items": {
"$ref": "#/components/schemas/MatchOfficialStreamURL"
},
"minItems": 1,
"type": "array"
},
"original_scheduled_at": {
"items": {
"$ref": "#/components/schemas/MatchOriginalScheduledAt"
},
"minItems": 1,
"type": "array"
},
"scheduled_at": {
"items": {
"$ref": "#/components/schemas/MatchScheduledAt"
},
"minItems": 1,
"type": "array"
},
"slug": {
"items": {
"$ref": "#/components/schemas/MatchSlug"
},
"minItems": 1,
"type": "array"
},
"status": {
"items": {
"$ref": "#/components/schemas/MatchStatus"
},
"minItems": 1,
"type": "array"
},
"tournament_id": {
"items": {
"$ref": "#/components/schemas/TournamentID"
},
"minItems": 1,
"type": "array"
},
"winner_id": {
"items": {
"$ref": "#/components/schemas/OpponentID"
},
"minItems": 1,
"type": "array"
}
},
"type": "object"
},
"filter_over_Leagues": {
"additionalProperties": false,
"minProperties": 1,
"properties": {
"id": {
"items": {
"$ref": "#/components/schemas/LeagueID"
},
"minItems": 1,
"type": "array"
},
"modified_at": {
"items": {
"$ref": "#/components/schemas/LeagueModifiedAt"
},
"minItems": 1,
"type": "array"
},
"name": {
"items": {
"$ref": "#/components/schemas/LeagueName"
},
"minItems": 1,
"type": "array"
},
"slug": {
"items": {
"$ref": "#/components/schemas/LeagueSlug"
},
"minItems": 1,
"type": "array"
},
"url": {
"items": {
"$ref": "#/components/schemas/LeagueURL"
},
"minItems": 1,
"type": "array"
}
},
"type": "object"
},
"filter_over_Matches": {
"additionalProperties": false,
"minProperties": 1,
"properties": {
"begin_at": {
"items": {
"$ref": "#/components/schemas/MatchBeginAt"
},
"minItems": 1,
"type": "array"
},
"detailed_stats": {
"$ref": "#/components/schemas/MatchDetailedStats"
},
"draw": {
"$ref": "#/components/schemas/MatchIsDraw"
},
"end_at": {
"items": {
"$ref": "#/components/schemas/MatchEndAt"
},
"minItems": 1,
"type": "array"
},
"finished": {
"type": "boolean"
},
"forfeit": {
"$ref": "#/components/schemas/MatchIsForfeit"
},
"future": {
"type": "boolean"
},
"id": {
"items": {
"$ref": "#/components/schemas/MatchID"
},
"minItems": 1,
"type": "array"
},
"league_id": {
"items": {
"$ref": "#/components/schemas/LeagueID"
},
"minItems": 1,
"type": "array"
},
"match_type": {
"items": {
"$ref": "#/components/schemas/MatchType"
},
"minItems": 1,
"type": "array"
},
"modified_at": {
"items": {
"$ref": "#/components/schemas/MatchModifiedAt"
},
"minItems": 1,
"type": "array"
},
"name": {
"items": {
"$ref": "#/components/schemas/MatchName"
},
"minItems": 1,
"type": "array"
},
"not_started": {
"type": "boolean"
},
"number_of_games": {
"items": {
"$ref": "#/components/schemas/GameCount"
},
"minItems": 1,
"type": "array"
},
"opponent_id": {
"items": {
"$ref": "#/components/schemas/TeamIDOrSlug"
},
"minItems": 1,
"type": "array"
},
"past": {
"type": "boolean"
},
"running": {
"type": "boolean"
},
"scheduled_at": {
"items": {
"$ref": "#/components/schemas/MatchScheduledAt"
},
"minItems": 1,
"type": "array"
},
"serie_id": {
"items": {
"$ref": "#/components/schemas/SerieID"
},
"minItems": 1,
"type": "array"
},
"slug": {
"items": {
"$ref": "#/components/schemas/MatchSlug"
},
"minItems": 1,
"type": "array"
},
"status": {
"items": {
"$ref": "#/components/schemas/MatchStatus"
},
"minItems": 1,
"type": "array"
},
"tournament_id": {
"items": {
"$ref": "#/components/schemas/TournamentID"
},
"minItems": 1,
"type": "array"
},
"unscheduled": {
"type": "boolean"
},
"videogame": {
"items": {
"$ref": "#/components/schemas/VideogameIDOrSlug"
},
"minItems": 1,
"type": "array"
},
"winner_id": {
"items": {
"$ref": "#/components/schemas/OpponentID"
},
"minItems": 1,
"type": "array"
}
},
"type": "object"
},
"filter_over_Players": {
"additionalProperties": false,
"minProperties": 1,
"properties": {
"birth_year": {
"items": {
"$ref": "#/components/schemas/PlayerBirthYear"
},
"minItems": 1,
"type": "array"
},
"birthday": {
"items": {
"$ref": "#/components/schemas/PlayerBirthday"
},
"minItems": 1,
"type": "array"
},
"first_name": {
"items": {
"$ref": "#/components/schemas/PlayerFirstName"
},
"minItems": 1,
"type": "array"
},
"hometown": {
"items": {
"$ref": "#/components/schemas/PlayerHometown"
},
"minItems": 1,
"type": "array"
},
"id": {
"items": {
"$ref": "#/components/schemas/PlayerID"
},
"minItems": 1,
"type": "array"
},
"last_name": {
"items": {
"$ref": "#/components/schemas/PlayerLastName"
},
"minItems": 1,
"type": "array"
},
"name": {
"items": {
"$ref": "#/components/schemas/PlayerName"
},
"minItems": 1,
"type": "array"
},
"nationality": {
"items": {
"$ref": "#/components/schemas/PlayerNationality"
},
"minItems": 1,
"type": "array"
},
"role": {
"items": {
"$ref": "#/components/schemas/PlayerRoleSlug"
},
"minItems": 1,
"type": "array"
},
"slug": {
"items": {
"$ref": "#/components/schemas/PlayerSlug"
},
"minItems": 1,
"type": "array"
},
"team_id": {
"items": {
"$ref": "#/components/schemas/TeamID"
},
"minItems": 1,
"type": "array"
},
"videogame_id": {
"items": {
"$ref": "#/components/schemas/VideogameID"
},
"minItems": 1,
"type": "array"
}
},
"type": "object"
},
"filter_over_Series": {
"additionalProperties": false,
"minProperties": 1,
"properties": {
"begin_at": {
"items": {
"$ref": "#/components/schemas/SerieBeginAt"
},
"minItems": 1,
"type": "array"
},
"description": {
"items": {
"$ref": "#/components/schemas/SerieDescription"
},
"minItems": 1,
"type": "array"
},
"end_at": {
"items": {
"$ref": "#/components/schemas/SerieEndAt"
},
"minItems": 1,
"type": "array"
},
"id": {
"items": {
"$ref": "#/components/schemas/SerieID"
},
"minItems": 1,
"type": "array"
},
"league_id": {
"items": {
"$ref": "#/components/schemas/LeagueID"
},
"minItems": 1,
"type": "array"
},
"modified_at": {
"items": {
"$ref": "#/components/schemas/SerieModifiedAt"
},
"minItems": 1,
"type": "array"
},
"name": {
"items": {
"$ref": "#/components/schemas/SerieName"
},
"minItems": 1,
"type": "array"
},
"season": {
"items": {
"$ref": "#/components/schemas/SerieSeason"
},
"minItems": 1,
"type": "array"
},
"slug": {
"items": {
"$ref": "#/components/schemas/SerieSlug"
},
"minItems": 1,
"type": "array"
},
"tier": {
"items": {
"$ref": "#/components/schemas/SerieTier"
},
"minItems": 1,
"type": "array"
},
"winner_id": {
"items": {
"$ref": "#/components/schemas/OpponentID"
},
"minItems": 1,
"type": "array"
},
"winner_type": {
"items": {
"$ref": "#/components/schemas/OpponentType"
},
"minItems": 1,
"type": "array"
},
"year": {
"items": {
"$ref": "#/components/schemas/SerieYear"
},
"minItems": 1,
"type": "array"
}
},
"type": "object"
},
"filter_over_ShortTournaments": {
"additionalProperties": false,
"minProperties": 1,
"properties": {
"begin_at": {
"items": {
"$ref": "#/components/schemas/TournamentBeginAt"
},
"minItems": 1,
"type": "array"
},
"end_at": {
"items": {
"$ref": "#/components/schemas/TournamentEndAt"
},
"minItems": 1,
"type": "array"
},
"id": {
"items": {
"$ref": "#/components/schemas/TournamentID"
},
"minItems": 1,
"type": "array"
},
"live_supported": {
"$ref": "#/components/schemas/TournamentLiveSupported"
},
"modified_at": {
"items": {
"$ref": "#/components/schemas/TournamentModifiedAt"
},
"minItems": 1,
"type": "array"
},
"name": {
"items": {
"$ref": "#/components/schemas/TournamentName"
},
"minItems": 1,
"type": "array"
},
"prizepool": {
"items": {
"$ref": "#/components/schemas/TournamentPrizepool"
},
"minItems": 1,
"type": "array"
},
"serie_id": {
"items": {
"$ref": "#/components/schemas/SerieID"
},
"minItems": 1,
"type": "array"
},
"slug": {
"items": {
"$ref": "#/components/schemas/TournamentSlug"
},
"minItems": 1,
"type": "array"
},
"winner_id": {
"items": {
"$ref": "#/components/schemas/OpponentID"
},
"minItems": 1,
"type": "array"
},
"winner_type": {
"items": {
"$ref": "#/components/schemas/OpponentType"
},
"minItems": 1,
"type": "array"
}
},
"type": "object"
},
"filter_over_ShortVideogameVersions": {
"additionalProperties": false,
"minProperties": 1,
"properties": {
"current": {
"$ref": "#/components/schemas/VideogameVersionIsCurrent"
},
"name": {
"items": {
"$ref": "#/components/schemas/VideogameVersion"
},
"minItems": 1,
"type": "array"
}
},
"type": "object"
},
"filter_over_Teams": {
"additionalProperties": false,
"minProperties": 1,
"properties": {
"acronym": {
"items": {
"$ref": "#/components/schemas/TeamAcronym"
},
"minItems": 1,
"type": "array"
},
"id": {
"items": {
"$ref": "#/components/schemas/TeamID"
},
"minItems": 1,
"type": "array"
},
"location": {
"items": {
"$ref": "#/components/schemas/TeamLocation"
},
"minItems": 1,
"type": "array"
},
"modified_at": {
"items": {
"$ref": "#/components/schemas/TeamModifiedAt"
},
"minItems": 1,
"type": "array"
},
"name": {
"items": {
"$ref": "#/components/schemas/TeamName"
},
"minItems": 1,
"type": "array"
},
"slug": {
"items": {
"$ref": "#/components/schemas/TeamSlug"
},
"minItems": 1,
"type": "array"
},
"videogame_id": {
"items": {
"$ref": "#/components/schemas/VideogameID"
},
"minItems": 1,
"type": "array"
}
},
"type": "object"
},
"range_over_Brackets": {
"additionalProperties": false,
"minProperties": 1,
"properties": {
"begin_at": {
"items": {
"$ref": "#/components/schemas/MatchBeginAt"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"detailed_stats": {
"items": {
"$ref": "#/components/schemas/MatchDetailedStats"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"draw": {
"items": {
"$ref": "#/components/schemas/MatchIsDraw"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"end_at": {
"items": {
"$ref": "#/components/schemas/MatchEndAt"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"forfeit": {
"items": {
"$ref": "#/components/schemas/MatchIsForfeit"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"game_advantage": {
"items": {
"$ref": "#/components/schemas/OpponentID"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"id": {
"items": {
"$ref": "#/components/schemas/MatchID"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"live_embed_url": {
"items": {
"$ref": "#/components/schemas/MatchEmbedLiveVideoURLDeprecated"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"match_type": {
"items": {
"$ref": "#/components/schemas/MatchType"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"modified_at": {
"items": {
"$ref": "#/components/schemas/MatchModifiedAt"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"name": {
"items": {
"$ref": "#/components/schemas/MatchName"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"number_of_games": {
"items": {
"$ref": "#/components/schemas/GameCount"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"official_stream_url": {
"items": {
"$ref": "#/components/schemas/MatchOfficialStreamURL"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"original_scheduled_at": {
"items": {
"$ref": "#/components/schemas/MatchOriginalScheduledAt"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"scheduled_at": {
"items": {
"$ref": "#/components/schemas/MatchScheduledAt"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"slug": {
"items": {
"$ref": "#/components/schemas/MatchSlug"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"status": {
"items": {
"$ref": "#/components/schemas/MatchStatus"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"tournament_id": {
"items": {
"$ref": "#/components/schemas/TournamentID"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"winner_id": {
"items": {
"$ref": "#/components/schemas/OpponentID"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
}
},
"type": "object"
},
"range_over_Leagues": {
"additionalProperties": false,
"minProperties": 1,
"properties": {
"id": {
"items": {
"$ref": "#/components/schemas/LeagueID"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"modified_at": {
"items": {
"$ref": "#/components/schemas/LeagueModifiedAt"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"name": {
"items": {
"$ref": "#/components/schemas/LeagueName"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"slug": {
"items": {
"$ref": "#/components/schemas/LeagueSlug"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"url": {
"items": {
"$ref": "#/components/schemas/LeagueURL"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
}
},
"type": "object"
},
"range_over_Matches": {
"additionalProperties": false,
"minProperties": 1,
"properties": {
"begin_at": {
"items": {
"$ref": "#/components/schemas/MatchBeginAt"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"detailed_stats": {
"items": {
"$ref": "#/components/schemas/MatchDetailedStats"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"draw": {
"items": {
"$ref": "#/components/schemas/MatchIsDraw"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"end_at": {
"items": {
"$ref": "#/components/schemas/MatchEndAt"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"forfeit": {
"items": {
"$ref": "#/components/schemas/MatchIsForfeit"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"id": {
"items": {
"$ref": "#/components/schemas/MatchID"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"match_type": {
"items": {
"$ref": "#/components/schemas/MatchType"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"modified_at": {
"items": {
"$ref": "#/components/schemas/MatchModifiedAt"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"name": {
"items": {
"$ref": "#/components/schemas/MatchName"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"number_of_games": {
"items": {
"$ref": "#/components/schemas/GameCount"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"scheduled_at": {
"items": {
"$ref": "#/components/schemas/MatchScheduledAt"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"slug": {
"items": {
"$ref": "#/components/schemas/MatchSlug"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"status": {
"items": {
"$ref": "#/components/schemas/MatchStatus"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"tournament_id": {
"items": {
"$ref": "#/components/schemas/TournamentID"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"winner_id": {
"items": {
"$ref": "#/components/schemas/OpponentID"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
}
},
"type": "object"
},
"range_over_Players": {
"additionalProperties": false,
"minProperties": 1,
"properties": {
"birth_year": {
"items": {
"$ref": "#/components/schemas/PlayerBirthYear"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"birthday": {
"items": {
"$ref": "#/components/schemas/PlayerBirthday"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"first_name": {
"items": {
"$ref": "#/components/schemas/PlayerFirstName"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"hometown": {
"items": {
"$ref": "#/components/schemas/PlayerHometown"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"id": {
"items": {
"$ref": "#/components/schemas/PlayerID"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"last_name": {
"items": {
"$ref": "#/components/schemas/PlayerLastName"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"name": {
"items": {
"$ref": "#/components/schemas/PlayerName"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"nationality": {
"items": {
"$ref": "#/components/schemas/PlayerNationality"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"role": {
"items": {
"$ref": "#/components/schemas/PlayerRoleSlug"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"slug": {
"items": {
"$ref": "#/components/schemas/PlayerSlug"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
}
},
"type": "object"
},
"range_over_Series": {
"additionalProperties": false,
"minProperties": 1,
"properties": {
"begin_at": {
"items": {
"$ref": "#/components/schemas/SerieBeginAt"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"description": {
"items": {
"$ref": "#/components/schemas/SerieDescription"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"end_at": {
"items": {
"$ref": "#/components/schemas/SerieEndAt"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"id": {
"items": {
"$ref": "#/components/schemas/SerieID"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"league_id": {
"items": {
"$ref": "#/components/schemas/LeagueID"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"modified_at": {
"items": {
"$ref": "#/components/schemas/SerieModifiedAt"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"name": {
"items": {
"$ref": "#/components/schemas/SerieName"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"season": {
"items": {
"$ref": "#/components/schemas/SerieSeason"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"slug": {
"items": {
"$ref": "#/components/schemas/SerieSlug"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"tier": {
"items": {
"$ref": "#/components/schemas/SerieTier"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"winner_id": {
"items": {
"$ref": "#/components/schemas/OpponentID"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"winner_type": {
"items": {
"$ref": "#/components/schemas/OpponentType"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"year": {
"items": {
"$ref": "#/components/schemas/SerieYear"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
}
},
"type": "object"
},
"range_over_ShortTournaments": {
"additionalProperties": false,
"minProperties": 1,
"properties": {
"begin_at": {
"items": {
"$ref": "#/components/schemas/TournamentBeginAt"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"end_at": {
"items": {
"$ref": "#/components/schemas/TournamentEndAt"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"id": {
"items": {
"$ref": "#/components/schemas/TournamentID"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"modified_at": {
"items": {
"$ref": "#/components/schemas/TournamentModifiedAt"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"name": {
"items": {
"$ref": "#/components/schemas/TournamentName"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"prizepool": {
"items": {
"$ref": "#/components/schemas/TournamentPrizepool"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"serie_id": {
"items": {
"$ref": "#/components/schemas/SerieID"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"slug": {
"items": {
"$ref": "#/components/schemas/TournamentSlug"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"winner_id": {
"items": {
"$ref": "#/components/schemas/OpponentID"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"winner_type": {
"items": {
"$ref": "#/components/schemas/OpponentType"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
}
},
"type": "object"
},
"range_over_ShortVideogameVersions": {
"additionalProperties": false,
"minProperties": 1,
"properties": {
"current": {
"items": {
"$ref": "#/components/schemas/VideogameVersionIsCurrent"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"name": {
"items": {
"$ref": "#/components/schemas/VideogameVersion"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
}
},
"type": "object"
},
"range_over_Teams": {
"additionalProperties": false,
"minProperties": 1,
"properties": {
"acronym": {
"items": {
"$ref": "#/components/schemas/TeamAcronym"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"id": {
"items": {
"$ref": "#/components/schemas/TeamID"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"location": {
"items": {
"$ref": "#/components/schemas/TeamLocation"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"modified_at": {
"items": {
"$ref": "#/components/schemas/TeamModifiedAt"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"name": {
"items": {
"$ref": "#/components/schemas/TeamName"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"slug": {
"items": {
"$ref": "#/components/schemas/TeamSlug"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
}
},
"type": "object"
},
"search_over_Brackets": {
"additionalProperties": false,
"minProperties": 1,
"properties": {
"live_embed_url": {
"$ref": "#/components/schemas/MatchEmbedLiveVideoURLDeprecated"
},
"match_type": {
"$ref": "#/components/schemas/MatchType"
},
"name": {
"$ref": "#/components/schemas/MatchName"
},
"official_stream_url": {
"$ref": "#/components/schemas/MatchOfficialStreamURL"
},
"slug": {
"$ref": "#/components/schemas/MatchSlug"
},
"status": {
"$ref": "#/components/schemas/MatchStatus"
}
},
"type": "object"
},
"search_over_Leagues": {
"additionalProperties": false,
"minProperties": 1,
"properties": {
"name": {
"$ref": "#/components/schemas/LeagueName"
},
"slug": {
"$ref": "#/components/schemas/LeagueSlug"
},
"url": {
"$ref": "#/components/schemas/LeagueURL"
}
},
"type": "object"
},
"search_over_Matches": {
"additionalProperties": false,
"minProperties": 1,
"properties": {
"match_type": {
"$ref": "#/components/schemas/MatchType"
},
"name": {
"$ref": "#/components/schemas/MatchName"
},
"slug": {
"$ref": "#/components/schemas/MatchSlug"
},
"status": {
"$ref": "#/components/schemas/MatchStatus"
}
},
"type": "object"
},
"search_over_Players": {
"additionalProperties": false,
"minProperties": 1,
"properties": {
"birthday": {
"$ref": "#/components/schemas/PlayerBirthday"
},
"first_name": {
"$ref": "#/components/schemas/PlayerFirstName"
},
"hometown": {
"$ref": "#/components/schemas/PlayerHometown"
},
"last_name": {
"$ref": "#/components/schemas/PlayerLastName"
},
"name": {
"$ref": "#/components/schemas/PlayerName"
},
"nationality": {
"$ref": "#/components/schemas/PlayerNationality"
},
"role": {
"$ref": "#/components/schemas/PlayerRoleSlug"
},
"slug": {
"$ref": "#/components/schemas/PlayerSlug"
}
},
"type": "object"
},
"search_over_Series": {
"additionalProperties": false,
"minProperties": 1,
"properties": {
"description": {
"$ref": "#/components/schemas/SerieDescription"
},
"name": {
"$ref": "#/components/schemas/SerieName"
},
"season": {
"$ref": "#/components/schemas/SerieSeason"
},
"slug": {
"$ref": "#/components/schemas/SerieSlug"
},
"tier": {
"$ref": "#/components/schemas/SerieTier"
},
"winner_type": {
"$ref": "#/components/schemas/OpponentType"
}
},
"type": "object"
},
"search_over_ShortTournaments": {
"additionalProperties": false,
"minProperties": 1,
"properties": {
"name": {
"$ref": "#/components/schemas/TournamentName"
},
"prizepool": {
"$ref": "#/components/schemas/TournamentPrizepool"
},
"slug": {
"$ref": "#/components/schemas/TournamentSlug"
},
"winner_type": {
"$ref": "#/components/schemas/OpponentType"
}
},
"type": "object"
},
"search_over_ShortVideogameVersions": {
"additionalProperties": false,
"minProperties": 1,
"properties": {
"name": {
"$ref": "#/components/schemas/VideogameVersion"
}
},
"type": "object"
},
"search_over_Teams": {
"additionalProperties": false,
"minProperties": 1,
"properties": {
"acronym": {
"$ref": "#/components/schemas/TeamAcronym"
},
"location": {
"$ref": "#/components/schemas/TeamLocation"
},
"name": {
"$ref": "#/components/schemas/TeamName"
},
"slug": {
"$ref": "#/components/schemas/TeamSlug"
}
},
"type": "object"
},
"sort_over_Brackets": {
"items": {
"enum": [
"begin_at",
"-begin_at",
"detailed_stats",
"-detailed_stats",
"draw",
"-draw",
"end_at",
"-end_at",
"forfeit",
"-forfeit",
"game_advantage",
"-game_advantage",
"id",
"-id",
"live_embed_url",
"-live_embed_url",
"match_type",
"-match_type",
"modified_at",
"-modified_at",
"name",
"-name",
"number_of_games",
"-number_of_games",
"official_stream_url",
"-official_stream_url",
"original_scheduled_at",
"-original_scheduled_at",
"scheduled_at",
"-scheduled_at",
"slug",
"-slug",
"status",
"-status",
"tournament_id",
"-tournament_id",
"winner_id",
"-winner_id"
]
},
"minItems": 1,
"type": "array"
},
"sort_over_Leagues": {
"items": {
"enum": [
"id",
"-id",
"modified_at",
"-modified_at",
"name",
"-name",
"slug",
"-slug",
"url",
"-url"
]
},
"minItems": 1,
"type": "array"
},
"sort_over_Matches": {
"items": {
"enum": [
"begin_at",
"-begin_at",
"detailed_stats",
"-detailed_stats",
"draw",
"-draw",
"end_at",
"-end_at",
"forfeit",
"-forfeit",
"id",
"-id",
"match_type",
"-match_type",
"modified_at",
"-modified_at",
"name",
"-name",
"number_of_games",
"-number_of_games",
"scheduled_at",
"-scheduled_at",
"slug",
"-slug",
"status",
"-status",
"tournament_id",
"-tournament_id",
"winner_id",
"-winner_id"
]
},
"minItems": 1,
"type": "array"
},
"sort_over_Players": {
"items": {
"enum": [
"birth_year",
"-birth_year",
"birthday",
"-birthday",
"first_name",
"-first_name",
"hometown",
"-hometown",
"id",
"-id",
"last_name",
"-last_name",
"name",
"-name",
"nationality",
"-nationality",
"role",
"-role",
"slug",
"-slug",
"videogame_id",
"-videogame_id",
"team_id",
"-team_id"
]
},
"minItems": 1,
"type": "array"
},
"sort_over_Series": {
"items": {
"enum": [
"begin_at",
"-begin_at",
"description",
"-description",
"end_at",
"-end_at",
"id",
"-id",
"league_id",
"-league_id",
"modified_at",
"-modified_at",
"name",
"-name",
"season",
"-season",
"slug",
"-slug",
"tier",
"-tier",
"winner_id",
"-winner_id",
"winner_type",
"-winner_type",
"year",
"-year"
]
},
"minItems": 1,
"type": "array"
},
"sort_over_ShortTournaments": {
"items": {
"enum": [
"begin_at",
"-begin_at",
"end_at",
"-end_at",
"id",
"-id",
"modified_at",
"-modified_at",
"name",
"-name",
"prizepool",
"-prizepool",
"serie_id",
"-serie_id",
"slug",
"-slug",
"winner_id",
"-winner_id",
"winner_type",
"-winner_type"
]
},
"minItems": 1,
"type": "array"
},
"sort_over_ShortVideogameVersions": {
"items": {
"enum": [
"current",
"-current",
"name",
"-name"
]
},
"minItems": 1,
"type": "array"
},
"sort_over_Teams": {
"items": {
"enum": [
"acronym",
"-acronym",
"id",
"-id",
"location",
"-location",
"modified_at",
"-modified_at",
"name",
"-name",
"slug",
"-slug",
"videogame_id",
"-videogame_id"
]
},
"minItems": 1,
"type": "array"
},
"type_over_AdditionIncidents": {
"items": {
"enum": [
"league",
"match",
"player",
"serie",
"team",
"tournament"
]
},
"minItems": 1,
"type": "array"
},
"type_over_ChangeIncidents": {
"items": {
"enum": [
"league",
"match",
"player",
"serie",
"team",
"tournament"
]
},
"minItems": 1,
"type": "array"
},
"type_over_DeletionIncidents": {
"items": {
"enum": [
"league",
"match",
"player",
"serie",
"team",
"tournament"
]
},
"minItems": 1,
"type": "array"
},
"type_over_Incidents": {
"items": {
"enum": [
"league",
"match",
"player",
"serie",
"team",
"tournament"
]
},
"minItems": 1,
"type": "array"
},
"videogame_over_AdditionIncidents": {
"items": {
"$ref": "#/components/schemas/VideogameIDOrSlug"
},
"minItems": 1,
"type": "array"
},
"videogame_over_ChangeIncidents": {
"items": {
"$ref": "#/components/schemas/VideogameIDOrSlug"
},
"minItems": 1,
"type": "array"
},
"videogame_over_DeletionIncidents": {
"items": {
"$ref": "#/components/schemas/VideogameIDOrSlug"
},
"minItems": 1,
"type": "array"
},
"videogame_over_Incidents": {
"items": {
"$ref": "#/components/schemas/VideogameIDOrSlug"
},
"minItems": 1,
"type": "array"
}
},
"securitySchemes": {
"BearerToken": {
"scheme": "bearer",
"type": "http"
},
"QueryToken": {
"in": "query",
"name": "token",
"type": "apiKey"
}
}
},
"x-logo": {
"altText": "Pandascore logo",
"backgroundColor": "#FFFFFF",
"url": "https://pandascore.co/logo.png"
},
"x-tagGroups": [
{
"name": "Meta",
"tags": [
"Incidents"
]
},
{
"name": "All Videogames",
"tags": [
"Leagues",
"Series",
"Tournaments",
"Matches",
"Teams",
"Players"
]
},
{
"name": "Live",
"tags": [
"Lives"
]
}
]
}