Download OpenAPI specification:Download
Whether 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.
The API works over the HTTPS protocol, and is accessed from the api.pandascore.co
domain.
null
values instead of being omitted.Clicking on a query parameter like filter
or search
will show you the available options:
You can also click on a response to see the detailed response schema:
The PandaScore API allows you to access data about eSports events by using a certain structure detailed below.
Leagues
Leagues are the top level events. They don't have a date and represent a regular competition. A League is composed of one or several series.
Some League of Legends leagues are: EU LCS, NA LCS, LCK, etc.
Some Dota 2 leagues are: ESL One, GESC, The International, PGL, etc.
Series
A Serie represents an occurrence of a league event.
The EU LCS league has two series per year: spring 2017, summer 2017, spring 2016, summer 2016 etc.
Some Dota2 Series examples would be: Changsha Major, Open Bucharest, Frankfurt, i-League Invitational etc.
Tournaments
Tournaments groups all the matches of a serie under "stages" and "groups".
The tournaments of the EU LCS of summer 2017 are: Group A, Group B, Playoffs, etc.
Some Dota 2 tournaments are: Group A, Group B, Playoffs, etc.
Matches
Finally we have matches which have two players or teams (depending on the played videogame) and several games (the rounds of the match).
Matches of the group A in the EU LCS of summer 2017 are: G2 vs FNC, MSF vs NIP, etc.
Matches of the group A in the ESL One, Genting tournamnet are: Lower Round 1, Quarterfinal, Upper Final, etc.
Please note that some matches may be listed as "TBD vs TBD" if the matchup is not announced yet, for example the date of the Final match is known but the quarterfinal is still being played.
The API currently supports the JSON format by default.
Other formats may be added depending on user needs.
The Pandascore API paginates all resources on the index method.
Requests that return multiple items will be paginated to 50 items by default. You can specify further pages with the page[number]
parameter. You can also set a custom page size (up to 100) with the page[size]
parameter.
The Link
HTTP response header contains pagination data with first
, previous
, next
and last
raw page links when available, under the format
Link: <https://api.pandascore.co/{Resource}?page=X+1>; rel="next", <https://api.pandascore.co/{Resource}?page=X-1>; rel="prev", <https://api.pandascore.co/{Resource}?page=1>; rel="first", <https://api.pandascore.co/{Resource}?page=X+n>; rel="last"
There is also:
X-Page
header field, which contains the current page.X-Per-Page
header field, which contains the current pagination length.X-Total
header field, which contains the total count of items across all pages.The filter
query parameter can be used to filter a collection by one or several fields for one or several values. The filter
parameter takes the field to filter as a key, and the values to filter as the value. Multiples values must be comma-separated (,
).
For example, the following is a request for all the champions with a name matching Twitch or Brand exactly, but only with 21 armor:
GET /lol/champions?filter[name]=Brand,Twitch&filter[armor]=21&token=YOUR_ACCESS_TOKEN
The range
parameter is a hash that allows filtering fields by an interval.
Only values between the given two comma-separated bounds will be returned. The bounds are inclusive.
For example, the following is a request for all the champions with hp
within 500 and 1000:
GET /lol/champions?range[hp]=500,1000&token=YOUR_ACCESS_TOKEN
The search
parameter is a bit like the filter
parameter, but it will return all results where the values contain the given parameter.
Note: this only works on strings.
Searching with integer values is not supported and filter
or range
parameters may be better suited for your needs here.
For example, to get all the champions with a name containing "twi"
:
$ curl -sg -H 'Authorization: Bearer YOUR_ACCESS_TOKEN' 'https://api.pandascore.co/lol/champions?search[name]=twi' | jq -S '.[].name'
"Twitch"
"Twisted Fate"
All index endpoints support multiple sort fields with comma-separation (,
); the fields are applied in the order specified.
The sort order for each field is ascending unless it is prefixed with a minus (U+002D HYPHEN-MINUS, “-“), in which case it is descending.
For example, GET /lol/champions?sort=attackdamage,-name&token=YOUR_ACCESS_TOKEN
will return all the champions sorted by attack damage.
Any champions with the same attack damage will then be sorted by their names in descending alphabetical order.
Depending on your current plan, you will have a different rate limit. Your plan and your current request count are available on your dashboard.
With the free plan, you have a limit of 1000 requests per hour, others plans have a limit of 4000 requests per hour. The number of remaining requests is available in the X-Rate-Limit-Remaining
response header.
Your API key is included in all the examples on this page, so you can test any example right away. Only you can see this value.
The authentication on the Pandascore API works with access tokens.
All developers need to create an account before getting started, in order to get an access token. The access token should not be shared.
Your token can be found and regenerated from your dashboard.
The access token can be passed in the URL with the token
query string parameter, or in the Authorization: Bearer
header field.
List RL leagues
object (filter_over_RLLeagues) Options to filter results. String fields are case sensitive | |
integer or object Pagination in the form of | |
per_page | integer [ 1 .. 100 ] Default: 50 Example: per_page=5 Equivalent to |
object (range_over_RLLeagues) Example: range[modified_at]=2019-04-08T17:00:00Z,2019-10-08T22:00:00Z Options to select results within ranges | |
object (search_over_RLLeagues) Example: search[name]=Contenders Options to search results | |
sort | Array of any (sort_over_RLLeagues) non-empty Items Enum: "id" "-id" "modified_at" "-modified_at" "name" "-name" "slug" "-slug" "url" "-url" Example: sort=name&sort=-modified_at Options to sort results |
/rl/leagues?page[size]=1
[- {
- "id": 4445,
- "image_url": null,
- "modified_at": "2020-07-23T12:51:57Z",
- "name": "ESPN Esports",
- "series": [
- {
- "begin_at": "2020-07-23T22:00:00Z",
- "description": null,
- "end_at": "2020-07-26T23:19:00Z",
- "full_name": "Rocket League Invitational 2020",
- "id": 2850,
- "league_id": 4445,
- "modified_at": "2020-07-26T23:29:19Z",
- "name": "Rocket League Invitational",
- "season": null,
- "slug": "rl-espn-esports-rocket-league-invitational-2020",
- "tier": null,
- "winner_id": 126301,
- "winner_type": "Team",
- "year": 2020
}
], - "slug": "rl-espn-esports",
- "url": null,
- "videogame": {
- "current_version": null,
- "id": 22,
- "name": "Rocket League",
- "slug": "rl"
}
}
]
List matches for the Rocket League videogame
object (filter_over_RLMatches) Example: filter[detailed_stats]=true Options to filter results. String fields are case sensitive | |
integer or object Pagination in the form of | |
per_page | integer [ 1 .. 100 ] Default: 50 Example: per_page=5 Equivalent to |
object (range_over_RLMatches) Example: range[begin_at]=2019-04-08T17:00:00Z,2019-10-08T22:00:00Z Options to select results within ranges | |
object (search_over_RLMatches) Example: search[name]=Finals Options to search results | |
sort | Array of any (sort_over_RLMatches) non-empty 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" Example: sort=tournament_id&sort=scheduled_at Options to sort results |
/rl/matches?page[size]=1
[- {
- "begin_at": "2021-01-31T21:20: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": 11845,
- "length": null,
- "match_id": 581441,
- "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": 11846,
- "length": null,
- "match_id": 581441,
- "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": 11847,
- "length": null,
- "match_id": 581441,
- "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": 11848,
- "length": null,
- "match_id": 581441,
- "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": 11849,
- "length": null,
- "match_id": 581441,
- "position": 5,
- "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": 11850,
- "length": null,
- "match_id": 581441,
- "position": 6,
- "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": 11851,
- "length": null,
- "match_id": 581441,
- "position": 7,
- "status": "not_started",
- "video_url": null,
- "winner": {
- "id": null,
- "type": null
}, - "winner_type": null
}
], - "id": 581441,
- "league": {
- "id": 4245,
- "modified_at": "2020-04-17T16:36:20Z",
- "name": "RLCS NA",
- "slug": "rl-na-rlcs",
}, - "league_id": 4245,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2021-01-23T21:42:13Z",
- "name": "Losers' Finals: TBD vs TBD",
- "number_of_games": 7,
- "official_stream_url": null,
- "opponents": [ ],
- "original_scheduled_at": "2021-01-31T20:20:00Z",
- "rescheduled": true,
- "results": [ ],
- "scheduled_at": "2021-01-31T21:20:00Z",
- "serie": {
- "begin_at": "2021-01-23T17:00:00Z",
- "description": null,
- "end_at": null,
- "full_name": "North American Regional Event 3 X Winter 2021",
- "id": 3302,
- "league_id": 4245,
- "modified_at": "2021-01-22T09:25:35Z",
- "name": "North American Regional Event 3",
- "season": "X Winter",
- "slug": "rl-na-rlcs-north-american-regional-event-3-winter-2021",
- "tier": "a",
- "winner_id": null,
- "winner_type": null,
- "year": 2021
}, - "serie_id": 3302,
- "slug": "2021-01-31-0273dccf-8555-4145-a192-f62e93b8fb6e",
- "status": "not_started",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
- "embed_url": null,
- "raw_url": null
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament": {
- "begin_at": "2021-01-23T17:00:00Z",
- "end_at": null,
- "id": 5412,
- "league_id": 4245,
- "live_supported": false,
- "modified_at": "2021-01-23T07:09:13Z",
- "name": "Playoffs",
- "prizepool": "100000 United States Dollar",
- "serie_id": 3302,
- "slug": "rl-na-rlcs-north-american-regional-event-3-winter-2021-playoffs",
- "winner_id": null,
- "winner_type": "Team"
}, - "tournament_id": 5412,
- "videogame": {
- "id": 22,
- "name": "Rocket League",
- "slug": "rl"
}, - "videogame_version": null,
- "winner": null,
- "winner_id": null
}
]
List past Rocket League matches
object (filter_over_RLMatches) Example: filter[detailed_stats]=true Options to filter results. String fields are case sensitive | |
integer or object Pagination in the form of | |
per_page | integer [ 1 .. 100 ] Default: 50 Example: per_page=5 Equivalent to |
object (range_over_RLMatches) Example: range[begin_at]=2019-04-08T17:00:00Z,2019-10-08T22:00:00Z Options to select results within ranges | |
object (search_over_RLMatches) Example: search[name]=Finals Options to search results | |
sort | Array of any (sort_over_RLMatches) non-empty 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" Example: sort=tournament_id&sort=scheduled_at Options to sort results |
/rl/matches?page[size]=1
[- {
- "begin_at": "2021-01-31T21:20: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": 11845,
- "length": null,
- "match_id": 581441,
- "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": 11846,
- "length": null,
- "match_id": 581441,
- "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": 11847,
- "length": null,
- "match_id": 581441,
- "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": 11848,
- "length": null,
- "match_id": 581441,
- "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": 11849,
- "length": null,
- "match_id": 581441,
- "position": 5,
- "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": 11850,
- "length": null,
- "match_id": 581441,
- "position": 6,
- "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": 11851,
- "length": null,
- "match_id": 581441,
- "position": 7,
- "status": "not_started",
- "video_url": null,
- "winner": {
- "id": null,
- "type": null
}, - "winner_type": null
}
], - "id": 581441,
- "league": {
- "id": 4245,
- "modified_at": "2020-04-17T16:36:20Z",
- "name": "RLCS NA",
- "slug": "rl-na-rlcs",
}, - "league_id": 4245,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2021-01-23T21:42:13Z",
- "name": "Losers' Finals: TBD vs TBD",
- "number_of_games": 7,
- "official_stream_url": null,
- "opponents": [ ],
- "original_scheduled_at": "2021-01-31T20:20:00Z",
- "rescheduled": true,
- "results": [ ],
- "scheduled_at": "2021-01-31T21:20:00Z",
- "serie": {
- "begin_at": "2021-01-23T17:00:00Z",
- "description": null,
- "end_at": null,
- "full_name": "North American Regional Event 3 X Winter 2021",
- "id": 3302,
- "league_id": 4245,
- "modified_at": "2021-01-22T09:25:35Z",
- "name": "North American Regional Event 3",
- "season": "X Winter",
- "slug": "rl-na-rlcs-north-american-regional-event-3-winter-2021",
- "tier": "a",
- "winner_id": null,
- "winner_type": null,
- "year": 2021
}, - "serie_id": 3302,
- "slug": "2021-01-31-0273dccf-8555-4145-a192-f62e93b8fb6e",
- "status": "not_started",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
- "embed_url": null,
- "raw_url": null
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament": {
- "begin_at": "2021-01-23T17:00:00Z",
- "end_at": null,
- "id": 5412,
- "league_id": 4245,
- "live_supported": false,
- "modified_at": "2021-01-23T07:09:13Z",
- "name": "Playoffs",
- "prizepool": "100000 United States Dollar",
- "serie_id": 3302,
- "slug": "rl-na-rlcs-north-american-regional-event-3-winter-2021-playoffs",
- "winner_id": null,
- "winner_type": "Team"
}, - "tournament_id": 5412,
- "videogame": {
- "id": 22,
- "name": "Rocket League",
- "slug": "rl"
}, - "videogame_version": null,
- "winner": null,
- "winner_id": null
}
]
List running Rocket League matches
object (filter_over_RLMatches) Example: filter[detailed_stats]=true Options to filter results. String fields are case sensitive | |
integer or object Pagination in the form of | |
per_page | integer [ 1 .. 100 ] Default: 50 Example: per_page=5 Equivalent to |
object (range_over_RLMatches) Example: range[begin_at]=2019-04-08T17:00:00Z,2019-10-08T22:00:00Z Options to select results within ranges | |
object (search_over_RLMatches) Example: search[name]=Finals Options to search results | |
sort | Array of any (sort_over_RLMatches) non-empty 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" Example: sort=tournament_id&sort=scheduled_at Options to sort results |
/rl/matches?page[size]=1
[- {
- "begin_at": "2021-01-31T21:20: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": 11845,
- "length": null,
- "match_id": 581441,
- "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": 11846,
- "length": null,
- "match_id": 581441,
- "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": 11847,
- "length": null,
- "match_id": 581441,
- "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": 11848,
- "length": null,
- "match_id": 581441,
- "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": 11849,
- "length": null,
- "match_id": 581441,
- "position": 5,
- "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": 11850,
- "length": null,
- "match_id": 581441,
- "position": 6,
- "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": 11851,
- "length": null,
- "match_id": 581441,
- "position": 7,
- "status": "not_started",
- "video_url": null,
- "winner": {
- "id": null,
- "type": null
}, - "winner_type": null
}
], - "id": 581441,
- "league": {
- "id": 4245,
- "modified_at": "2020-04-17T16:36:20Z",
- "name": "RLCS NA",
- "slug": "rl-na-rlcs",
}, - "league_id": 4245,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2021-01-23T21:42:13Z",
- "name": "Losers' Finals: TBD vs TBD",
- "number_of_games": 7,
- "official_stream_url": null,
- "opponents": [ ],
- "original_scheduled_at": "2021-01-31T20:20:00Z",
- "rescheduled": true,
- "results": [ ],
- "scheduled_at": "2021-01-31T21:20:00Z",
- "serie": {
- "begin_at": "2021-01-23T17:00:00Z",
- "description": null,
- "end_at": null,
- "full_name": "North American Regional Event 3 X Winter 2021",
- "id": 3302,
- "league_id": 4245,
- "modified_at": "2021-01-22T09:25:35Z",
- "name": "North American Regional Event 3",
- "season": "X Winter",
- "slug": "rl-na-rlcs-north-american-regional-event-3-winter-2021",
- "tier": "a",
- "winner_id": null,
- "winner_type": null,
- "year": 2021
}, - "serie_id": 3302,
- "slug": "2021-01-31-0273dccf-8555-4145-a192-f62e93b8fb6e",
- "status": "not_started",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
- "embed_url": null,
- "raw_url": null
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament": {
- "begin_at": "2021-01-23T17:00:00Z",
- "end_at": null,
- "id": 5412,
- "league_id": 4245,
- "live_supported": false,
- "modified_at": "2021-01-23T07:09:13Z",
- "name": "Playoffs",
- "prizepool": "100000 United States Dollar",
- "serie_id": 3302,
- "slug": "rl-na-rlcs-north-american-regional-event-3-winter-2021-playoffs",
- "winner_id": null,
- "winner_type": "Team"
}, - "tournament_id": 5412,
- "videogame": {
- "id": 22,
- "name": "Rocket League",
- "slug": "rl"
}, - "videogame_version": null,
- "winner": null,
- "winner_id": null
}
]
List upcoming Rocket League matches
object (filter_over_RLMatches) Example: filter[detailed_stats]=true Options to filter results. String fields are case sensitive | |
integer or object Pagination in the form of | |
per_page | integer [ 1 .. 100 ] Default: 50 Example: per_page=5 Equivalent to |
object (range_over_RLMatches) Example: range[begin_at]=2019-04-08T17:00:00Z,2019-10-08T22:00:00Z Options to select results within ranges | |
object (search_over_RLMatches) Example: search[name]=Finals Options to search results | |
sort | Array of any (sort_over_RLMatches) non-empty 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" Example: sort=tournament_id&sort=scheduled_at Options to sort results |
/rl/matches?page[size]=1
[- {
- "begin_at": "2021-01-31T21:20: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": 11845,
- "length": null,
- "match_id": 581441,
- "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": 11846,
- "length": null,
- "match_id": 581441,
- "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": 11847,
- "length": null,
- "match_id": 581441,
- "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": 11848,
- "length": null,
- "match_id": 581441,
- "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": 11849,
- "length": null,
- "match_id": 581441,
- "position": 5,
- "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": 11850,
- "length": null,
- "match_id": 581441,
- "position": 6,
- "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": 11851,
- "length": null,
- "match_id": 581441,
- "position": 7,
- "status": "not_started",
- "video_url": null,
- "winner": {
- "id": null,
- "type": null
}, - "winner_type": null
}
], - "id": 581441,
- "league": {
- "id": 4245,
- "modified_at": "2020-04-17T16:36:20Z",
- "name": "RLCS NA",
- "slug": "rl-na-rlcs",
}, - "league_id": 4245,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2021-01-23T21:42:13Z",
- "name": "Losers' Finals: TBD vs TBD",
- "number_of_games": 7,
- "official_stream_url": null,
- "opponents": [ ],
- "original_scheduled_at": "2021-01-31T20:20:00Z",
- "rescheduled": true,
- "results": [ ],
- "scheduled_at": "2021-01-31T21:20:00Z",
- "serie": {
- "begin_at": "2021-01-23T17:00:00Z",
- "description": null,
- "end_at": null,
- "full_name": "North American Regional Event 3 X Winter 2021",
- "id": 3302,
- "league_id": 4245,
- "modified_at": "2021-01-22T09:25:35Z",
- "name": "North American Regional Event 3",
- "season": "X Winter",
- "slug": "rl-na-rlcs-north-american-regional-event-3-winter-2021",
- "tier": "a",
- "winner_id": null,
- "winner_type": null,
- "year": 2021
}, - "serie_id": 3302,
- "slug": "2021-01-31-0273dccf-8555-4145-a192-f62e93b8fb6e",
- "status": "not_started",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
- "embed_url": null,
- "raw_url": null
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament": {
- "begin_at": "2021-01-23T17:00:00Z",
- "end_at": null,
- "id": 5412,
- "league_id": 4245,
- "live_supported": false,
- "modified_at": "2021-01-23T07:09:13Z",
- "name": "Playoffs",
- "prizepool": "100000 United States Dollar",
- "serie_id": 3302,
- "slug": "rl-na-rlcs-north-american-regional-event-3-winter-2021-playoffs",
- "winner_id": null,
- "winner_type": "Team"
}, - "tournament_id": 5412,
- "videogame": {
- "id": 22,
- "name": "Rocket League",
- "slug": "rl"
}, - "videogame_version": null,
- "winner": null,
- "winner_id": null
}
]
List players for the Rocket League videogame
object (filter_over_RLPlayers) Example: filter[hometown]=France Options to filter results. String fields are case sensitive | |
integer or object Pagination in the form of | |
per_page | integer [ 1 .. 100 ] Default: 50 Example: per_page=5 Equivalent to |
object (range_over_RLPlayers) Example: range[name]=f,i Options to select results within ranges | |
object (search_over_RLPlayers) Example: search[role]=tank Options to search results | |
sort | Array of any (sort_over_RLPlayers) non-empty 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" Example: sort=last_name Options to sort results |
/rl/players?page[size]=1
[- {
- "birth_year": null,
- "birthday": null,
- "current_team": {
- "acronym": "PT",
- "id": 127609,
- "location": null,
- "modified_at": "2020-08-18T03:50:12Z",
- "name": "Plot Twist",
- "slug": "plot-twist"
}, - "current_videogame": {
- "id": 22,
- "name": "Rocket League",
- "slug": "rl"
}, - "first_name": "William",
- "hometown": null,
- "id": 29280,
- "image_url": null,
- "last_name": "Nadeau",
- "name": "grills",
- "nationality": "CA",
- "role": null,
- "slug": "grills"
}
]
Equivalent route: /series/{serie_id_or_slug}/players
required | SerieID (integer) or SerieSlug (string) (SerieIDOrSlug) A serie ID or slug |
object (filter_over_RLPlayers) Example: filter[hometown]=France Options to filter results. String fields are case sensitive | |
integer or object Pagination in the form of | |
per_page | integer [ 1 .. 100 ] Default: 50 Example: per_page=5 Equivalent to |
object (range_over_RLPlayers) Example: range[name]=f,i Options to select results within ranges | |
object (search_over_RLPlayers) Example: search[role]=tank Options to search results | |
sort | Array of any (sort_over_RLPlayers) non-empty 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" Example: sort=last_name Options to sort results |
/rl/players?page[size]=1
[- {
- "birth_year": null,
- "birthday": null,
- "current_team": {
- "acronym": "PT",
- "id": 127609,
- "location": null,
- "modified_at": "2020-08-18T03:50:12Z",
- "name": "Plot Twist",
- "slug": "plot-twist"
}, - "current_videogame": {
- "id": 22,
- "name": "Rocket League",
- "slug": "rl"
}, - "first_name": "William",
- "hometown": null,
- "id": 29280,
- "image_url": null,
- "last_name": "Nadeau",
- "name": "grills",
- "nationality": "CA",
- "role": null,
- "slug": "grills"
}
]
Equivalent route: /tournaments/{tournament_id_or_slug}/players
required | TournamentID (integer) or TournamentSlug (string) (TournamentIDOrSlug) A tournament ID or slug |
object (filter_over_RLPlayers) Example: filter[hometown]=France Options to filter results. String fields are case sensitive | |
integer or object Pagination in the form of | |
per_page | integer [ 1 .. 100 ] Default: 50 Example: per_page=5 Equivalent to |
object (range_over_RLPlayers) Example: range[name]=f,i Options to select results within ranges | |
object (search_over_RLPlayers) Example: search[role]=tank Options to search results | |
sort | Array of any (sort_over_RLPlayers) non-empty 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" Example: sort=last_name Options to sort results |
/rl/players?page[size]=1
[- {
- "birth_year": null,
- "birthday": null,
- "current_team": {
- "acronym": "PT",
- "id": 127609,
- "location": null,
- "modified_at": "2020-08-18T03:50:12Z",
- "name": "Plot Twist",
- "slug": "plot-twist"
}, - "current_videogame": {
- "id": 22,
- "name": "Rocket League",
- "slug": "rl"
}, - "first_name": "William",
- "hometown": null,
- "id": 29280,
- "image_url": null,
- "last_name": "Nadeau",
- "name": "grills",
- "nationality": "CA",
- "role": null,
- "slug": "grills"
}
]
List series for the Rocket League videogame
object (filter_over_RLSeries) Example: filter[winner_id]=390&filter[winner_type]=Team Options to filter results. String fields are case sensitive | |
integer or object Pagination in the form of | |
per_page | integer [ 1 .. 100 ] Default: 50 Example: per_page=5 Equivalent to |
object (range_over_RLSeries) Example: range[begin_at]=2019-04-08T17:00:00Z,2019-10-08T22:00:00Z Options to select results within ranges | |
object (search_over_RLSeries) Example: search[slug]=lck Options to search results | |
sort | Array of any (sort_over_RLSeries) non-empty 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" Example: sort=year&sort=-modified_at Options to sort results |
/rl/series?page[size]=1
[- {
- "begin_at": "2021-01-23T17:00:00Z",
- "description": null,
- "end_at": null,
- "full_name": "North American Regional Event 3 X Winter 2021",
- "id": 3302,
- "league": {
- "id": 4245,
- "modified_at": "2020-04-17T16:36:20Z",
- "name": "RLCS NA",
- "slug": "rl-na-rlcs",
}, - "league_id": 4245,
- "modified_at": "2021-01-22T09:25:35Z",
- "name": "North American Regional Event 3",
- "season": "X Winter",
- "slug": "rl-na-rlcs-north-american-regional-event-3-winter-2021",
- "tier": "a",
- "tournaments": [
- {
- "begin_at": "2021-01-23T17:00:00Z",
- "end_at": null,
- "id": 5412,
- "league_id": 4245,
- "live_supported": false,
- "modified_at": "2021-01-23T07:09:13Z",
- "name": "Playoffs",
- "prizepool": "100000 United States Dollar",
- "serie_id": 3302,
- "slug": "rl-na-rlcs-north-american-regional-event-3-winter-2021-playoffs",
- "winner_id": null,
- "winner_type": "Team"
}
], - "videogame": {
- "id": 22,
- "name": "Rocket League",
- "slug": "rl"
}, - "videogame_title": null,
- "winner_id": null,
- "winner_type": null,
- "year": 2021
}
]
List past Rocket League series
object (filter_over_RLSeries) Example: filter[winner_id]=390&filter[winner_type]=Team Options to filter results. String fields are case sensitive | |
integer or object Pagination in the form of | |
per_page | integer [ 1 .. 100 ] Default: 50 Example: per_page=5 Equivalent to |
object (range_over_RLSeries) Example: range[begin_at]=2019-04-08T17:00:00Z,2019-10-08T22:00:00Z Options to select results within ranges | |
object (search_over_RLSeries) Example: search[slug]=lck Options to search results | |
sort | Array of any (sort_over_RLSeries) non-empty 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" Example: sort=year&sort=-modified_at Options to sort results |
/rl/series?page[size]=1
[- {
- "begin_at": "2021-01-23T17:00:00Z",
- "description": null,
- "end_at": null,
- "full_name": "North American Regional Event 3 X Winter 2021",
- "id": 3302,
- "league": {
- "id": 4245,
- "modified_at": "2020-04-17T16:36:20Z",
- "name": "RLCS NA",
- "slug": "rl-na-rlcs",
}, - "league_id": 4245,
- "modified_at": "2021-01-22T09:25:35Z",
- "name": "North American Regional Event 3",
- "season": "X Winter",
- "slug": "rl-na-rlcs-north-american-regional-event-3-winter-2021",
- "tier": "a",
- "tournaments": [
- {
- "begin_at": "2021-01-23T17:00:00Z",
- "end_at": null,
- "id": 5412,
- "league_id": 4245,
- "live_supported": false,
- "modified_at": "2021-01-23T07:09:13Z",
- "name": "Playoffs",
- "prizepool": "100000 United States Dollar",
- "serie_id": 3302,
- "slug": "rl-na-rlcs-north-american-regional-event-3-winter-2021-playoffs",
- "winner_id": null,
- "winner_type": "Team"
}
], - "videogame": {
- "id": 22,
- "name": "Rocket League",
- "slug": "rl"
}, - "videogame_title": null,
- "winner_id": null,
- "winner_type": null,
- "year": 2021
}
]
List running Rocket League series
object (filter_over_RLSeries) Example: filter[winner_id]=390&filter[winner_type]=Team Options to filter results. String fields are case sensitive | |
integer or object Pagination in the form of | |
per_page | integer [ 1 .. 100 ] Default: 50 Example: per_page=5 Equivalent to |
object (range_over_RLSeries) Example: range[begin_at]=2019-04-08T17:00:00Z,2019-10-08T22:00:00Z Options to select results within ranges | |
object (search_over_RLSeries) Example: search[slug]=lck Options to search results | |
sort | Array of any (sort_over_RLSeries) non-empty 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" Example: sort=year&sort=-modified_at Options to sort results |
/rl/series?page[size]=1
[- {
- "begin_at": "2021-01-23T17:00:00Z",
- "description": null,
- "end_at": null,
- "full_name": "North American Regional Event 3 X Winter 2021",
- "id": 3302,
- "league": {
- "id": 4245,
- "modified_at": "2020-04-17T16:36:20Z",
- "name": "RLCS NA",
- "slug": "rl-na-rlcs",
}, - "league_id": 4245,
- "modified_at": "2021-01-22T09:25:35Z",
- "name": "North American Regional Event 3",
- "season": "X Winter",
- "slug": "rl-na-rlcs-north-american-regional-event-3-winter-2021",
- "tier": "a",
- "tournaments": [
- {
- "begin_at": "2021-01-23T17:00:00Z",
- "end_at": null,
- "id": 5412,
- "league_id": 4245,
- "live_supported": false,
- "modified_at": "2021-01-23T07:09:13Z",
- "name": "Playoffs",
- "prizepool": "100000 United States Dollar",
- "serie_id": 3302,
- "slug": "rl-na-rlcs-north-american-regional-event-3-winter-2021-playoffs",
- "winner_id": null,
- "winner_type": "Team"
}
], - "videogame": {
- "id": 22,
- "name": "Rocket League",
- "slug": "rl"
}, - "videogame_title": null,
- "winner_id": null,
- "winner_type": null,
- "year": 2021
}
]
List upcoming Rocket League series
object (filter_over_RLSeries) Example: filter[winner_id]=390&filter[winner_type]=Team Options to filter results. String fields are case sensitive | |
integer or object Pagination in the form of | |
per_page | integer [ 1 .. 100 ] Default: 50 Example: per_page=5 Equivalent to |
object (range_over_RLSeries) Example: range[begin_at]=2019-04-08T17:00:00Z,2019-10-08T22:00:00Z Options to select results within ranges | |
object (search_over_RLSeries) Example: search[slug]=lck Options to search results | |
sort | Array of any (sort_over_RLSeries) non-empty 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" Example: sort=year&sort=-modified_at Options to sort results |
/rl/series?page[size]=1
[- {
- "begin_at": "2021-01-23T17:00:00Z",
- "description": null,
- "end_at": null,
- "full_name": "North American Regional Event 3 X Winter 2021",
- "id": 3302,
- "league": {
- "id": 4245,
- "modified_at": "2020-04-17T16:36:20Z",
- "name": "RLCS NA",
- "slug": "rl-na-rlcs",
}, - "league_id": 4245,
- "modified_at": "2021-01-22T09:25:35Z",
- "name": "North American Regional Event 3",
- "season": "X Winter",
- "slug": "rl-na-rlcs-north-american-regional-event-3-winter-2021",
- "tier": "a",
- "tournaments": [
- {
- "begin_at": "2021-01-23T17:00:00Z",
- "end_at": null,
- "id": 5412,
- "league_id": 4245,
- "live_supported": false,
- "modified_at": "2021-01-23T07:09:13Z",
- "name": "Playoffs",
- "prizepool": "100000 United States Dollar",
- "serie_id": 3302,
- "slug": "rl-na-rlcs-north-american-regional-event-3-winter-2021-playoffs",
- "winner_id": null,
- "winner_type": "Team"
}
], - "videogame": {
- "id": 22,
- "name": "Rocket League",
- "slug": "rl"
}, - "videogame_title": null,
- "winner_id": null,
- "winner_type": null,
- "year": 2021
}
]
List teams for the Rocket League videogame
object (filter_over_RLTeams) Example: filter[acronym]=RNG Options to filter results. String fields are case sensitive | |
integer or object Pagination in the form of | |
per_page | integer [ 1 .. 100 ] Default: 50 Example: per_page=5 Equivalent to |
object (range_over_RLTeams) Example: range[name]=vitality,vultur Options to select results within ranges | |
object (search_over_RLTeams) Example: search[name]=vitality Options to search results | |
sort | Array of any (sort_over_RLTeams) non-empty Items Enum: "acronym" "-acronym" "id" "-id" "location" "-location" "modified_at" "-modified_at" "name" "-name" "slug" "-slug" "videogame_id" "-videogame_id" Example: sort=name Options to sort results |
/rl/teams?page[size]=1
[- {
- "acronym": "FFF",
- "current_videogame": {
- "id": 22,
- "name": "Rocket League",
- "slug": "rl"
}, - "id": 127736,
- "location": "US",
- "modified_at": "2020-08-15T10:28:40Z",
- "name": "fishhr friends, not food",
- "players": [ ],
- "slug": "fishhr-friends-not-food"
}
]
List tournaments for the Rocket League videogame
object (filter_over_RLShortTournaments) Example: filter[serie_id]=1808 Options to filter results. String fields are case sensitive | |
integer or object Pagination in the form of | |
per_page | integer [ 1 .. 100 ] Default: 50 Example: per_page=5 Equivalent to |
object (range_over_RLShortTournaments) Example: range[begin_at]=2019-04-08T17:00:00Z,2019-10-08T22:00:00Z Options to select results within ranges | |
object (search_over_RLShortTournaments) Example: search[name]=group Options to search results | |
sort | Array of any (sort_over_RLShortTournaments) non-empty 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" Example: sort=serie_id&sort=-begin_at Options to sort results |
/rl/tournaments?page[size]=1
[- {
- "begin_at": "2021-01-23T17:00:00Z",
- "end_at": null,
- "id": 5412,
- "league": {
- "id": 4245,
- "modified_at": "2020-04-17T16:36:20Z",
- "name": "RLCS NA",
- "slug": "rl-na-rlcs",
}, - "league_id": 4245,
- "live_supported": false,
- "matches": [
- {
- "begin_at": "2021-01-23T18:01:24Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": "2021-01-23T18:33:00Z",
- "forfeit": false,
- "game_advantage": null,
- "id": 581396,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2021-01-23T18:33:02Z",
- "name": "Winners' Round 1 Match 1: JJ vs D2E",
- "number_of_games": 5,
- "official_stream_url": null,
- "original_scheduled_at": "2021-01-23T17:00:00Z",
- "rescheduled": true,
- "scheduled_at": "2021-01-23T18:00:00Z",
- "slug": "jamal-jabary-vs-down-two-earth-2021-01-23",
- "status": "finished",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
- "embed_url": null,
- "raw_url": null
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament_id": 5412,
- "winner_id": 127356
}, - {
- "begin_at": "2021-01-23T18:05:08Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": "2021-01-23T18:35:10Z",
- "forfeit": false,
- "game_advantage": null,
- "id": 581401,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2021-01-23T18:35:11Z",
- "name": "Winners' Round 1 Match 6: PINE vs 72PC",
- "number_of_games": 5,
- "official_stream_url": null,
- "original_scheduled_at": "2021-01-23T17:00:00Z",
- "rescheduled": true,
- "scheduled_at": "2021-01-23T18:00:00Z",
- "slug": "alpine-esports-vs-72pc-2021-01-23",
- "status": "finished",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
- "embed_url": null,
- "raw_url": null
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament_id": 5412,
- "winner_id": 127357
}, - {
- "begin_at": "2021-01-23T18:11:00Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": "2021-01-23T18:50:11Z",
- "forfeit": false,
- "game_advantage": null,
- "id": 581397,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2021-01-23T18:50:12Z",
- "name": "Winners' Round 1 Match 2: KCP vs Sol",
- "number_of_games": 5,
- "official_stream_url": null,
- "original_scheduled_at": "2021-01-23T17:00:00Z",
- "rescheduled": true,
- "scheduled_at": "2021-01-23T18:00:00Z",
- "slug": "kansas-city-pioneers-vs-sol-2021-01-23",
- "status": "finished",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
- "embed_url": null,
- "raw_url": null
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament_id": 5412,
- "winner_id": 128058
}, - {
- "begin_at": "2021-01-23T18:43:33Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": "2021-01-23T19:26:36Z",
- "forfeit": false,
- "game_advantage": null,
- "id": 581400,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2021-01-23T19:26:36Z",
- "name": "Winners' Round 1 Match 5: XSET vs SUP",
- "number_of_games": 5,
- "official_stream_url": null,
- "original_scheduled_at": "2021-01-23T17:40:00Z",
- "rescheduled": true,
- "scheduled_at": "2021-01-23T18:40:00Z",
- "slug": "xset-vs-sup-2021-01-23",
- "status": "finished",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
- "embed_url": null,
- "raw_url": null
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament_id": 5412,
- "winner_id": 127698
}, - {
- "begin_at": "2021-01-23T18:47:10Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": "2021-01-23T19:17:00Z",
- "forfeit": false,
- "game_advantage": null,
- "id": 581403,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2021-01-23T19:17:01Z",
- "name": "Winners' Round 1 Match 8: SQ vs Empty Space",
- "number_of_games": 5,
- "official_stream_url": null,
- "original_scheduled_at": "2021-01-23T17:40:00Z",
- "rescheduled": true,
- "scheduled_at": "2021-01-23T18:40:00Z",
- "slug": "susquehanna-soniqs-vs-empty-space-2021-01-23",
- "status": "finished",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
- "embed_url": null,
- "raw_url": null
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament_id": 5412,
- "winner_id": 126867
}, - {
- "begin_at": "2021-01-23T18:56:48Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": "2021-01-23T19:25:15Z",
- "forfeit": false,
- "game_advantage": null,
- "id": 581398,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2021-01-23T19:25:16Z",
- "name": "Winners' Round 1 Match 3: EU vs NEF",
- "number_of_games": 5,
- "official_stream_url": null,
- "original_scheduled_at": "2021-01-23T17:40:00Z",
- "rescheduled": true,
- "scheduled_at": "2021-01-23T18:40:00Z",
- "slug": "eunited-vs-nefarious-2021-01-23",
- "status": "finished",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
- "embed_url": null,
- "raw_url": null
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament_id": 5412,
- "winner_id": 126473
}, - {
- "begin_at": "2021-01-23T19:29:25Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": "2021-01-23T19:50:17Z",
- "forfeit": false,
- "game_advantage": null,
- "id": 581402,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2021-01-23T19:50:18Z",
- "name": "Winners' Round 1 Match 7: Loco vs Volt Esports",
- "number_of_games": 5,
- "official_stream_url": null,
- "original_scheduled_at": "2021-01-23T18:20:00Z",
- "rescheduled": true,
- "scheduled_at": "2021-01-23T19:20:00Z",
- "slug": "loco-vs-volt-esports-2021-01-23",
- "status": "finished",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
- "embed_url": null,
- "raw_url": null
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament_id": 5412,
- "winner_id": 128426
}, - {
- "begin_at": "2021-01-23T19:32:43Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": "2021-01-23T19:53:24Z",
- "forfeit": false,
- "game_advantage": null,
- "id": 581399,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2021-01-23T19:53:25Z",
- "name": "Winners' Round 1 Match 4: GHO vs Radiant",
- "number_of_games": 5,
- "official_stream_url": null,
- "original_scheduled_at": "2021-01-23T18:20:00Z",
- "rescheduled": true,
- "scheduled_at": "2021-01-23T19:20:00Z",
- "slug": "ghost-gaming-vs-radiant-2021-01-23",
- "status": "finished",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
- "embed_url": null,
- "raw_url": null
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament_id": 5412,
- "winner_id": 128427
}, - {
- "begin_at": "2021-01-23T19:42:08Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": "2021-01-23T20:05:33Z",
- "forfeit": false,
- "game_advantage": null,
- "id": 581404,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2021-01-23T20:05:34Z",
- "name": "Winners' Round 2 Match 1: NV vs JJ",
- "number_of_games": 5,
- "official_stream_url": null,
- "original_scheduled_at": "2021-01-23T18:20:00Z",
- "rescheduled": true,
- "scheduled_at": "2021-01-23T19:20:00Z",
- "slug": "team-envy-2021-01-23",
- "status": "finished",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
- "embed_url": null,
- "raw_url": null
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament_id": 5412,
- "winner_id": 127360
}, - {
- "begin_at": "2021-01-23T20:02:37Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": "2021-01-23T20:43:49Z",
- "forfeit": false,
- "game_advantage": null,
- "id": 581405,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2021-01-23T20:43:50Z",
- "name": "Winners' Round 2 Match 2: V1 vs Sol",
- "number_of_games": 5,
- "official_stream_url": null,
- "original_scheduled_at": "2021-01-23T19:00:00Z",
- "rescheduled": true,
- "scheduled_at": "2021-01-23T20:00:00Z",
- "slug": "version1-2021-01-23",
- "status": "finished",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
- "embed_url": null,
- "raw_url": null
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament_id": 5412,
- "winner_id": 127697
}, - {
- "begin_at": "2021-01-23T20:02:54Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": "2021-01-23T20:33:20Z",
- "forfeit": false,
- "game_advantage": null,
- "id": 581409,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2021-01-23T20:33:21Z",
- "name": "Winners' Round 2 Match 6: PK vs 72PC",
- "number_of_games": 5,
- "official_stream_url": null,
- "original_scheduled_at": "2021-01-23T19:00:00Z",
- "rescheduled": true,
- "scheduled_at": "2021-01-23T20:00:00Z",
- "slug": "pittsburgh-knights-2021-01-23",
- "status": "finished",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
- "embed_url": null,
- "raw_url": null
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament_id": 5412,
- "winner_id": 126332
}, - {
- "begin_at": "2021-01-23T20:15:50Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": "2021-01-23T21:03:41Z",
- "forfeit": false,
- "game_advantage": null,
- "id": 581406,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2021-01-23T21:03:42Z",
- "name": "Winners' Round 2 Match 3: G2 vs EU",
- "number_of_games": 5,
- "official_stream_url": null,
- "original_scheduled_at": "2021-01-23T19:00:00Z",
- "rescheduled": true,
- "scheduled_at": "2021-01-23T20:00:00Z",
- "slug": "g2-esports-2021-01-23",
- "status": "finished",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
- "embed_url": null,
- "raw_url": null
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament_id": 5412,
- "winner_id": 126299
}, - {
- "begin_at": "2021-01-23T20:43:46Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": "2021-01-23T21:14:24Z",
- "forfeit": false,
- "game_advantage": null,
- "id": 581411,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2021-01-23T21:14:25Z",
- "name": "Winners' Round 2 Match 8: PEEP vs SQ",
- "number_of_games": 5,
- "official_stream_url": null,
- "original_scheduled_at": "2021-01-23T19:40:00Z",
- "rescheduled": true,
- "scheduled_at": "2021-01-23T20:40:00Z",
- "slug": "the-peeps-2021-01-23",
- "status": "finished",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
- "embed_url": null,
- "raw_url": null
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament_id": 5412,
- "winner_id": 126867
}, - {
- "begin_at": "2021-01-23T20:49:41Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": "2021-01-23T21:20:42Z",
- "forfeit": false,
- "game_advantage": null,
- "id": 581407,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2021-01-23T21:20:43Z",
- "name": "Winners' Round 2 Match 4: RGE vs Radiant",
- "number_of_games": 5,
- "official_stream_url": null,
- "original_scheduled_at": "2021-01-23T19:40:00Z",
- "rescheduled": true,
- "scheduled_at": "2021-01-23T20:40:00Z",
- "slug": "rogue-2021-01-23",
- "status": "finished",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
- "embed_url": null,
- "raw_url": null
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament_id": 5412,
- "winner_id": 126302
}, - {
- "begin_at": "2021-01-23T21:04:07Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": "2021-01-23T21:40:59Z",
- "forfeit": false,
- "game_advantage": null,
- "id": 581408,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2021-01-23T21:41:01Z",
- "name": "Winners' Round 2 Match 5: NRG vs XSET",
- "number_of_games": 5,
- "official_stream_url": null,
- "original_scheduled_at": "2021-01-23T19:40:00Z",
- "rescheduled": true,
- "scheduled_at": "2021-01-23T20:40:00Z",
- "slug": "nrg-esports-2021-01-23",
- "status": "finished",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
- "embed_url": null,
- "raw_url": null
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament_id": 5412,
- "winner_id": 126301
}, - {
- "begin_at": "2021-01-23T21:52:41Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": "2021-01-23T22:15:59Z",
- "forfeit": false,
- "game_advantage": null,
- "id": 581410,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2021-01-23T22:16:00Z",
- "name": "Winners' Round 2 Match 7: SSG vs Volt Esports",
- "number_of_games": 5,
- "official_stream_url": null,
- "original_scheduled_at": "2021-01-23T20:20:00Z",
- "rescheduled": true,
- "scheduled_at": "2021-01-23T21:20:00Z",
- "slug": "spacestation-gaming-2021-01-23",
- "status": "finished",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
- "embed_url": null,
- "raw_url": null
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament_id": 5412,
- "winner_id": 126303
}, - {
- "begin_at": "2021-01-24T17:57:14Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": "2021-01-24T18:38:38Z",
- "forfeit": false,
- "game_advantage": null,
- "id": 581420,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2021-01-24T18:38:38Z",
- "name": "Losers Round 1 Match 1: D2E vs XSET",
- "number_of_games": 5,
- "official_stream_url": null,
- "original_scheduled_at": "2021-01-24T17:00:00Z",
- "rescheduled": true,
- "scheduled_at": "2021-01-24T18:00:00Z",
- "slug": "down-two-earth-2021-01-24",
- "status": "finished",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
- "embed_url": null,
- "raw_url": null
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament_id": 5412,
- "winner_id": 127698
}, - {
- "begin_at": "2021-01-24T18:03:40Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": "2021-01-24T18:34:45Z",
- "forfeit": false,
- "game_advantage": null,
- "id": 581424,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2021-01-24T18:34:45Z",
- "name": "Losers Round 1 Match 5: SUP vs JJ",
- "number_of_games": 5,
- "official_stream_url": null,
- "original_scheduled_at": "2021-01-24T17:00:00Z",
- "rescheduled": true,
- "scheduled_at": "2021-01-24T18:00:00Z",
- "slug": "sup-2021-01-24",
- "status": "finished",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
- "embed_url": null,
- "raw_url": null
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament_id": 5412,
- "winner_id": 127356
}, - {
- "begin_at": "2021-01-24T18:39:52Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": "2021-01-24T19:26:37Z",
- "forfeit": false,
- "game_advantage": null,
- "id": 581421,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2021-01-24T19:26:37Z",
- "name": "Losers Round 1 Match 2: KCP vs 72PC",
- "number_of_games": 5,
- "official_stream_url": null,
- "original_scheduled_at": "2021-01-24T17:40:00Z",
- "rescheduled": true,
- "scheduled_at": "2021-01-24T18:40:00Z",
- "slug": "kansas-city-pioneers-2021-01-24",
- "status": "finished",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
- "embed_url": null,
- "raw_url": null
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament_id": 5412,
- "winner_id": 127699
}, - {
- "begin_at": "2021-01-24T18:42:18Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": "2021-01-24T19:02:32Z",
- "forfeit": false,
- "game_advantage": null,
- "id": 581425,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2021-01-24T19:02:33Z",
- "name": "Losers Round 1 Match 6: PINE vs Sol",
- "number_of_games": 5,
- "official_stream_url": null,
- "original_scheduled_at": "2021-01-24T17:40:00Z",
- "rescheduled": true,
- "scheduled_at": "2021-01-24T18:40:00Z",
- "slug": "alpine-esports-2021-01-24",
- "status": "finished",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
- "embed_url": null,
- "raw_url": null
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament_id": 5412,
- "winner_id": 127645
}, - {
- "begin_at": "2021-01-24T19:10:11Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": "2021-01-24T19:47:18Z",
- "forfeit": false,
- "game_advantage": null,
- "id": 581426,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2021-01-24T19:47:18Z",
- "name": "Losers Round 1 Match 7: Loco vs EU",
- "number_of_games": 5,
- "official_stream_url": null,
- "original_scheduled_at": "2021-01-24T18:20:00Z",
- "rescheduled": true,
- "scheduled_at": "2021-01-24T19:20:00Z",
- "slug": "loco-2021-01-24",
- "status": "finished",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
- "embed_url": null,
- "raw_url": null
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament_id": 5412,
- "winner_id": 128060
}, - {
- "begin_at": "2021-01-24T19:30:28Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": "2021-01-24T20:16:27Z",
- "forfeit": false,
- "game_advantage": null,
- "id": 581422,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2021-01-24T20:16:27Z",
- "name": "Losers Round 1 Match 3: NEF vs Volt Esports",
- "number_of_games": 5,
- "official_stream_url": null,
- "original_scheduled_at": "2021-01-24T18:20:00Z",
- "rescheduled": true,
- "scheduled_at": "2021-01-24T19:20:00Z",
- "slug": "nefarious-2021-01-24",
- "status": "finished",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
- "embed_url": null,
- "raw_url": null
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament_id": 5412,
- "winner_id": 127730
}, - {
- "begin_at": "2021-01-24T19:55:53Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": "2021-01-24T20:31:10Z",
- "forfeit": false,
- "game_advantage": null,
- "id": 581427,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2021-01-24T20:31:10Z",
- "name": "Losers Round 1 Match 8: Empty Space vs Radiant",
- "number_of_games": 5,
- "official_stream_url": null,
- "original_scheduled_at": "2021-01-24T19:00:00Z",
- "rescheduled": true,
- "scheduled_at": "2021-01-24T20:00:00Z",
- "slug": "empty-space-2021-01-24",
- "status": "finished",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
- "embed_url": null,
- "raw_url": null
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament_id": 5412,
- "winner_id": 127924
}, - {
- "begin_at": "2021-01-24T20:27:35Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": "2021-01-24T20:50:31Z",
- "forfeit": false,
- "game_advantage": null,
- "id": 581423,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2021-01-24T20:50:32Z",
- "name": "Losers Round 1 Match 4: GHO vs PEEP",
- "number_of_games": 5,
- "official_stream_url": null,
- "original_scheduled_at": "2021-01-24T19:00:00Z",
- "rescheduled": true,
- "scheduled_at": "2021-01-24T20:00:00Z",
- "slug": "ghost-gaming-2021-01-24",
- "status": "finished",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
- "embed_url": null,
- "raw_url": null
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament_id": 5412,
- "winner_id": 126304
}, - {
- "begin_at": "2021-01-24T20:40:53Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": "2021-01-24T21:01:58Z",
- "forfeit": false,
- "game_advantage": null,
- "id": 581430,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2021-01-24T21:02:00Z",
- "name": "Losers Round 2 Match 3: JJ vs PINE",
- "number_of_games": 5,
- "official_stream_url": null,
- "original_scheduled_at": "2021-01-24T19:40:00Z",
- "rescheduled": true,
- "scheduled_at": "2021-01-24T20:40:00Z",
- "slug": "jamal-jabary-2021-01-24",
- "status": "finished",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
- "embed_url": null,
- "raw_url": null
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament_id": 5412,
- "winner_id": 127356
}, - {
- "begin_at": "2021-01-24T20:56:28Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": "2021-01-24T21:29:29Z",
- "forfeit": false,
- "game_advantage": null,
- "id": 581428,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2021-01-24T21:29:31Z",
- "name": "Losers Round 2 Match 1: XSET vs KCP",
- "number_of_games": 5,
- "official_stream_url": null,
- "original_scheduled_at": "2021-01-24T19:40:00Z",
- "rescheduled": true,
- "scheduled_at": "2021-01-24T20:40:00Z",
- "slug": "xset-2021-01-24",
- "status": "finished",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
- "embed_url": null,
- "raw_url": null
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament_id": 5412,
- "winner_id": 127698
}, - {
- "begin_at": "2021-01-24T21:11:30Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": "2021-01-24T21:47:46Z",
- "forfeit": false,
- "game_advantage": null,
- "id": 581431,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2021-01-24T21:47:47Z",
- "name": "Losers Round 2 Match 4: Loco vs Empty Space",
- "number_of_games": 5,
- "official_stream_url": null,
- "original_scheduled_at": "2021-01-24T20:20:00Z",
- "rescheduled": true,
- "scheduled_at": "2021-01-24T21:20:00Z",
- "slug": "loco-2021-01-24-1f84f8ea-fb40-476a-965d-6eec75961840",
- "status": "finished",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
- "embed_url": null,
- "raw_url": null
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament_id": 5412,
- "winner_id": 128060
}, - {
- "begin_at": "2021-01-24T21:35:06Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": "2021-01-24T22:04:41Z",
- "forfeit": false,
- "game_advantage": null,
- "id": 581429,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2021-01-24T22:04:42Z",
- "name": "Losers Round 2 Match 2: NEF vs PEEP",
- "number_of_games": 5,
- "official_stream_url": null,
- "original_scheduled_at": "2021-01-24T20:20:00Z",
- "rescheduled": true,
- "scheduled_at": "2021-01-24T21:20:00Z",
- "slug": "nefarious-2021-01-24-27344fbe-9b23-4988-b3b7-4439abc4ac73",
- "status": "finished",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
- "embed_url": null,
- "raw_url": null
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament_id": 5412,
- "winner_id": 126304
}, - {
- "begin_at": "2021-01-30T18:00:00Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": null,
- "forfeit": false,
- "game_advantage": null,
- "id": 581412,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2021-01-23T21:37:56Z",
- "name": "Winners' Quarterfinal Match 1: NV vs V1",
- "number_of_games": 5,
- "official_stream_url": null,
- "original_scheduled_at": "2021-01-30T17:00:00Z",
- "rescheduled": true,
- "scheduled_at": "2021-01-30T18:00:00Z",
- "slug": "team-envy-2021-01-30",
- "status": "not_started",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
- "embed_url": null,
- "raw_url": null
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament_id": 5412,
- "winner_id": null
}, - {
- "begin_at": "2021-01-30T18:00:00Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": null,
- "forfeit": false,
- "game_advantage": null,
- "id": 581414,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2021-01-23T21:41:01Z",
- "name": "Winners' Quarterfinal Match 3: PK vs NRG",
- "number_of_games": 5,
- "official_stream_url": null,
- "original_scheduled_at": "2021-01-30T17:00:00Z",
- "rescheduled": true,
- "scheduled_at": "2021-01-30T18:00:00Z",
- "slug": "pittsburgh-knights-2021-01-30",
- "status": "not_started",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
- "embed_url": null,
- "raw_url": null
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament_id": 5412,
- "winner_id": null
}, - {
- "begin_at": "2021-01-30T18:40:00Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": null,
- "forfeit": false,
- "game_advantage": null,
- "id": 581413,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2021-01-23T21:38:33Z",
- "name": "Winners' Quarterfinal Match 2: G2 vs RGE",
- "number_of_games": 5,
- "official_stream_url": null,
- "original_scheduled_at": "2021-01-30T17:40:00Z",
- "rescheduled": true,
- "scheduled_at": "2021-01-30T18:40:00Z",
- "slug": "g2-esports-2021-01-30",
- "status": "not_started",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
- "embed_url": null,
- "raw_url": null
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament_id": 5412,
- "winner_id": null
}, - {
- "begin_at": "2021-01-30T18:40:00Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": null,
- "forfeit": false,
- "game_advantage": null,
- "id": 581415,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2021-01-23T22:16:01Z",
- "name": "Winners' Quarterfinal Match 4: SQ vs SSG",
- "number_of_games": 5,
- "official_stream_url": null,
- "original_scheduled_at": "2021-01-30T17:40:00Z",
- "rescheduled": true,
- "scheduled_at": "2021-01-30T18:40:00Z",
- "slug": "susquehanna-soniqs-2021-01-30",
- "status": "not_started",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
- "embed_url": null,
- "raw_url": null
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament_id": 5412,
- "winner_id": null
}, - {
- "begin_at": "2021-01-30T19:20:00Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": null,
- "forfeit": false,
- "game_advantage": null,
- "id": 581433,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2021-01-24T22:04:43Z",
- "name": "Losers Round 3 Match 2: PEEP vs TBD",
- "number_of_games": 5,
- "official_stream_url": null,
- "original_scheduled_at": "2021-01-30T18:20:00Z",
- "rescheduled": true,
- "scheduled_at": "2021-01-30T19:20:00Z",
- "slug": "2021-01-30-41ee3bfc-c39a-4ba7-ab40-9e448e623fd3",
- "status": "not_started",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
- "embed_url": null,
- "raw_url": null
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament_id": 5412,
- "winner_id": null
}, - {
- "begin_at": "2021-01-30T19:20:00Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": null,
- "forfeit": false,
- "game_advantage": null,
- "id": 581435,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2021-01-24T21:47:47Z",
- "name": "Losers Round 3 Match 4: Loco vs TBD",
- "number_of_games": 5,
- "official_stream_url": null,
- "original_scheduled_at": "2021-01-30T18:20:00Z",
- "rescheduled": true,
- "scheduled_at": "2021-01-30T19:20:00Z",
- "slug": "2021-01-30-79e801b9-19f9-447b-9a0a-5e203c710f6f",
- "status": "not_started",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
- "embed_url": null,
- "raw_url": null
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament_id": 5412,
- "winner_id": null
}, - {
- "begin_at": "2021-01-30T20:00:00Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": null,
- "forfeit": false,
- "game_advantage": null,
- "id": 581432,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2021-01-24T21:29:31Z",
- "name": "Losers Round 3 Match 1: XSET vs TBD",
- "number_of_games": 5,
- "official_stream_url": null,
- "original_scheduled_at": "2021-01-30T19:00:00Z",
- "rescheduled": true,
- "scheduled_at": "2021-01-30T20:00:00Z",
- "slug": "2021-01-30-9dd7aafb-e2a2-4c46-aabe-237bf6c8a9d3",
- "status": "not_started",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
- "embed_url": null,
- "raw_url": null
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament_id": 5412,
- "winner_id": null
}, - {
- "begin_at": "2021-01-30T20:00:00Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": null,
- "forfeit": false,
- "game_advantage": null,
- "id": 581434,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2021-01-24T21:02:00Z",
- "name": "Losers Round 3 Match 3: JJ vs TBD",
- "number_of_games": 5,
- "official_stream_url": null,
- "original_scheduled_at": "2021-01-30T19:00:00Z",
- "rescheduled": true,
- "scheduled_at": "2021-01-30T20:00:00Z",
- "slug": "2021-01-30-d5e2ef48-8533-44bb-8449-f490e3e26e0e",
- "status": "not_started",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
- "embed_url": null,
- "raw_url": null
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament_id": 5412,
- "winner_id": null
}, - {
- "begin_at": "2021-01-30T20:40:00Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": null,
- "forfeit": false,
- "game_advantage": null,
- "id": 581416,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2021-01-23T21:39:57Z",
- "name": "Winners' Semifinal Match 1: TBD vs TBD",
- "number_of_games": 7,
- "official_stream_url": null,
- "original_scheduled_at": "2021-01-30T19:40:00Z",
- "rescheduled": true,
- "scheduled_at": "2021-01-30T20:40:00Z",
- "slug": "2021-01-30-17c75bde-2442-4a52-9507-37f2645d643f",
- "status": "not_started",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
- "embed_url": null,
- "raw_url": null
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament_id": 5412,
- "winner_id": null
}, - {
- "begin_at": "2021-01-30T20:40:00Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": null,
- "forfeit": false,
- "game_advantage": null,
- "id": 581417,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2021-01-23T21:40:13Z",
- "name": "Winners' Semifinal Match 2: TBD vs TBD",
- "number_of_games": 7,
- "official_stream_url": null,
- "original_scheduled_at": "2021-01-30T19:40:00Z",
- "rescheduled": true,
- "scheduled_at": "2021-01-30T20:40:00Z",
- "slug": "2021-01-30-dc47798d-e08f-4736-a9f4-1858a7f760ad",
- "status": "not_started",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
- "embed_url": null,
- "raw_url": null
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament_id": 5412,
- "winner_id": null
}, - {
- "begin_at": "2021-01-30T21:40:00Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": null,
- "forfeit": false,
- "game_advantage": null,
- "id": 581436,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2021-01-23T21:40:48Z",
- "name": "Losers Round 4 Match 1: TBD vs TBD",
- "number_of_games": 5,
- "official_stream_url": null,
- "original_scheduled_at": "2021-01-30T20:40:00Z",
- "rescheduled": true,
- "scheduled_at": "2021-01-30T21:40:00Z",
- "slug": "2021-01-30-cd595188-1bb6-4ea2-8da8-d979e5ea4540",
- "status": "not_started",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
- "embed_url": null,
- "raw_url": null
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament_id": 5412,
- "winner_id": null
}, - {
- "begin_at": "2021-01-30T21:40:00Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": null,
- "forfeit": false,
- "game_advantage": null,
- "id": 581437,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2021-01-23T21:40:34Z",
- "name": "Losers Round 4 Match 2: TBD vs TBD",
- "number_of_games": 5,
- "official_stream_url": null,
- "original_scheduled_at": "2021-01-30T20:40:00Z",
- "rescheduled": true,
- "scheduled_at": "2021-01-30T21:40:00Z",
- "slug": "2021-01-30-016b8b1e-24e0-4a5d-b195-d6879155c36d",
- "status": "not_started",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
- "embed_url": null,
- "raw_url": null
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament_id": 5412,
- "winner_id": null
}, - {
- "begin_at": "2021-01-31T18:00:00Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": null,
- "forfeit": false,
- "game_advantage": null,
- "id": 581438,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2021-01-23T21:41:05Z",
- "name": "Losers Quarterfinals Match 1: TBD vs TBD",
- "number_of_games": 7,
- "official_stream_url": null,
- "original_scheduled_at": "2021-01-31T17:00:00Z",
- "rescheduled": true,
- "scheduled_at": "2021-01-31T18:00:00Z",
- "slug": "2021-01-31-a68d60c0-17d4-4e2a-8957-dfc9275d21f5",
- "status": "not_started",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
- "embed_url": null,
- "raw_url": null
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament_id": 5412,
- "winner_id": null
}, - {
- "begin_at": "2021-01-31T18:50:00Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": null,
- "forfeit": false,
- "game_advantage": null,
- "id": 581439,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2021-01-23T21:41:19Z",
- "name": "Losers Quarterfinals Match 2: TBD vs TBD",
- "number_of_games": 7,
- "official_stream_url": null,
- "original_scheduled_at": "2021-01-31T17:50:00Z",
- "rescheduled": true,
- "scheduled_at": "2021-01-31T18:50:00Z",
- "slug": "2021-01-31-287f02c3-f808-4b21-a60d-54bddbfbcc8b",
- "status": "not_started",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
- "embed_url": null,
- "raw_url": null
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament_id": 5412,
- "winner_id": null
}, - {
- "begin_at": "2021-01-31T19:40:00Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": null,
- "forfeit": false,
- "game_advantage": null,
- "id": 581418,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2021-01-23T21:41:37Z",
- "name": "Winners' Finals: TBD vs TBD",
- "number_of_games": 7,
- "official_stream_url": null,
- "original_scheduled_at": "2021-01-31T18:40:00Z",
- "rescheduled": true,
- "scheduled_at": "2021-01-31T19:40:00Z",
- "slug": "2021-01-31-d4c72920-9cbf-48ce-b112-df0eb64e8a95",
- "status": "not_started",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
- "embed_url": null,
- "raw_url": null
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament_id": 5412,
- "winner_id": null
}, - {
- "begin_at": "2021-01-31T20:30:00Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": null,
- "forfeit": false,
- "game_advantage": null,
- "id": 581440,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2021-01-23T21:41:54Z",
- "name": "Losers' Semifinals: TBD vs TBD",
- "number_of_games": 7,
- "official_stream_url": null,
- "original_scheduled_at": "2021-01-31T19:30:00Z",
- "rescheduled": true,
- "scheduled_at": "2021-01-31T20:30:00Z",
- "slug": "2021-01-31-9386237f-492f-42c8-b9c5-6aadd9b5391a",
- "status": "not_started",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
- "embed_url": null,
- "raw_url": null
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament_id": 5412,
- "winner_id": null
}, - {
- "begin_at": "2021-01-31T21:20:00Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": null,
- "forfeit": false,
- "game_advantage": null,
- "id": 581441,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2021-01-23T21:42:13Z",
- "name": "Losers' Finals: TBD vs TBD",
- "number_of_games": 7,
- "official_stream_url": null,
- "original_scheduled_at": "2021-01-31T20:20:00Z",
- "rescheduled": true,
- "scheduled_at": "2021-01-31T21:20:00Z",
- "slug": "2021-01-31-0273dccf-8555-4145-a192-f62e93b8fb6e",
- "status": "not_started",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
- "embed_url": null,
- "raw_url": null
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament_id": 5412,
- "winner_id": null
}, - {
- "begin_at": "2021-01-31T22:10:00Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": null,
- "forfeit": false,
- "game_advantage": null,
- "id": 581419,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2021-01-23T21:42:30Z",
- "name": "Grand Final: TBD vs TBD",
- "number_of_games": 7,
- "official_stream_url": null,
- "original_scheduled_at": "2021-01-31T21:10:00Z",
- "rescheduled": true,
- "scheduled_at": "2021-01-31T22:10:00Z",
- "slug": "2021-01-31-f1163b40-8511-4ecf-b6fe-1c314c73572d",
- "status": "not_started",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
- "embed_url": null,
- "raw_url": null
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament_id": 5412,
- "winner_id": null
}
], - "modified_at": "2021-01-23T07:09:13Z",
- "name": "Playoffs",
- "prizepool": "100000 United States Dollar",
- "serie": {
- "begin_at": "2021-01-23T17:00:00Z",
- "description": null,
- "end_at": null,
- "full_name": "North American Regional Event 3 X Winter 2021",
- "id": 3302,
- "league_id": 4245,
- "modified_at": "2021-01-22T09:25:35Z",
- "name": "North American Regional Event 3",
- "season": "X Winter",
- "slug": "rl-na-rlcs-north-american-regional-event-3-winter-2021",
- "tier": "a",
- "winner_id": null,
- "winner_type": null,
- "year": 2021
}, - "serie_id": 3302,
- "slug": "rl-na-rlcs-north-american-regional-event-3-winter-2021-playoffs",
- "teams": [
- {
- "acronym": "G2",
- "id": 126299,
- "location": "DE",
- "modified_at": "2021-01-22T18:21:33Z",
- "name": "G2 Esports",
- "slug": "g2-esports-rl"
}, - {
- "acronym": "GHO",
- "id": 126300,
- "location": "US",
- "modified_at": "2021-01-22T18:21:33Z",
- "name": "Ghost Gaming",
- "slug": "ghost-gaming-rl"
}, - {
- "acronym": "NRG",
- "id": 126301,
- "location": "US",
- "modified_at": "2021-01-22T18:21:34Z",
- "name": "NRG Esports",
- "slug": "nrg-esports-rl"
}, - {
- "acronym": "RGE",
- "id": 126302,
- "location": "US",
- "modified_at": "2021-01-22T18:21:34Z",
- "name": "Rogue",
- "slug": "rogue-rl"
}, - {
- "acronym": "SSG",
- "id": 126303,
- "location": "US",
- "modified_at": "2021-01-22T18:21:34Z",
- "name": "Spacestation Gaming",
- "slug": "spacestation-gaming-rl"
}, - {
- "acronym": "PEEP",
- "id": 126304,
- "location": "US",
- "modified_at": "2021-01-22T18:21:35Z",
- "name": "The Peeps",
- "slug": "the-peeps"
}, - {
- "acronym": "PK",
- "id": 126332,
- "location": "US",
- "modified_at": "2021-01-22T18:21:36Z",
- "name": "Pittsburgh Knights",
- "slug": "pittsburgh-knights-rl"
}, - {
- "acronym": "EU",
- "id": 126473,
- "location": "US",
- "modified_at": "2021-01-22T18:21:36Z",
- "name": "eUnited",
- "slug": "eunited-rl"
}, - {
- "acronym": "SQ",
- "id": 126867,
- "location": "US",
- "modified_at": "2021-01-22T18:21:36Z",
- "name": "Susquehanna Soniqs",
- "slug": "susquehanna-soniqs-rl"
}, - {
- "acronym": "JJ",
- "id": 127356,
- "location": null,
- "modified_at": "2021-01-22T19:11:26Z",
- "name": "Jamal Jabary",
- "slug": "jamal-jabary"
}, - {
- "acronym": "72PC",
- "id": 127357,
- "location": "US",
- "modified_at": "2021-01-22T18:21:37Z",
- "name": "72PC",
- "slug": "72-pin-connector"
}, - {
- "acronym": "NV",
- "id": 127360,
- "location": "US",
- "modified_at": "2021-01-22T18:21:37Z",
- "name": "Team Envy",
- "slug": "team-envy-rl"
}, - {
- "acronym": "PINE",
- "id": 127645,
- "location": null,
- "modified_at": "2021-01-22T18:21:38Z",
- "name": "Alpine Esports",
- "slug": "alpine-esports"
}, - {
- "acronym": "V1",
- "id": 127697,
- "location": "US",
- "modified_at": "2021-01-22T18:21:38Z",
- "name": "Version1",
- "slug": "version1"
}, - {
- "acronym": "XSET",
- "id": 127698,
- "location": "US",
- "modified_at": "2021-01-22T18:21:39Z",
- "name": "XSET",
- "slug": "xset"
}, - {
- "acronym": "KCP",
- "id": 127699,
- "location": null,
- "modified_at": "2021-01-22T18:21:40Z",
- "name": "Kansas City Pioneers",
- "slug": "kansas-city-pioneers"
}, - {
- "acronym": "NEF",
- "id": 127730,
- "location": "US",
- "modified_at": "2021-01-22T18:21:40Z",
- "name": "Nefarious",
- "slug": "nefarious"
}, - {
- "acronym": "D2E",
- "id": 127921,
- "location": "US",
- "modified_at": "2021-01-22T18:21:41Z",
- "name": "Down Two Earth",
- "slug": "down-two-earth"
}, - {
- "acronym": null,
- "id": 127924,
- "location": "US",
- "modified_at": "2021-01-25T19:19:30Z",
- "name": "Empty Space",
- "slug": "empty-space"
}, - {
- "acronym": null,
- "id": 128058,
- "image_url": null,
- "location": null,
- "modified_at": "2021-01-22T18:21:41Z",
- "name": "Sol",
- "slug": "sol"
}, - {
- "acronym": null,
- "id": 128060,
- "location": null,
- "modified_at": "2021-01-22T18:21:41Z",
- "name": "Loco",
- "slug": "loco"
}, - {
- "acronym": null,
- "id": 128131,
- "location": "US",
- "modified_at": "2021-01-25T19:23:48Z",
- "name": "SUP",
- "slug": "sup"
}, - {
- "acronym": null,
- "id": 128426,
- "location": "US",
- "modified_at": "2021-01-22T19:17:37Z",
- "name": "Volt Esports",
- "slug": "volt-esports"
}, - {
- "acronym": null,
- "id": 128427,
- "location": "US",
- "modified_at": "2021-01-22T19:13:11Z",
- "name": "Radiant",
- "slug": "radiant"
}
], - "videogame": {
- "id": 22,
- "name": "Rocket League",
- "slug": "rl"
}, - "winner_id": null,
- "winner_type": "Team"
}
]
List past Rocket League tournaments
object (filter_over_RLShortTournaments) Example: filter[serie_id]=1808 Options to filter results. String fields are case sensitive | |
integer or object Pagination in the form of | |
per_page | integer [ 1 .. 100 ] Default: 50 Example: per_page=5 Equivalent to |
object (range_over_RLShortTournaments) Example: range[begin_at]=2019-04-08T17:00:00Z,2019-10-08T22:00:00Z Options to select results within ranges | |
object (search_over_RLShortTournaments) Example: search[name]=group Options to search results | |
sort | Array of any (sort_over_RLShortTournaments) non-empty 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" Example: sort=serie_id&sort=-begin_at Options to sort results |
/rl/tournaments?page[size]=1
[- {
- "begin_at": "2021-01-23T17:00:00Z",
- "end_at": null,
- "id": 5412,
- "league": {
- "id": 4245,
- "modified_at": "2020-04-17T16:36:20Z",
- "name": "RLCS NA",
- "slug": "rl-na-rlcs",
}, - "league_id": 4245,
- "live_supported": false,
- "matches": [
- {
- "begin_at": "2021-01-23T18:01:24Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": "2021-01-23T18:33:00Z",
- "forfeit": false,
- "game_advantage": null,
- "id": 581396,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2021-01-23T18:33:02Z",
- "name": "Winners' Round 1 Match 1: JJ vs D2E",
- "number_of_games": 5,
- "official_stream_url": null,
- "original_scheduled_at": "2021-01-23T17:00:00Z",
- "rescheduled": true,
- "scheduled_at": "2021-01-23T18:00:00Z",
- "slug": "jamal-jabary-vs-down-two-earth-2021-01-23",
- "status": "finished",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
- "embed_url": null,
- "raw_url": null
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament_id": 5412,
- "winner_id": 127356
}, - {
- "begin_at": "2021-01-23T18:05:08Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": "2021-01-23T18:35:10Z",
- "forfeit": false,
- "game_advantage": null,
- "id": 581401,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2021-01-23T18:35:11Z",
- "name": "Winners' Round 1 Match 6: PINE vs 72PC",
- "number_of_games": 5,
- "official_stream_url": null,
- "original_scheduled_at": "2021-01-23T17:00:00Z",
- "rescheduled": true,
- "scheduled_at": "2021-01-23T18:00:00Z",
- "slug": "alpine-esports-vs-72pc-2021-01-23",
- "status": "finished",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
- "embed_url": null,
- "raw_url": null
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament_id": 5412,
- "winner_id": 127357
}, - {
- "begin_at": "2021-01-23T18:11:00Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": "2021-01-23T18:50:11Z",
- "forfeit": false,
- "game_advantage": null,
- "id": 581397,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2021-01-23T18:50:12Z",
- "name": "Winners' Round 1 Match 2: KCP vs Sol",
- "number_of_games": 5,
- "official_stream_url": null,
- "original_scheduled_at": "2021-01-23T17:00:00Z",
- "rescheduled": true,
- "scheduled_at": "2021-01-23T18:00:00Z",
- "slug": "kansas-city-pioneers-vs-sol-2021-01-23",
- "status": "finished",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
- "embed_url": null,
- "raw_url": null
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament_id": 5412,
- "winner_id": 128058
}, - {
- "begin_at": "2021-01-23T18:43:33Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": "2021-01-23T19:26:36Z",
- "forfeit": false,
- "game_advantage": null,
- "id": 581400,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2021-01-23T19:26:36Z",
- "name": "Winners' Round 1 Match 5: XSET vs SUP",
- "number_of_games": 5,
- "official_stream_url": null,
- "original_scheduled_at": "2021-01-23T17:40:00Z",
- "rescheduled": true,
- "scheduled_at": "2021-01-23T18:40:00Z",
- "slug": "xset-vs-sup-2021-01-23",
- "status": "finished",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
- "embed_url": null,
- "raw_url": null
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament_id": 5412,
- "winner_id": 127698
}, - {
- "begin_at": "2021-01-23T18:47:10Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": "2021-01-23T19:17:00Z",
- "forfeit": false,
- "game_advantage": null,
- "id": 581403,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2021-01-23T19:17:01Z",
- "name": "Winners' Round 1 Match 8: SQ vs Empty Space",
- "number_of_games": 5,
- "official_stream_url": null,
- "original_scheduled_at": "2021-01-23T17:40:00Z",
- "rescheduled": true,
- "scheduled_at": "2021-01-23T18:40:00Z",
- "slug": "susquehanna-soniqs-vs-empty-space-2021-01-23",
- "status": "finished",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
- "embed_url": null,
- "raw_url": null
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament_id": 5412,
- "winner_id": 126867
}, - {
- "begin_at": "2021-01-23T18:56:48Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": "2021-01-23T19:25:15Z",
- "forfeit": false,
- "game_advantage": null,
- "id": 581398,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2021-01-23T19:25:16Z",
- "name": "Winners' Round 1 Match 3: EU vs NEF",
- "number_of_games": 5,
- "official_stream_url": null,
- "original_scheduled_at": "2021-01-23T17:40:00Z",
- "rescheduled": true,
- "scheduled_at": "2021-01-23T18:40:00Z",
- "slug": "eunited-vs-nefarious-2021-01-23",
- "status": "finished",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
- "embed_url": null,
- "raw_url": null
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament_id": 5412,
- "winner_id": 126473
}, - {
- "begin_at": "2021-01-23T19:29:25Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": "2021-01-23T19:50:17Z",
- "forfeit": false,
- "game_advantage": null,
- "id": 581402,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2021-01-23T19:50:18Z",
- "name": "Winners' Round 1 Match 7: Loco vs Volt Esports",
- "number_of_games": 5,
- "official_stream_url": null,
- "original_scheduled_at": "2021-01-23T18:20:00Z",
- "rescheduled": true,
- "scheduled_at": "2021-01-23T19:20:00Z",
- "slug": "loco-vs-volt-esports-2021-01-23",
- "status": "finished",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
- "embed_url": null,
- "raw_url": null
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament_id": 5412,
- "winner_id": 128426
}, - {
- "begin_at": "2021-01-23T19:32:43Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": "2021-01-23T19:53:24Z",
- "forfeit": false,
- "game_advantage": null,
- "id": 581399,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2021-01-23T19:53:25Z",
- "name": "Winners' Round 1 Match 4: GHO vs Radiant",
- "number_of_games": 5,
- "official_stream_url": null,
- "original_scheduled_at": "2021-01-23T18:20:00Z",
- "rescheduled": true,
- "scheduled_at": "2021-01-23T19:20:00Z",
- "slug": "ghost-gaming-vs-radiant-2021-01-23",
- "status": "finished",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
- "embed_url": null,
- "raw_url": null
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament_id": 5412,
- "winner_id": 128427
}, - {
- "begin_at": "2021-01-23T19:42:08Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": "2021-01-23T20:05:33Z",
- "forfeit": false,
- "game_advantage": null,
- "id": 581404,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2021-01-23T20:05:34Z",
- "name": "Winners' Round 2 Match 1: NV vs JJ",
- "number_of_games": 5,
- "official_stream_url": null,
- "original_scheduled_at": "2021-01-23T18:20:00Z",
- "rescheduled": true,
- "scheduled_at": "2021-01-23T19:20:00Z",
- "slug": "team-envy-2021-01-23",
- "status": "finished",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
- "embed_url": null,
- "raw_url": null
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament_id": 5412,
- "winner_id": 127360
}, - {
- "begin_at": "2021-01-23T20:02:37Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": "2021-01-23T20:43:49Z",
- "forfeit": false,
- "game_advantage": null,
- "id": 581405,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2021-01-23T20:43:50Z",
- "name": "Winners' Round 2 Match 2: V1 vs Sol",
- "number_of_games": 5,
- "official_stream_url": null,
- "original_scheduled_at": "2021-01-23T19:00:00Z",
- "rescheduled": true,
- "scheduled_at": "2021-01-23T20:00:00Z",
- "slug": "version1-2021-01-23",
- "status": "finished",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
- "embed_url": null,
- "raw_url": null
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament_id": 5412,
- "winner_id": 127697
}, - {
- "begin_at": "2021-01-23T20:02:54Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": "2021-01-23T20:33:20Z",
- "forfeit": false,
- "game_advantage": null,
- "id": 581409,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2021-01-23T20:33:21Z",
- "name": "Winners' Round 2 Match 6: PK vs 72PC",
- "number_of_games": 5,
- "official_stream_url": null,
- "original_scheduled_at": "2021-01-23T19:00:00Z",
- "rescheduled": true,
- "scheduled_at": "2021-01-23T20:00:00Z",
- "slug": "pittsburgh-knights-2021-01-23",
- "status": "finished",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
- "embed_url": null,
- "raw_url": null
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament_id": 5412,
- "winner_id": 126332
}, - {
- "begin_at": "2021-01-23T20:15:50Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": "2021-01-23T21:03:41Z",
- "forfeit": false,
- "game_advantage": null,
- "id": 581406,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2021-01-23T21:03:42Z",
- "name": "Winners' Round 2 Match 3: G2 vs EU",
- "number_of_games": 5,
- "official_stream_url": null,
- "original_scheduled_at": "2021-01-23T19:00:00Z",
- "rescheduled": true,
- "scheduled_at": "2021-01-23T20:00:00Z",
- "slug": "g2-esports-2021-01-23",
- "status": "finished",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
- "embed_url": null,
- "raw_url": null
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament_id": 5412,
- "winner_id": 126299
}, - {
- "begin_at": "2021-01-23T20:43:46Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": "2021-01-23T21:14:24Z",
- "forfeit": false,
- "game_advantage": null,
- "id": 581411,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2021-01-23T21:14:25Z",
- "name": "Winners' Round 2 Match 8: PEEP vs SQ",
- "number_of_games": 5,
- "official_stream_url": null,
- "original_scheduled_at": "2021-01-23T19:40:00Z",
- "rescheduled": true,
- "scheduled_at": "2021-01-23T20:40:00Z",
- "slug": "the-peeps-2021-01-23",
- "status": "finished",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
- "embed_url": null,
- "raw_url": null
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament_id": 5412,
- "winner_id": 126867
}, - {
- "begin_at": "2021-01-23T20:49:41Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": "2021-01-23T21:20:42Z",
- "forfeit": false,
- "game_advantage": null,
- "id": 581407,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2021-01-23T21:20:43Z",
- "name": "Winners' Round 2 Match 4: RGE vs Radiant",
- "number_of_games": 5,
- "official_stream_url": null,
- "original_scheduled_at": "2021-01-23T19:40:00Z",
- "rescheduled": true,
- "scheduled_at": "2021-01-23T20:40:00Z",
- "slug": "rogue-2021-01-23",
- "status": "finished",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
- "embed_url": null,
- "raw_url": null
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament_id": 5412,
- "winner_id": 126302
}, - {
- "begin_at": "2021-01-23T21:04:07Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": "2021-01-23T21:40:59Z",
- "forfeit": false,
- "game_advantage": null,
- "id": 581408,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2021-01-23T21:41:01Z",
- "name": "Winners' Round 2 Match 5: NRG vs XSET",
- "number_of_games": 5,
- "official_stream_url": null,
- "original_scheduled_at": "2021-01-23T19:40:00Z",
- "rescheduled": true,
- "scheduled_at": "2021-01-23T20:40:00Z",
- "slug": "nrg-esports-2021-01-23",
- "status": "finished",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
- "embed_url": null,
- "raw_url": null
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament_id": 5412,
- "winner_id": 126301
}, - {
- "begin_at": "2021-01-23T21:52:41Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": "2021-01-23T22:15:59Z",
- "forfeit": false,
- "game_advantage": null,
- "id": 581410,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2021-01-23T22:16:00Z",
- "name": "Winners' Round 2 Match 7: SSG vs Volt Esports",
- "number_of_games": 5,
- "official_stream_url": null,
- "original_scheduled_at": "2021-01-23T20:20:00Z",
- "rescheduled": true,
- "scheduled_at": "2021-01-23T21:20:00Z",
- "slug": "spacestation-gaming-2021-01-23",
- "status": "finished",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
- "embed_url": null,
- "raw_url": null
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament_id": 5412,
- "winner_id": 126303
}, - {
- "begin_at": "2021-01-24T17:57:14Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": "2021-01-24T18:38:38Z",
- "forfeit": false,
- "game_advantage": null,
- "id": 581420,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2021-01-24T18:38:38Z",
- "name": "Losers Round 1 Match 1: D2E vs XSET",
- "number_of_games": 5,
- "official_stream_url": null,
- "original_scheduled_at": "2021-01-24T17:00:00Z",
- "rescheduled": true,
- "scheduled_at": "2021-01-24T18:00:00Z",
- "slug": "down-two-earth-2021-01-24",
- "status": "finished",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
- "embed_url": null,
- "raw_url": null
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament_id": 5412,
- "winner_id": 127698
}, - {
- "begin_at": "2021-01-24T18:03:40Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": "2021-01-24T18:34:45Z",
- "forfeit": false,
- "game_advantage": null,
- "id": 581424,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2021-01-24T18:34:45Z",
- "name": "Losers Round 1 Match 5: SUP vs JJ",
- "number_of_games": 5,
- "official_stream_url": null,
- "original_scheduled_at": "2021-01-24T17:00:00Z",
- "rescheduled": true,
- "scheduled_at": "2021-01-24T18:00:00Z",
- "slug": "sup-2021-01-24",
- "status": "finished",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
- "embed_url": null,
- "raw_url": null
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament_id": 5412,
- "winner_id": 127356
}, - {
- "begin_at": "2021-01-24T18:39:52Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": "2021-01-24T19:26:37Z",
- "forfeit": false,
- "game_advantage": null,
- "id": 581421,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2021-01-24T19:26:37Z",
- "name": "Losers Round 1 Match 2: KCP vs 72PC",
- "number_of_games": 5,
- "official_stream_url": null,
- "original_scheduled_at": "2021-01-24T17:40:00Z",
- "rescheduled": true,
- "scheduled_at": "2021-01-24T18:40:00Z",
- "slug": "kansas-city-pioneers-2021-01-24",
- "status": "finished",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
- "embed_url": null,
- "raw_url": null
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament_id": 5412,
- "winner_id": 127699
}, - {
- "begin_at": "2021-01-24T18:42:18Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": "2021-01-24T19:02:32Z",
- "forfeit": false,
- "game_advantage": null,
- "id": 581425,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2021-01-24T19:02:33Z",
- "name": "Losers Round 1 Match 6: PINE vs Sol",
- "number_of_games": 5,
- "official_stream_url": null,
- "original_scheduled_at": "2021-01-24T17:40:00Z",
- "rescheduled": true,
- "scheduled_at": "2021-01-24T18:40:00Z",
- "slug": "alpine-esports-2021-01-24",
- "status": "finished",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
- "embed_url": null,
- "raw_url": null
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament_id": 5412,
- "winner_id": 127645
}, - {
- "begin_at": "2021-01-24T19:10:11Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": "2021-01-24T19:47:18Z",
- "forfeit": false,
- "game_advantage": null,
- "id": 581426,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2021-01-24T19:47:18Z",
- "name": "Losers Round 1 Match 7: Loco vs EU",
- "number_of_games": 5,
- "official_stream_url": null,
- "original_scheduled_at": "2021-01-24T18:20:00Z",
- "rescheduled": true,
- "scheduled_at": "2021-01-24T19:20:00Z",
- "slug": "loco-2021-01-24",
- "status": "finished",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
- "embed_url": null,
- "raw_url": null
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament_id": 5412,
- "winner_id": 128060
}, - {
- "begin_at": "2021-01-24T19:30:28Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": "2021-01-24T20:16:27Z",
- "forfeit": false,
- "game_advantage": null,