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.
Get the latest additions.
This endpoint only shows unchanged objects.
integer or object Pagination in the form of | |
per_page | integer [ 1 .. 100 ] Default: 50 Example: per_page=5 Equivalent to |
since | string <date-time> (IncidentModifiedAt) non-empty Filter out older results |
type | Array of any (type_over_AdditionIncidents) non-empty Items Enum: "league" "match" "player" "serie" "team" "tournament" Filter by result type(s) |
Array of VideogameID (integer) or VideogameSlug (string) (videogame_over_AdditionIncidents) non-empty Filter by videogame(s) |
/additions?page[size]=1
[- {
- "change_type": "creation",
- "id": 577536,
- "modified_at": "2020-12-15T04:00:39Z",
- "object": {
- "begin_at": "2020-12-15T12:00:00Z",
- "detailed_stats": false,
- "draw": false,
- "end_at": null,
- "forfeit": false,
- "game_advantage": null,
- "games": [
- {
- "begin_at": null,
- "complete": false,
- "detailed_stats": false,
- "end_at": null,
- "finished": false,
- "forfeit": false,
- "id": 33780,
- "length": null,
- "match_id": 577536,
- "position": 1,
- "status": "not_started",
- "video_url": null,
- "winner": {
- "id": null,
- "type": "Team"
}, - "winner_type": "Team"
}, - {
- "begin_at": null,
- "complete": false,
- "detailed_stats": false,
- "end_at": null,
- "finished": false,
- "forfeit": false,
- "id": 33781,
- "length": null,
- "match_id": 577536,
- "position": 2,
- "status": "not_started",
- "video_url": null,
- "winner": {
- "id": null,
- "type": "Team"
}, - "winner_type": "Team"
}, - {
- "begin_at": null,
- "complete": false,
- "detailed_stats": false,
- "end_at": null,
- "finished": false,
- "forfeit": false,
- "id": 33782,
- "length": null,
- "match_id": 577536,
- "position": 3,
- "status": "not_started",
- "video_url": null,
- "winner": {
- "id": null,
- "type": "Team"
}, - "winner_type": "Team"
}
], - "id": 577536,
- "league": {
- "id": 4507,
- "image_url": null,
- "modified_at": "2020-12-11T18:43:12Z",
- "name": "UFCA Grand League Cup",
- "slug": "cs-go-ufca-grand-league-cup",
}, - "league_id": 4507,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "match_type": "best_of",
- "modified_at": "2020-12-15T04:00:39Z",
- "name": "Izako Boars vs Worst Enemy",
- "number_of_games": 3,
- "opponents": [
- {
- "opponent": {
- "acronym": null,
- "id": 125772,
- "location": "PL",
- "modified_at": "2020-12-12T22:11:50Z",
- "name": "Izako Boars",
- "slug": "izako-boars"
}, - "type": "Team"
}, - {
- "opponent": {
- "acronym": null,
- "id": 128018,
- "location": "RU",
- "modified_at": "2020-12-11T19:18:37Z",
- "name": "Worst Enemy",
- "slug": "worst-enemy"
}, - "type": "Team"
}
], - "original_scheduled_at": "2020-12-15T12:00:00Z",
- "rescheduled": false,
- "results": [
- {
- "score": 0,
- "team_id": 125772
}, - {
- "score": 0,
- "team_id": 128018
}
], - "scheduled_at": "2020-12-15T12:00:00Z",
- "serie": {
- "begin_at": "2020-12-12T15:00:00Z",
- "description": null,
- "end_at": null,
- "full_name": "Cup #1 2020",
- "id": 3189,
- "league_id": 4507,
- "modified_at": "2020-12-11T19:45:43Z",
- "name": "Cup #1",
- "season": null,
- "slug": "cs-go-ufca-grand-league-cup-cup-1-2020",
- "tier": "c",
- "winner_id": null,
- "winner_type": "Team",
- "year": 2020
}, - "serie_id": 3189,
- "slug": "izako-boars-vs-worst-enemy-2020-12-15",
- "status": "not_started",
- "streams": {
- "english": {
}, - "official": {
}, - "russian": {
}
}, - "tournament": {
- "begin_at": "2020-12-14T18:00:00Z",
- "end_at": null,
- "id": 5219,
- "league_id": 4507,
- "live_supported": false,
- "modified_at": "2020-12-14T12:01:39Z",
- "name": "Group B",
- "prizepool": null,
- "serie_id": 3189,
- "slug": "cs-go-ufca-grand-league-cup-cup-1-2020-group-b",
- "winner_id": null,
- "winner_type": "Team"
}, - "tournament_id": 5219,
- "videogame": {
- "id": 3,
- "name": "CS:GO",
- "slug": "cs-go"
}, - "videogame_version": null,
- "winner": null,
- "winner_id": null
}, - "type": "match"
}
]
Get the latest updates.
This endpoint only provides the latest change for an object. It does not keep track of previous changes.
integer or object Pagination in the form of | |
per_page | integer [ 1 .. 100 ] Default: 50 Example: per_page=5 Equivalent to |
since | string <date-time> (IncidentModifiedAt) non-empty Filter out older results |
type | Array of any (type_over_ChangeIncidents) non-empty Items Enum: "league" "match" "player" "serie" "team" "tournament" Filter by result type(s) |
Array of VideogameID (integer) or VideogameSlug (string) (videogame_over_ChangeIncidents) non-empty Filter by videogame(s) |
/changes?page[size]=1
[- {
- "change_type": "update",
- "id": 566614,
- "modified_at": "2020-12-15T13:06:16Z",
- "object": {
- "begin_at": "2020-12-16T13:06:15Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": null,
- "forfeit": false,
- "game_advantage": null,
- "games": [
- {
- "begin_at": null,
- "complete": true,
- "detailed_stats": true,
- "end_at": null,
- "finished": false,
- "forfeit": false,
- "id": 218077,
- "length": null,
- "match_id": 566614,
- "position": 1,
- "status": "not_started",
- "video_url": null,
- "winner": {
- "id": null,
- "type": "Team"
}, - "winner_type": "Team"
}, - {
- "begin_at": null,
- "complete": true,
- "detailed_stats": true,
- "end_at": null,
- "finished": false,
- "forfeit": false,
- "id": 218078,
- "length": null,
- "match_id": 566614,
- "position": 2,
- "status": "not_started",
- "video_url": null,
- "winner": {
- "id": null,
- "type": "Team"
}, - "winner_type": "Team"
}, - {
- "begin_at": null,
- "complete": true,
- "detailed_stats": true,
- "end_at": null,
- "finished": false,
- "forfeit": false,
- "id": 218079,
- "length": null,
- "match_id": 566614,
- "position": 3,
- "status": "not_started",
- "video_url": null,
- "winner": {
- "id": null,
- "type": "Team"
}, - "winner_type": "Team"
}, - {
- "begin_at": null,
- "complete": true,
- "detailed_stats": true,
- "end_at": null,
- "finished": false,
- "forfeit": false,
- "id": 218080,
- "length": null,
- "match_id": 566614,
- "position": 4,
- "status": "not_started",
- "video_url": null,
- "winner": {
- "id": null,
- "type": "Team"
}, - "winner_type": "Team"
}, - {
- "begin_at": null,
- "complete": true,
- "detailed_stats": true,
- "end_at": null,
- "finished": false,
- "forfeit": false,
- "id": 218081,
- "length": null,
- "match_id": 566614,
- "position": 5,
- "status": "not_started",
- "video_url": null,
- "winner": {
- "id": null,
- "type": "Team"
}, - "winner_type": "Team"
}
], - "id": 566614,
- "league": {
- "id": 4197,
- "modified_at": "2019-03-03T01:22:54Z",
- "name": "LEC",
- "slug": "league-of-legends-lec",
- "url": null
}, - "league_id": 4197,
- "live": {
- "opens_at": "2020-12-16T12:51:15Z",
- "supported": true,
- "url": "wss://live.dev.pandascore.co/matches/566614"
}, - "match_type": "best_of",
- "modified_at": "2020-12-15T13:06:16Z",
- "name": "Losers' Round 1: SK vs S04",
- "number_of_games": 5,
- "opponents": [
- {
- "opponent": {
- "acronym": "SK",
- "id": 395,
- "location": "DE",
- "modified_at": "2020-11-19T16:59:02Z",
- "name": "SK Gaming",
- "slug": "sk-gaming"
}, - "type": "Team"
}, - {
- "opponent": {
- "acronym": "S04",
- "id": 204,
- "location": "DE",
- "modified_at": "2020-11-25T15:46:45Z",
- "name": "FC Schalke 04 Esports",
- "slug": "fc-schalke-04"
}, - "type": "Team"
}
], - "original_scheduled_at": "2020-12-16T13:06:15Z",
- "rescheduled": false,
- "results": [
- {
- "score": 0,
- "team_id": 395
}, - {
- "score": 0,
- "team_id": 204
}
], - "scheduled_at": "2020-12-16T13:06:15Z",
- "serie": {
- "begin_at": "2020-06-11T22:00:00Z",
- "description": null,
- "end_at": "2020-09-06T20:00:00Z",
- "full_name": "Summer 2020",
- "id": 2699,
- "league_id": 4197,
- "modified_at": "2020-09-07T00:45:24Z",
- "name": null,
- "season": "Summer",
- "slug": "league-of-legends-lec-summer-2020",
- "tier": "a",
- "winner_id": 88,
- "winner_type": "Team",
- "year": 2020
}, - "serie_id": 2699,
- "slug": "2020-08-23-ef9a99eb-1d13-4fb2-aa88-980c47462c72",
- "status": "not_started",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament": {
- "begin_at": "2020-08-21T16:00:00Z",
- "end_at": null,
- "id": 4497,
- "league_id": 4197,
- "live_supported": true,
- "modified_at": "2020-09-07T00:45:02Z",
- "name": "Playoffs",
- "prizepool": null,
- "serie_id": 2699,
- "slug": "league-of-legends-lec-summer-2020-playoffs",
- "winner_id": 88,
- "winner_type": "Team"
}, - "tournament_id": 4497,
- "videogame": {
- "id": 1,
- "name": "LoL",
- "slug": "league-of-legends"
}, - "videogame_version": {
- "current": false,
- "name": "10.16.1"
}, - "winner": null,
- "winner_id": null
}, - "type": "match"
}
]
Get the latest deleted documents
integer or object Pagination in the form of | |
per_page | integer [ 1 .. 100 ] Default: 50 Example: per_page=5 Equivalent to |
since | string <date-time> (IncidentModifiedAt) non-empty Filter out older results |
type | Array of any (type_over_DeletionIncidents) non-empty Items Enum: "league" "match" "player" "serie" "team" "tournament" Filter by result type(s) |
Array of VideogameID (integer) or VideogameSlug (string) (videogame_over_DeletionIncidents) non-empty Filter by videogame(s) |
/deletions?page[size]=1
[- {
- "change_type": "deletion",
- "id": 28347,
- "modified_at": "2020-08-18T01:59:51Z",
- "object": {
- "deleted_at": "2020-08-18T01:59:51Z",
- "reason": "Merged with 24821",
- "videogame_id": 3
}, - "type": "player"
}
]
Get the latest updates and additions.
This endpoint only provides the latest incident for an object. It does not keep track of previous incidents.
integer or object Pagination in the form of | |
per_page | integer [ 1 .. 100 ] Default: 50 Example: per_page=5 Equivalent to |
since | string <date-time> (IncidentModifiedAt) non-empty Filter out older results |
type | Array of any (type_over_Incidents) non-empty Items Enum: "league" "match" "player" "serie" "team" "tournament" Filter by result type(s) |
Array of VideogameID (integer) or VideogameSlug (string) (videogame_over_Incidents) non-empty Filter by videogame(s) |
/incidents?page[size]=1
[- {
- "change_type": "update",
- "id": 566614,
- "modified_at": "2020-12-15T13:06:16Z",
- "object": {
- "begin_at": "2020-12-16T13:06:15Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": null,
- "forfeit": false,
- "game_advantage": null,
- "games": [
- {
- "begin_at": null,
- "complete": true,
- "detailed_stats": true,
- "end_at": null,
- "finished": false,
- "forfeit": false,
- "id": 218077,
- "length": null,
- "match_id": 566614,
- "position": 1,
- "status": "not_started",
- "video_url": null,
- "winner": {
- "id": null,
- "type": "Team"
}, - "winner_type": "Team"
}, - {
- "begin_at": null,
- "complete": true,
- "detailed_stats": true,
- "end_at": null,
- "finished": false,
- "forfeit": false,
- "id": 218078,
- "length": null,
- "match_id": 566614,
- "position": 2,
- "status": "not_started",
- "video_url": null,
- "winner": {
- "id": null,
- "type": "Team"
}, - "winner_type": "Team"
}, - {
- "begin_at": null,
- "complete": true,
- "detailed_stats": true,
- "end_at": null,
- "finished": false,
- "forfeit": false,
- "id": 218079,
- "length": null,
- "match_id": 566614,
- "position": 3,
- "status": "not_started",
- "video_url": null,
- "winner": {
- "id": null,
- "type": "Team"
}, - "winner_type": "Team"
}, - {
- "begin_at": null,
- "complete": true,
- "detailed_stats": true,
- "end_at": null,
- "finished": false,
- "forfeit": false,
- "id": 218080,
- "length": null,
- "match_id": 566614,
- "position": 4,
- "status": "not_started",
- "video_url": null,
- "winner": {
- "id": null,
- "type": "Team"
}, - "winner_type": "Team"
}, - {
- "begin_at": null,
- "complete": true,
- "detailed_stats": true,
- "end_at": null,
- "finished": false,
- "forfeit": false,
- "id": 218081,
- "length": null,
- "match_id": 566614,
- "position": 5,
- "status": "not_started",
- "video_url": null,
- "winner": {
- "id": null,
- "type": "Team"
}, - "winner_type": "Team"
}
], - "id": 566614,
- "league": {
- "id": 4197,
- "modified_at": "2019-03-03T01:22:54Z",
- "name": "LEC",
- "slug": "league-of-legends-lec",
- "url": null
}, - "league_id": 4197,
- "live": {
- "opens_at": "2020-12-16T12:51:15Z",
- "supported": true,
- "url": "wss://live.dev.pandascore.co/matches/566614"
}, - "match_type": "best_of",
- "modified_at": "2020-12-15T13:06:16Z",
- "name": "Losers' Round 1: SK vs S04",
- "number_of_games": 5,
- "opponents": [
- {
- "opponent": {
- "acronym": "SK",
- "id": 395,
- "location": "DE",
- "modified_at": "2020-11-19T16:59:02Z",
- "name": "SK Gaming",
- "slug": "sk-gaming"
}, - "type": "Team"
}, - {
- "opponent": {
- "acronym": "S04",
- "id": 204,
- "location": "DE",
- "modified_at": "2020-11-25T15:46:45Z",
- "name": "FC Schalke 04 Esports",
- "slug": "fc-schalke-04"
}, - "type": "Team"
}
], - "original_scheduled_at": "2020-12-16T13:06:15Z",
- "rescheduled": false,
- "results": [
- {
- "score": 0,
- "team_id": 395
}, - {
- "score": 0,
- "team_id": 204
}
], - "scheduled_at": "2020-12-16T13:06:15Z",
- "serie": {
- "begin_at": "2020-06-11T22:00:00Z",
- "description": null,
- "end_at": "2020-09-06T20:00:00Z",
- "full_name": "Summer 2020",
- "id": 2699,
- "league_id": 4197,
- "modified_at": "2020-09-07T00:45:24Z",
- "name": null,
- "season": "Summer",
- "slug": "league-of-legends-lec-summer-2020",
- "tier": "a",
- "winner_id": 88,
- "winner_type": "Team",
- "year": 2020
}, - "serie_id": 2699,
- "slug": "2020-08-23-ef9a99eb-1d13-4fb2-aa88-980c47462c72",
- "status": "not_started",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament": {
- "begin_at": "2020-08-21T16:00:00Z",
- "end_at": null,
- "id": 4497,
- "league_id": 4197,
- "live_supported": true,
- "modified_at": "2020-09-07T00:45:02Z",
- "name": "Playoffs",
- "prizepool": null,
- "serie_id": 2699,
- "slug": "league-of-legends-lec-summer-2020-playoffs",
- "winner_id": 88,
- "winner_type": "Team"
}, - "tournament_id": 4497,
- "videogame": {
- "id": 1,
- "name": "LoL",
- "slug": "league-of-legends"
}, - "videogame_version": {
- "current": false,
- "name": "10.16.1"
}, - "winner": null,
- "winner_id": null
}, - "type": "match"
}
]
List leagues
object (filter_over_Leagues) 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_Leagues) Example: range[modified_at]=2019-04-08T17:00:00Z,2019-10-08T22:00:00Z Options to select results within ranges | |
object (search_over_Leagues) Example: search[name]=Contenders Options to search results | |
sort | Array of any (sort_over_Leagues) 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 |
/leagues?page[size]=1
[- {
- "id": 4452,
- "image_url": null,
- "modified_at": "2020-08-11T10:07:11Z",
- "name": "WDNMD Asia Invitational",
- "series": [
- {
- "begin_at": "2020-08-13T06:00:00Z",
- "description": null,
- "end_at": null,
- "full_name": "2020",
- "id": 2907,
- "league_id": 4452,
- "modified_at": "2020-08-11T10:08:23Z",
- "name": null,
- "season": null,
- "slug": "cs-go-wdnmd-asia-invitational-2020",
- "tier": "b",
- "winner_id": null,
- "winner_type": null,
- "year": 2020
}
], - "slug": "cs-go-wdnmd-asia-invitational",
- "url": null,
- "videogame": {
- "current_version": null,
- "id": 3,
- "name": "CS:GO",
- "slug": "cs-go"
}
}
]
Get a single league by ID or by slug
required | LeagueID (integer) or LeagueSlug (string) (LeagueIDOrSlug) A league ID or slug |
/leagues/4199
{- "id": 4199,
- "modified_at": "2020-02-17T12:42:18Z",
- "name": "LLA",
- "series": [
- {
- "begin_at": "2019-01-19T20:00:00Z",
- "description": "Liga Movistar Latinoamérica - Apertura 2019",
- "end_at": "2019-03-26T14:00:00Z",
- "full_name": "Opening 2019",
- "id": 1708,
- "league_id": 4199,
- "modified_at": "2019-09-25T12:37:36Z",
- "name": "",
- "season": "Opening",
- "slug": "league-of-legends-lla-opening-2019",
- "tier": null,
- "winner_id": 147,
- "winner_type": "Team",
- "year": 2019
}, - {
- "begin_at": "2019-06-07T22:00:00Z",
- "description": null,
- "end_at": "2019-08-29T22:00:00Z",
- "full_name": "Closing 2019",
- "id": 1801,
- "league_id": 4199,
- "modified_at": "2019-09-01T22:56:39Z",
- "name": null,
- "season": "Closing",
- "slug": "league-of-legends-lla-opening-2019-799c861e-c33d-42ac-8e89-185de2aadfb4",
- "tier": null,
- "winner_id": 147,
- "winner_type": "Team",
- "year": 2019
}, - {
- "begin_at": "2020-02-14T23:00:00Z",
- "description": null,
- "end_at": "2020-05-03T01:04:00Z",
- "full_name": "Opening 2020",
- "id": 2368,
- "league_id": 4199,
- "modified_at": "2020-05-03T01:06:05Z",
- "name": null,
- "season": "Opening",
- "slug": "league-of-legends-lla-opening-2020",
- "tier": null,
- "winner_id": 124416,
- "winner_type": "Team",
- "year": 2020
}, - {
- "begin_at": "2020-06-19T22:00:00Z",
- "description": null,
- "end_at": null,
- "full_name": "Closing 2020",
- "id": 2733,
- "league_id": 4199,
- "modified_at": "2020-05-31T09:11:36Z",
- "name": null,
- "season": "Closing",
- "slug": "league-of-legends-lla-closing-2020",
- "tier": "b",
- "winner_id": null,
- "winner_type": null,
- "year": 2020
}
], - "slug": "league-of-legends-lla",
- "videogame": {
- "current_version": "10.16.1",
- "id": 1,
- "name": "LoL",
- "slug": "league-of-legends"
}
}
List matches of the given league
required | LeagueID (integer) or LeagueSlug (string) (LeagueIDOrSlug) A league ID or slug |
object (filter_over_Matches) 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_Matches) Example: range[begin_at]=2019-04-08T17:00:00Z,2019-10-08T22:00:00Z Options to select results within ranges | |
object (search_over_Matches) Example: search[name]=Finals Options to search results | |
sort | Array of any (sort_over_Matches) 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 |
/matches?page[size]=1
[- {
- "begin_at": "2020-12-15T09:00:00Z",
- "detailed_stats": false,
- "draw": false,
- "end_at": null,
- "forfeit": false,
- "game_advantage": null,
- "games": [
- {
- "begin_at": null,
- "complete": false,
- "detailed_stats": false,
- "end_at": null,
- "finished": false,
- "forfeit": false,
- "id": 33783,
- "length": null,
- "match_id": 577537,
- "position": 1,
- "status": "not_started",
- "video_url": null,
- "winner": {
- "id": null,
- "type": "Team"
}, - "winner_type": "Team"
}, - {
- "begin_at": null,
- "complete": false,
- "detailed_stats": false,
- "end_at": null,
- "finished": false,
- "forfeit": false,
- "id": 33784,
- "length": null,
- "match_id": 577537,
- "position": 2,
- "status": "not_started",
- "video_url": null,
- "winner": {
- "id": null,
- "type": "Team"
}, - "winner_type": "Team"
}, - {
- "begin_at": null,
- "complete": false,
- "detailed_stats": false,
- "end_at": null,
- "finished": false,
- "forfeit": false,
- "id": 33785,
- "length": null,
- "match_id": 577537,
- "position": 3,
- "status": "not_started",
- "video_url": null,
- "winner": {
- "id": null,
- "type": "Team"
}, - "winner_type": "Team"
}
], - "id": 577537,
- "league": {
- "id": 4507,
- "image_url": null,
- "modified_at": "2020-12-11T18:43:12Z",
- "name": "UFCA Grand League Cup",
- "slug": "cs-go-ufca-grand-league-cup",
}, - "league_id": 4507,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "match_type": "best_of",
- "modified_at": "2020-12-15T04:01:03Z",
- "name": "HauntedFamily vs FATE",
- "number_of_games": 3,
- "opponents": [
- {
- "opponent": {
- "acronym": null,
- "id": 127938,
- "location": null,
- "modified_at": "2020-12-11T19:18:03Z",
- "name": "HauntedFamily",
- "slug": "hauntedfamily"
}, - "type": "Team"
}, - {
- "opponent": {
- "acronym": null,
- "id": 126462,
- "location": "JO",
- "modified_at": "2020-12-11T19:17:44Z",
- "name": "FATE",
- "slug": "fate"
}, - "type": "Team"
}
], - "original_scheduled_at": "2020-12-15T09:00:00Z",
- "rescheduled": false,
- "results": [
- {
- "score": 0,
- "team_id": 127938
}, - {
- "score": 0,
- "team_id": 126462
}
], - "scheduled_at": "2020-12-15T09:00:00Z",
- "serie": {
- "begin_at": "2020-12-12T15:00:00Z",
- "description": null,
- "end_at": null,
- "full_name": "Cup #1 2020",
- "id": 3189,
- "league_id": 4507,
- "modified_at": "2020-12-11T19:45:43Z",
- "name": "Cup #1",
- "season": null,
- "slug": "cs-go-ufca-grand-league-cup-cup-1-2020",
- "tier": "c",
- "winner_id": null,
- "winner_type": "Team",
- "year": 2020
}, - "serie_id": 3189,
- "slug": "hauntedfamily-vs-fate-2020-12-15",
- "status": "not_started",
- "streams": {
- "english": {
}, - "official": {
}, - "russian": {
}
}, - "tournament": {
- "begin_at": "2020-12-14T18:00:00Z",
- "end_at": null,
- "id": 5219,
- "league_id": 4507,
- "live_supported": false,
- "modified_at": "2020-12-14T12:01:39Z",
- "name": "Group B",
- "prizepool": null,
- "serie_id": 3189,
- "slug": "cs-go-ufca-grand-league-cup-cup-1-2020-group-b",
- "winner_id": null,
- "winner_type": "Team"
}, - "tournament_id": 5219,
- "videogame": {
- "id": 3,
- "name": "CS:GO",
- "slug": "cs-go"
}, - "videogame_version": null,
- "winner": null,
- "winner_id": null
}
]
List past matches for the given league
required | LeagueID (integer) or LeagueSlug (string) (LeagueIDOrSlug) A league ID or slug |
object (filter_over_Matches) 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_Matches) Example: range[begin_at]=2019-04-08T17:00:00Z,2019-10-08T22:00:00Z Options to select results within ranges | |
object (search_over_Matches) Example: search[name]=Finals Options to search results | |
sort | Array of any (sort_over_Matches) 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 |
/matches?page[size]=1
[- {
- "begin_at": "2020-12-15T09:00:00Z",
- "detailed_stats": false,
- "draw": false,
- "end_at": null,
- "forfeit": false,
- "game_advantage": null,
- "games": [
- {
- "begin_at": null,
- "complete": false,
- "detailed_stats": false,
- "end_at": null,
- "finished": false,
- "forfeit": false,
- "id": 33783,
- "length": null,
- "match_id": 577537,
- "position": 1,
- "status": "not_started",
- "video_url": null,
- "winner": {
- "id": null,
- "type": "Team"
}, - "winner_type": "Team"
}, - {
- "begin_at": null,
- "complete": false,
- "detailed_stats": false,
- "end_at": null,
- "finished": false,
- "forfeit": false,
- "id": 33784,
- "length": null,
- "match_id": 577537,
- "position": 2,
- "status": "not_started",
- "video_url": null,
- "winner": {
- "id": null,
- "type": "Team"
}, - "winner_type": "Team"
}, - {
- "begin_at": null,
- "complete": false,
- "detailed_stats": false,
- "end_at": null,
- "finished": false,
- "forfeit": false,
- "id": 33785,
- "length": null,
- "match_id": 577537,
- "position": 3,
- "status": "not_started",
- "video_url": null,
- "winner": {
- "id": null,
- "type": "Team"
}, - "winner_type": "Team"
}
], - "id": 577537,
- "league": {
- "id": 4507,
- "image_url": null,
- "modified_at": "2020-12-11T18:43:12Z",
- "name": "UFCA Grand League Cup",
- "slug": "cs-go-ufca-grand-league-cup",
}, - "league_id": 4507,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "match_type": "best_of",
- "modified_at": "2020-12-15T04:01:03Z",
- "name": "HauntedFamily vs FATE",
- "number_of_games": 3,
- "opponents": [
- {
- "opponent": {
- "acronym": null,
- "id": 127938,
- "location": null,
- "modified_at": "2020-12-11T19:18:03Z",
- "name": "HauntedFamily",
- "slug": "hauntedfamily"
}, - "type": "Team"
}, - {
- "opponent": {
- "acronym": null,
- "id": 126462,
- "location": "JO",
- "modified_at": "2020-12-11T19:17:44Z",
- "name": "FATE",
- "slug": "fate"
}, - "type": "Team"
}
], - "original_scheduled_at": "2020-12-15T09:00:00Z",
- "rescheduled": false,
- "results": [
- {
- "score": 0,
- "team_id": 127938
}, - {
- "score": 0,
- "team_id": 126462
}
], - "scheduled_at": "2020-12-15T09:00:00Z",
- "serie": {
- "begin_at": "2020-12-12T15:00:00Z",
- "description": null,
- "end_at": null,
- "full_name": "Cup #1 2020",
- "id": 3189,
- "league_id": 4507,
- "modified_at": "2020-12-11T19:45:43Z",
- "name": "Cup #1",
- "season": null,
- "slug": "cs-go-ufca-grand-league-cup-cup-1-2020",
- "tier": "c",
- "winner_id": null,
- "winner_type": "Team",
- "year": 2020
}, - "serie_id": 3189,
- "slug": "hauntedfamily-vs-fate-2020-12-15",
- "status": "not_started",
- "streams": {
- "english": {
}, - "official": {
}, - "russian": {
}
}, - "tournament": {
- "begin_at": "2020-12-14T18:00:00Z",
- "end_at": null,
- "id": 5219,
- "league_id": 4507,
- "live_supported": false,
- "modified_at": "2020-12-14T12:01:39Z",
- "name": "Group B",
- "prizepool": null,
- "serie_id": 3189,
- "slug": "cs-go-ufca-grand-league-cup-cup-1-2020-group-b",
- "winner_id": null,
- "winner_type": "Team"
}, - "tournament_id": 5219,
- "videogame": {
- "id": 3,
- "name": "CS:GO",
- "slug": "cs-go"
}, - "videogame_version": null,
- "winner": null,
- "winner_id": null
}
]
List currently running matches for the given league
required | LeagueID (integer) or LeagueSlug (string) (LeagueIDOrSlug) A league ID or slug |
object (filter_over_Matches) 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_Matches) Example: range[begin_at]=2019-04-08T17:00:00Z,2019-10-08T22:00:00Z Options to select results within ranges | |
object (search_over_Matches) Example: search[name]=Finals Options to search results | |
sort | Array of any (sort_over_Matches) 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 |
/matches?page[size]=1
[- {
- "begin_at": "2020-12-15T09:00:00Z",
- "detailed_stats": false,
- "draw": false,
- "end_at": null,
- "forfeit": false,
- "game_advantage": null,
- "games": [
- {
- "begin_at": null,
- "complete": false,
- "detailed_stats": false,
- "end_at": null,
- "finished": false,
- "forfeit": false,
- "id": 33783,
- "length": null,
- "match_id": 577537,
- "position": 1,
- "status": "not_started",
- "video_url": null,
- "winner": {
- "id": null,
- "type": "Team"
}, - "winner_type": "Team"
}, - {
- "begin_at": null,
- "complete": false,
- "detailed_stats": false,
- "end_at": null,
- "finished": false,
- "forfeit": false,
- "id": 33784,
- "length": null,
- "match_id": 577537,
- "position": 2,
- "status": "not_started",
- "video_url": null,
- "winner": {
- "id": null,
- "type": "Team"
}, - "winner_type": "Team"
}, - {
- "begin_at": null,
- "complete": false,
- "detailed_stats": false,
- "end_at": null,
- "finished": false,
- "forfeit": false,
- "id": 33785,
- "length": null,
- "match_id": 577537,
- "position": 3,
- "status": "not_started",
- "video_url": null,
- "winner": {
- "id": null,
- "type": "Team"
}, - "winner_type": "Team"
}
], - "id": 577537,
- "league": {
- "id": 4507,
- "image_url": null,
- "modified_at": "2020-12-11T18:43:12Z",
- "name": "UFCA Grand League Cup",
- "slug": "cs-go-ufca-grand-league-cup",
}, - "league_id": 4507,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "match_type": "best_of",
- "modified_at": "2020-12-15T04:01:03Z",
- "name": "HauntedFamily vs FATE",
- "number_of_games": 3,
- "opponents": [
- {
- "opponent": {
- "acronym": null,
- "id": 127938,
- "location": null,
- "modified_at": "2020-12-11T19:18:03Z",
- "name": "HauntedFamily",
- "slug": "hauntedfamily"
}, - "type": "Team"
}, - {
- "opponent": {
- "acronym": null,
- "id": 126462,
- "location": "JO",
- "modified_at": "2020-12-11T19:17:44Z",
- "name": "FATE",
- "slug": "fate"
}, - "type": "Team"
}
], - "original_scheduled_at": "2020-12-15T09:00:00Z",
- "rescheduled": false,
- "results": [
- {
- "score": 0,
- "team_id": 127938
}, - {
- "score": 0,
- "team_id": 126462
}
], - "scheduled_at": "2020-12-15T09:00:00Z",
- "serie": {
- "begin_at": "2020-12-12T15:00:00Z",
- "description": null,
- "end_at": null,
- "full_name": "Cup #1 2020",
- "id": 3189,
- "league_id": 4507,
- "modified_at": "2020-12-11T19:45:43Z",
- "name": "Cup #1",
- "season": null,
- "slug": "cs-go-ufca-grand-league-cup-cup-1-2020",
- "tier": "c",
- "winner_id": null,
- "winner_type": "Team",
- "year": 2020
}, - "serie_id": 3189,
- "slug": "hauntedfamily-vs-fate-2020-12-15",
- "status": "not_started",
- "streams": {
- "english": {
}, - "official": {
}, - "russian": {
}
}, - "tournament": {
- "begin_at": "2020-12-14T18:00:00Z",
- "end_at": null,
- "id": 5219,
- "league_id": 4507,
- "live_supported": false,
- "modified_at": "2020-12-14T12:01:39Z",
- "name": "Group B",
- "prizepool": null,
- "serie_id": 3189,
- "slug": "cs-go-ufca-grand-league-cup-cup-1-2020-group-b",
- "winner_id": null,
- "winner_type": "Team"
}, - "tournament_id": 5219,
- "videogame": {
- "id": 3,
- "name": "CS:GO",
- "slug": "cs-go"
}, - "videogame_version": null,
- "winner": null,
- "winner_id": null
}
]
List upcoming matches for the given league
required | LeagueID (integer) or LeagueSlug (string) (LeagueIDOrSlug) A league ID or slug |
object (filter_over_Matches) 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_Matches) Example: range[begin_at]=2019-04-08T17:00:00Z,2019-10-08T22:00:00Z Options to select results within ranges | |
object (search_over_Matches) Example: search[name]=Finals Options to search results | |
sort | Array of any (sort_over_Matches) 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 |
/matches?page[size]=1
[- {
- "begin_at": "2020-12-15T09:00:00Z",
- "detailed_stats": false,
- "draw": false,
- "end_at": null,
- "forfeit": false,
- "game_advantage": null,
- "games": [
- {
- "begin_at": null,
- "complete": false,
- "detailed_stats": false,
- "end_at": null,
- "finished": false,
- "forfeit": false,
- "id": 33783,
- "length": null,
- "match_id": 577537,
- "position": 1,
- "status": "not_started",
- "video_url": null,
- "winner": {
- "id": null,
- "type": "Team"
}, - "winner_type": "Team"
}, - {
- "begin_at": null,
- "complete": false,
- "detailed_stats": false,
- "end_at": null,
- "finished": false,
- "forfeit": false,
- "id": 33784,
- "length": null,
- "match_id": 577537,
- "position": 2,
- "status": "not_started",
- "video_url": null,
- "winner": {
- "id": null,
- "type": "Team"
}, - "winner_type": "Team"
}, - {
- "begin_at": null,
- "complete": false,
- "detailed_stats": false,
- "end_at": null,
- "finished": false,
- "forfeit": false,
- "id": 33785,
- "length": null,
- "match_id": 577537,
- "position": 3,
- "status": "not_started",
- "video_url": null,
- "winner": {
- "id": null,
- "type": "Team"
}, - "winner_type": "Team"
}
], - "id": 577537,
- "league": {
- "id": 4507,
- "image_url": null,
- "modified_at": "2020-12-11T18:43:12Z",
- "name": "UFCA Grand League Cup",
- "slug": "cs-go-ufca-grand-league-cup",
}, - "league_id": 4507,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "match_type": "best_of",
- "modified_at": "2020-12-15T04:01:03Z",
- "name": "HauntedFamily vs FATE",
- "number_of_games": 3,
- "opponents": [
- {
- "opponent": {
- "acronym": null,
- "id": 127938,
- "location": null,
- "modified_at": "2020-12-11T19:18:03Z",
- "name": "HauntedFamily",
- "slug": "hauntedfamily"
}, - "type": "Team"
}, - {
- "opponent": {
- "acronym": null,
- "id": 126462,
- "location": "JO",
- "modified_at": "2020-12-11T19:17:44Z",
- "name": "FATE",
- "slug": "fate"
}, - "type": "Team"
}
], - "original_scheduled_at": "2020-12-15T09:00:00Z",
- "rescheduled": false,
- "results": [
- {
- "score": 0,
- "team_id": 127938
}, - {
- "score": 0,
- "team_id": 126462
}
], - "scheduled_at": "2020-12-15T09:00:00Z",
- "serie": {
- "begin_at": "2020-12-12T15:00:00Z",
- "description": null,
- "end_at": null,
- "full_name": "Cup #1 2020",
- "id": 3189,
- "league_id": 4507,
- "modified_at": "2020-12-11T19:45:43Z",
- "name": "Cup #1",
- "season": null,
- "slug": "cs-go-ufca-grand-league-cup-cup-1-2020",
- "tier": "c",
- "winner_id": null,
- "winner_type": "Team",
- "year": 2020
}, - "serie_id": 3189,
- "slug": "hauntedfamily-vs-fate-2020-12-15",
- "status": "not_started",
- "streams": {
- "english": {
}, - "official": {
}, - "russian": {
}
}, - "tournament": {
- "begin_at": "2020-12-14T18:00:00Z",
- "end_at": null,
- "id": 5219,
- "league_id": 4507,
- "live_supported": false,
- "modified_at": "2020-12-14T12:01:39Z",
- "name": "Group B",
- "prizepool": null,
- "serie_id": 3189,
- "slug": "cs-go-ufca-grand-league-cup-cup-1-2020-group-b",
- "winner_id": null,
- "winner_type": "Team"
}, - "tournament_id": 5219,
- "videogame": {
- "id": 3,
- "name": "CS:GO",
- "slug": "cs-go"
}, - "videogame_version": null,
- "winner": null,
- "winner_id": null
}
]
List series for the given league
required | LeagueID (integer) or LeagueSlug (string) (LeagueIDOrSlug) A league ID or slug |
object (filter_over_Series) 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_Series) Example: range[begin_at]=2019-04-08T17:00:00Z,2019-10-08T22:00:00Z Options to select results within ranges | |
object (search_over_Series) Example: search[slug]=lck Options to search results | |
sort | Array of any (sort_over_Series) 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 |
/series?page[size]=1
[- {
- "begin_at": "2020-08-20T16:00:00Z",
- "description": null,
- "end_at": "2020-08-24T22:00:00Z",
- "full_name": "Malta Vibes: Week 8 2020",
- "id": 2924,
- "league": {
- "id": 4431,
- "image_url": null,
- "modified_at": "2020-06-28T05:51:37Z",
- "name": "Eden Esports",
- "slug": "cs-go-eden-esports",
- "url": null
}, - "league_id": 4431,
- "modified_at": "2020-08-18T15:47:01Z",
- "name": "Malta Vibes: Week 8",
- "season": null,
- "slug": "cs-go-eden-esports-malta-vibes-week-8-2020",
- "tier": "b",
- "tournaments": [
- {
- "begin_at": "2020-08-20T16:00:00Z",
- "end_at": "2020-08-20T23:00:00Z",
- "id": 4650,
- "league_id": 4431,
- "live_supported": false,
- "modified_at": "2020-08-18T15:48:00Z",
- "name": "Group A",
- "prizepool": null,
- "serie_id": 2924,
- "slug": "cs-go-eden-esports-malta-vibes-week-8-2020-group-a",
- "winner_id": null,
- "winner_type": "Team"
}, - {
- "begin_at": "2020-08-21T16:00:00Z",
- "end_at": "2020-08-21T23:00:00Z",
- "id": 4651,
- "league_id": 4431,
- "live_supported": false,
- "modified_at": "2020-08-18T15:50:42Z",
- "name": "Group B",
- "prizepool": null,
- "serie_id": 2924,
- "slug": "cs-go-eden-esports-malta-vibes-week-8-2020-group-b",
- "winner_id": null,
- "winner_type": "Team"
}, - {
- "begin_at": "2020-08-22T08:00:00Z",
- "end_at": "2020-08-22T15:00:00Z",
- "id": 4652,
- "league_id": 4431,
- "live_supported": false,
- "modified_at": "2020-08-18T15:52:54Z",
- "name": "Group C",
- "prizepool": null,
- "serie_id": 2924,
- "slug": "cs-go-eden-esports-malta-vibes-week-8-2020-group-c",
- "winner_id": null,
- "winner_type": "Team"
}, - {
- "begin_at": "2020-08-22T15:00:00Z",
- "end_at": "2020-08-22T22:00:00Z",
- "id": 4653,
- "league_id": 4431,
- "live_supported": false,
- "modified_at": "2020-08-18T15:56:51Z",
- "name": "Group D",
- "prizepool": null,
- "serie_id": 2924,
- "slug": "cs-go-eden-esports-malta-vibes-week-8-2020-group-d",
- "winner_id": null,
- "winner_type": "Team"
}, - {
- "begin_at": "2020-08-23T08:00:00Z",
- "end_at": "2020-08-24T22:00:00Z",
- "id": 4654,
- "league_id": 4431,
- "live_supported": false,
- "modified_at": "2020-08-18T15:59:02Z",
- "name": "Playoffs",
- "prizepool": null,
- "serie_id": 2924,
- "slug": "cs-go-eden-esports-malta-vibes-week-8-2020-playoffs",
- "winner_id": null,
- "winner_type": "Team"
}
], - "videogame": {
- "id": 3,
- "name": "CS:GO",
- "slug": "cs-go"
}, - "winner_id": null,
- "winner_type": null,
- "year": 2020
}
]
List tournaments of the given league
required | LeagueID (integer) or LeagueSlug (string) (LeagueIDOrSlug) A league ID or slug |
object (filter_over_ShortTournaments) 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_ShortTournaments) Example: range[begin_at]=2019-04-08T17:00:00Z,2019-10-08T22:00:00Z Options to select results within ranges | |
object (search_over_ShortTournaments) Example: search[name]=group Options to search results | |
sort | Array of any (sort_over_ShortTournaments) 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 |
/tournaments?page[size]=1
[- {
- "begin_at": "2020-12-15T12:30:00Z",
- "end_at": null,
- "id": 5236,
- "league": {
- "id": 4499,
- "image_url": null,
- "modified_at": "2020-11-30T12:34:02Z",
- "name": "Moon Studio Carnival Cup",
- "slug": "dota-2-moon-studio-carnival-cup",
- "url": null
}, - "league_id": 4499,
- "live_supported": false,
- "matches": [
- {
- "begin_at": "2020-12-15T10:00:00Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": null,
- "forfeit": false,
- "game_advantage": null,
- "id": 577514,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2020-12-15T00:38:14Z",
- "name": "Upper Bracket Round 1 Match 2: Motivate.Trust Gaming vs LBZS",
- "number_of_games": 3,
- "official_stream_url": null,
- "original_scheduled_at": "2020-12-16T10:00:00Z",
- "rescheduled": true,
- "scheduled_at": "2020-12-15T10:00:00Z",
- "slug": "motivate-trust-gaming-vs-lbzs-2020-12-16",
- "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": 5236,
- "winner_id": null
}, - {
- "begin_at": "2020-12-15T12:30:00Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": null,
- "forfeit": false,
- "game_advantage": null,
- "id": 577511,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2020-12-14T14:29:45Z",
- "name": "Lower Bracket Round 1 Match 1: Spade vs XctN",
- "number_of_games": 3,
- "official_stream_url": null,
- "original_scheduled_at": "2020-12-15T12:30:00Z",
- "rescheduled": false,
- "scheduled_at": "2020-12-15T12:30:00Z",
- "slug": "spade-vs-execration-2020-12-15",
- "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": 5236,
- "winner_id": null
}, - {
- "begin_at": "2020-12-15T12:41:02Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": null,
- "forfeit": false,
- "game_advantage": 127651,
- "id": 577512,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2020-12-15T12:41:03Z",
- "name": "Lower Bracket Round 1 Match 2: GXR vs iG.V",
- "number_of_games": 3,
- "official_stream_url": null,
- "original_scheduled_at": "2020-12-15T07:00:00Z",
- "rescheduled": false,
- "scheduled_at": "2020-12-15T07:00:00Z",
- "slug": "galaxy-racer-vs-ig-vitality-2020-12-15",
- "status": "running",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
- "embed_url": null,
- "raw_url": null
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament_id": 5236,
- "winner_id": null
}, - {
- "begin_at": "2020-12-16T08:30:00Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": null,
- "forfeit": false,
- "game_advantage": null,
- "id": 577513,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2020-12-14T14:31:14Z",
- "name": "Upper Bracket Round 1 Match 1: MagMa vs neon",
- "number_of_games": 3,
- "official_stream_url": null,
- "original_scheduled_at": "2020-12-16T08:30:00Z",
- "rescheduled": false,
- "scheduled_at": "2020-12-16T08:30:00Z",
- "slug": "magma-vs-neon-esports-2020-12-16",
- "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": 5236,
- "winner_id": null
}
], - "modified_at": "2020-12-14T17:58:53Z",
- "name": "Playoffs",
- "prizepool": null,
- "serie": {
- "begin_at": "2020-12-01T05:00:00Z",
- "description": null,
- "end_at": null,
- "full_name": "2020",
- "id": 3154,
- "league_id": 4499,
- "modified_at": "2020-11-30T14:32:02Z",
- "name": null,
- "season": null,
- "slug": "dota-2-moon-studio-carnival-cup-2020",
- "tier": "d",
- "winner_id": null,
- "winner_type": null,
- "year": 2020
}, - "serie_id": 3154,
- "slug": "dota-2-moon-studio-carnival-cup-2020-playoffs",
- "teams": [
- {
- "acronym": "iG.V",
- "id": 1650,
- "location": "CN",
- "modified_at": "2020-12-14T10:45:26Z",
- "name": "iG.Vitality",
- "slug": "ig-vitality"
}, - {
- "acronym": "XctN",
- "id": 1660,
- "location": "PH",
- "modified_at": "2020-12-14T22:24:12Z",
- "name": "Execration",
- "slug": "execration"
}, - {
- "acronym": " neon",
- "id": 2061,
- "location": "PH",
- "modified_at": "2020-12-14T16:06:49Z",
- "name": "Neon Esports",
- "slug": "neon-esports"
}, - {
- "acronym": null,
- "id": 126848,
- "location": "TH",
- "modified_at": "2020-12-14T16:09:03Z",
- "name": "Motivate.Trust Gaming",
- "slug": "motivade-trust-gaming"
}, - {
- "acronym": "GXR",
- "id": 127651,
- "location": "AE",
- "modified_at": "2020-12-10T12:32:54Z",
- "name": "Galaxy Racer",
- "slug": "galaxy-racer-esports"
}, - {
- "acronym": null,
- "id": 127867,
- "location": "CN",
- "modified_at": "2020-12-14T13:03:10Z",
- "name": "MagMa",
- "slug": "magma"
}, - {
- "acronym": null,
- "id": 127872,
- "location": "CN",
- "modified_at": "2020-12-14T07:23:14Z",
- "name": "LBZS",
- "slug": "lbzs"
}, - {
- "acronym": null,
- "id": 128082,
- "image_url": null,
- "location": null,
- "modified_at": "2020-12-06T04:35:38Z",
- "name": "Spade",
- "slug": "spade"
}
], - "videogame": {
- "id": 4,
- "name": "Dota 2",
- "slug": "dota-2"
}, - "winner_id": null,
- "winner_type": "Team"
}
]
List series
object (filter_over_Series) 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_Series) Example: range[begin_at]=2019-04-08T17:00:00Z,2019-10-08T22:00:00Z Options to select results within ranges | |
object (search_over_Series) Example: search[slug]=lck Options to search results | |
sort | Array of any (sort_over_Series) 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 |
/series?page[size]=1
[- {
- "begin_at": "2020-08-20T16:00:00Z",
- "description": null,
- "end_at": "2020-08-24T22:00:00Z",
- "full_name": "Malta Vibes: Week 8 2020",
- "id": 2924,
- "league": {
- "id": 4431,
- "image_url": null,
- "modified_at": "2020-06-28T05:51:37Z",
- "name": "Eden Esports",
- "slug": "cs-go-eden-esports",
- "url": null
}, - "league_id": 4431,
- "modified_at": "2020-08-18T15:47:01Z",
- "name": "Malta Vibes: Week 8",
- "season": null,
- "slug": "cs-go-eden-esports-malta-vibes-week-8-2020",
- "tier": "b",
- "tournaments": [
- {
- "begin_at": "2020-08-20T16:00:00Z",
- "end_at": "2020-08-20T23:00:00Z",
- "id": 4650,
- "league_id": 4431,
- "live_supported": false,
- "modified_at": "2020-08-18T15:48:00Z",
- "name": "Group A",
- "prizepool": null,
- "serie_id": 2924,
- "slug": "cs-go-eden-esports-malta-vibes-week-8-2020-group-a",
- "winner_id": null,
- "winner_type": "Team"
}, - {
- "begin_at": "2020-08-21T16:00:00Z",
- "end_at": "2020-08-21T23:00:00Z",
- "id": 4651,
- "league_id": 4431,
- "live_supported": false,
- "modified_at": "2020-08-18T15:50:42Z",
- "name": "Group B",
- "prizepool": null,
- "serie_id": 2924,
- "slug": "cs-go-eden-esports-malta-vibes-week-8-2020-group-b",
- "winner_id": null,
- "winner_type": "Team"
}, - {
- "begin_at": "2020-08-22T08:00:00Z",
- "end_at": "2020-08-22T15:00:00Z",
- "id": 4652,
- "league_id": 4431,
- "live_supported": false,
- "modified_at": "2020-08-18T15:52:54Z",
- "name": "Group C",
- "prizepool": null,
- "serie_id": 2924,
- "slug": "cs-go-eden-esports-malta-vibes-week-8-2020-group-c",
- "winner_id": null,
- "winner_type": "Team"
}, - {
- "begin_at": "2020-08-22T15:00:00Z",
- "end_at": "2020-08-22T22:00:00Z",
- "id": 4653,
- "league_id": 4431,
- "live_supported": false,
- "modified_at": "2020-08-18T15:56:51Z",
- "name": "Group D",
- "prizepool": null,
- "serie_id": 2924,
- "slug": "cs-go-eden-esports-malta-vibes-week-8-2020-group-d",
- "winner_id": null,
- "winner_type": "Team"
}, - {
- "begin_at": "2020-08-23T08:00:00Z",
- "end_at": "2020-08-24T22:00:00Z",
- "id": 4654,
- "league_id": 4431,
- "live_supported": false,
- "modified_at": "2020-08-18T15:59:02Z",
- "name": "Playoffs",
- "prizepool": null,
- "serie_id": 2924,
- "slug": "cs-go-eden-esports-malta-vibes-week-8-2020-playoffs",
- "winner_id": null,
- "winner_type": "Team"
}
], - "videogame": {
- "id": 3,
- "name": "CS:GO",
- "slug": "cs-go"
}, - "winner_id": null,
- "winner_type": null,
- "year": 2020
}
]
List past series
object (filter_over_Series) 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_Series) Example: range[begin_at]=2019-04-08T17:00:00Z,2019-10-08T22:00:00Z Options to select results within ranges | |
object (search_over_Series) Example: search[slug]=lck Options to search results | |
sort | Array of any (sort_over_Series) 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 |
/series?page[size]=1
[- {
- "begin_at": "2020-08-20T16:00:00Z",
- "description": null,
- "end_at": "2020-08-24T22:00:00Z",
- "full_name": "Malta Vibes: Week 8 2020",
- "id": 2924,
- "league": {
- "id": 4431,
- "image_url": null,
- "modified_at": "2020-06-28T05:51:37Z",
- "name": "Eden Esports",
- "slug": "cs-go-eden-esports",
- "url": null
}, - "league_id": 4431,
- "modified_at": "2020-08-18T15:47:01Z",
- "name": "Malta Vibes: Week 8",
- "season": null,
- "slug": "cs-go-eden-esports-malta-vibes-week-8-2020",
- "tier": "b",
- "tournaments": [
- {
- "begin_at": "2020-08-20T16:00:00Z",
- "end_at": "2020-08-20T23:00:00Z",
- "id": 4650,
- "league_id": 4431,
- "live_supported": false,
- "modified_at": "2020-08-18T15:48:00Z",
- "name": "Group A",
- "prizepool": null,
- "serie_id": 2924,
- "slug": "cs-go-eden-esports-malta-vibes-week-8-2020-group-a",
- "winner_id": null,
- "winner_type": "Team"
}, - {
- "begin_at": "2020-08-21T16:00:00Z",
- "end_at": "2020-08-21T23:00:00Z",
- "id": 4651,
- "league_id": 4431,
- "live_supported": false,
- "modified_at": "2020-08-18T15:50:42Z",
- "name": "Group B",
- "prizepool": null,
- "serie_id": 2924,
- "slug": "cs-go-eden-esports-malta-vibes-week-8-2020-group-b",
- "winner_id": null,
- "winner_type": "Team"
}, - {
- "begin_at": "2020-08-22T08:00:00Z",
- "end_at": "2020-08-22T15:00:00Z",
- "id": 4652,
- "league_id": 4431,
- "live_supported": false,
- "modified_at": "2020-08-18T15:52:54Z",
- "name": "Group C",
- "prizepool": null,
- "serie_id": 2924,
- "slug": "cs-go-eden-esports-malta-vibes-week-8-2020-group-c",
- "winner_id": null,
- "winner_type": "Team"
}, - {
- "begin_at": "2020-08-22T15:00:00Z",
- "end_at": "2020-08-22T22:00:00Z",
- "id": 4653,
- "league_id": 4431,
- "live_supported": false,
- "modified_at": "2020-08-18T15:56:51Z",
- "name": "Group D",
- "prizepool": null,
- "serie_id": 2924,
- "slug": "cs-go-eden-esports-malta-vibes-week-8-2020-group-d",
- "winner_id": null,
- "winner_type": "Team"
}, - {
- "begin_at": "2020-08-23T08:00:00Z",
- "end_at": "2020-08-24T22:00:00Z",
- "id": 4654,
- "league_id": 4431,
- "live_supported": false,
- "modified_at": "2020-08-18T15:59:02Z",
- "name": "Playoffs",
- "prizepool": null,
- "serie_id": 2924,
- "slug": "cs-go-eden-esports-malta-vibes-week-8-2020-playoffs",
- "winner_id": null,
- "winner_type": "Team"
}
], - "videogame": {
- "id": 3,
- "name": "CS:GO",
- "slug": "cs-go"
}, - "winner_id": null,
- "winner_type": null,
- "year": 2020
}
]
List currently running series
object (filter_over_Series) 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_Series) Example: range[begin_at]=2019-04-08T17:00:00Z,2019-10-08T22:00:00Z Options to select results within ranges | |
object (search_over_Series) Example: search[slug]=lck Options to search results | |
sort | Array of any (sort_over_Series) 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 |
/series?page[size]=1
[- {
- "begin_at": "2020-08-20T16:00:00Z",
- "description": null,
- "end_at": "2020-08-24T22:00:00Z",
- "full_name": "Malta Vibes: Week 8 2020",
- "id": 2924,
- "league": {
- "id": 4431,
- "image_url": null,
- "modified_at": "2020-06-28T05:51:37Z",
- "name": "Eden Esports",
- "slug": "cs-go-eden-esports",
- "url": null
}, - "league_id": 4431,
- "modified_at": "2020-08-18T15:47:01Z",
- "name": "Malta Vibes: Week 8",
- "season": null,
- "slug": "cs-go-eden-esports-malta-vibes-week-8-2020",
- "tier": "b",
- "tournaments": [
- {
- "begin_at": "2020-08-20T16:00:00Z",
- "end_at": "2020-08-20T23:00:00Z",
- "id": 4650,
- "league_id": 4431,
- "live_supported": false,
- "modified_at": "2020-08-18T15:48:00Z",
- "name": "Group A",
- "prizepool": null,
- "serie_id": 2924,
- "slug": "cs-go-eden-esports-malta-vibes-week-8-2020-group-a",
- "winner_id": null,
- "winner_type": "Team"
}, - {
- "begin_at": "2020-08-21T16:00:00Z",
- "end_at": "2020-08-21T23:00:00Z",
- "id": 4651,
- "league_id": 4431,
- "live_supported": false,
- "modified_at": "2020-08-18T15:50:42Z",
- "name": "Group B",
- "prizepool": null,
- "serie_id": 2924,
- "slug": "cs-go-eden-esports-malta-vibes-week-8-2020-group-b",
- "winner_id": null,
- "winner_type": "Team"
}, - {
- "begin_at": "2020-08-22T08:00:00Z",
- "end_at": "2020-08-22T15:00:00Z",
- "id": 4652,
- "league_id": 4431,
- "live_supported": false,
- "modified_at": "2020-08-18T15:52:54Z",
- "name": "Group C",
- "prizepool": null,
- "serie_id": 2924,
- "slug": "cs-go-eden-esports-malta-vibes-week-8-2020-group-c",
- "winner_id": null,
- "winner_type": "Team"
}, - {
- "begin_at": "2020-08-22T15:00:00Z",
- "end_at": "2020-08-22T22:00:00Z",
- "id": 4653,
- "league_id": 4431,
- "live_supported": false,
- "modified_at": "2020-08-18T15:56:51Z",
- "name": "Group D",
- "prizepool": null,
- "serie_id": 2924,
- "slug": "cs-go-eden-esports-malta-vibes-week-8-2020-group-d",
- "winner_id": null,
- "winner_type": "Team"
}, - {
- "begin_at": "2020-08-23T08:00:00Z",
- "end_at": "2020-08-24T22:00:00Z",
- "id": 4654,
- "league_id": 4431,
- "live_supported": false,
- "modified_at": "2020-08-18T15:59:02Z",
- "name": "Playoffs",
- "prizepool": null,
- "serie_id": 2924,
- "slug": "cs-go-eden-esports-malta-vibes-week-8-2020-playoffs",
- "winner_id": null,
- "winner_type": "Team"
}
], - "videogame": {
- "id": 3,
- "name": "CS:GO",
- "slug": "cs-go"
}, - "winner_id": null,
- "winner_type": null,
- "year": 2020
}
]
List upcoming series
object (filter_over_Series) 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_Series) Example: range[begin_at]=2019-04-08T17:00:00Z,2019-10-08T22:00:00Z Options to select results within ranges | |
object (search_over_Series) Example: search[slug]=lck Options to search results | |
sort | Array of any (sort_over_Series) 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 |
/series?page[size]=1
[- {
- "begin_at": "2020-08-20T16:00:00Z",
- "description": null,
- "end_at": "2020-08-24T22:00:00Z",
- "full_name": "Malta Vibes: Week 8 2020",
- "id": 2924,
- "league": {
- "id": 4431,
- "image_url": null,
- "modified_at": "2020-06-28T05:51:37Z",
- "name": "Eden Esports",
- "slug": "cs-go-eden-esports",
- "url": null
}, - "league_id": 4431,
- "modified_at": "2020-08-18T15:47:01Z",
- "name": "Malta Vibes: Week 8",
- "season": null,
- "slug": "cs-go-eden-esports-malta-vibes-week-8-2020",
- "tier": "b",
- "tournaments": [
- {
- "begin_at": "2020-08-20T16:00:00Z",
- "end_at": "2020-08-20T23:00:00Z",
- "id": 4650,
- "league_id": 4431,
- "live_supported": false,
- "modified_at": "2020-08-18T15:48:00Z",
- "name": "Group A",
- "prizepool": null,
- "serie_id": 2924,
- "slug": "cs-go-eden-esports-malta-vibes-week-8-2020-group-a",
- "winner_id": null,
- "winner_type": "Team"
}, - {
- "begin_at": "2020-08-21T16:00:00Z",
- "end_at": "2020-08-21T23:00:00Z",
- "id": 4651,
- "league_id": 4431,
- "live_supported": false,
- "modified_at": "2020-08-18T15:50:42Z",
- "name": "Group B",
- "prizepool": null,
- "serie_id": 2924,
- "slug": "cs-go-eden-esports-malta-vibes-week-8-2020-group-b",
- "winner_id": null,
- "winner_type": "Team"
}, - {
- "begin_at": "2020-08-22T08:00:00Z",
- "end_at": "2020-08-22T15:00:00Z",
- "id": 4652,
- "league_id": 4431,
- "live_supported": false,
- "modified_at": "2020-08-18T15:52:54Z",
- "name": "Group C",
- "prizepool": null,
- "serie_id": 2924,
- "slug": "cs-go-eden-esports-malta-vibes-week-8-2020-group-c",
- "winner_id": null,
- "winner_type": "Team"
}, - {
- "begin_at": "2020-08-22T15:00:00Z",
- "end_at": "2020-08-22T22:00:00Z",
- "id": 4653,
- "league_id": 4431,
- "live_supported": false,
- "modified_at": "2020-08-18T15:56:51Z",
- "name": "Group D",
- "prizepool": null,
- "serie_id": 2924,
- "slug": "cs-go-eden-esports-malta-vibes-week-8-2020-group-d",
- "winner_id": null,
- "winner_type": "Team"
}, - {
- "begin_at": "2020-08-23T08:00:00Z",
- "end_at": "2020-08-24T22:00:00Z",
- "id": 4654,
- "league_id": 4431,
- "live_supported": false,
- "modified_at": "2020-08-18T15:59:02Z",
- "name": "Playoffs",
- "prizepool": null,
- "serie_id": 2924,
- "slug": "cs-go-eden-esports-malta-vibes-week-8-2020-playoffs",
- "winner_id": null,
- "winner_type": "Team"
}
], - "videogame": {
- "id": 3,
- "name": "CS:GO",
- "slug": "cs-go"
}, - "winner_id": null,
- "winner_type": null,
- "year": 2020
}
]
Get a single serie by ID or by slug
required | SerieID (integer) or SerieSlug (string) (SerieIDOrSlug) A serie ID or slug |
/series/1626
{- "begin_at": "2018-10-07T10:00:00Z",
- "description": null,
- "end_at": "2018-10-14T10:00:00Z",
- "full_name": "Season 6 2018",
- "id": 1626,
- "league": {
- "id": 4165,
- "modified_at": "2019-03-25T10:36:06Z",
- "name": "StarSeries & i-League",
- "slug": "cs-go-starseries-i-league",
- "url": null
}, - "league_id": 4165,
- "modified_at": "2018-10-15T10:00:57Z",
- "name": null,
- "season": "6",
- "slug": "cs-go-starseries-i-league-6-2018",
- "tier": null,
- "tournaments": [
- {
- "begin_at": "2018-10-07T10:00:00Z",
- "end_at": "2018-10-14T10:00:00Z",
- "id": 1744,
- "league_id": 4165,
- "live_supported": true,
- "modified_at": "2019-07-09T23:33:37Z",
- "name": "Swiss round",
- "prizepool": null,
- "serie_id": 1626,
- "slug": "cs-go-starseries-i-league-6-2018-regular",
- "winner_id": 3251,
- "winner_type": "Team"
}, - {
- "begin_at": "2018-10-07T10:00:00Z",
- "end_at": "2018-10-14T10:00:00Z",
- "id": 1974,
- "league_id": 4165,
- "live_supported": true,
- "modified_at": "2019-07-22T15:35:57Z",
- "name": "Regular",
- "prizepool": null,
- "serie_id": 1626,
- "slug": "cs-go-starseries-i-league-6-2018-regular-cc0b2a7a-6ab8-48a6-86f1-11516b38bcf7",
- "winner_id": 3251,
- "winner_type": "Team"
}, - {
- "begin_at": "2018-10-12T10:00:00Z",
- "end_at": "2018-10-14T14:00:00Z",
- "id": 1838,
- "league_id": 4165,
- "live_supported": true,
- "modified_at": "2019-07-09T23:52:15Z",
- "name": "Playoffs",
- "prizepool": "265000 United States Dollar",
- "serie_id": 1626,
- "slug": "cs-go-starseries-i-league-6-2018-swiss-round",
- "winner_id": 3251,
- "winner_type": "Team"
}
], - "videogame": {
- "id": 3,
- "name": "CS:GO",
- "slug": "cs-go"
}, - "winner_id": 3251,
- "winner_type": "Team",
- "year": 2018
}
List matches of the given serie
required | SerieID (integer) or SerieSlug (string) (SerieIDOrSlug) A serie ID or slug |
object (filter_over_Matches) 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_Matches) Example: range[begin_at]=2019-04-08T17:00:00Z,2019-10-08T22:00:00Z Options to select results within ranges | |
object (search_over_Matches) Example: search[name]=Finals Options to search results | |
sort | Array of any (sort_over_Matches) 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 |
/matches?page[size]=1
[- {
- "begin_at": "2020-12-15T09:00:00Z",
- "detailed_stats": false,
- "draw": false,
- "end_at": null,
- "forfeit": false,
- "game_advantage": null,
- "games": [
- {
- "begin_at": null,
- "complete": false,
- "detailed_stats": false,
- "end_at": null,
- "finished": false,
- "forfeit": false,
- "id": 33783,
- "length": null,
- "match_id": 577537,
- "position": 1,
- "status": "not_started",
- "video_url": null,
- "winner": {
- "id": null,
- "type": "Team"
}, - "winner_type": "Team"
}, - {
- "begin_at": null,
- "complete": false,
- "detailed_stats": false,
- "end_at": null,
- "finished": false,
- "forfeit": false,
- "id": 33784,
- "length": null,
- "match_id": 577537,
- "position": 2,
- "status": "not_started",
- "video_url": null,
- "winner": {
- "id": null,
- "type": "Team"
}, - "winner_type": "Team"
}, - {
- "begin_at": null,
- "complete": false,
- "detailed_stats": false,
- "end_at": null,
- "finished": false,
- "forfeit": false,
- "id": 33785,
- "length": null,
- "match_id": 577537,
- "position": 3,
- "status": "not_started",
- "video_url": null,
- "winner": {
- "id": null,
- "type": "Team"
}, - "winner_type": "Team"
}
], - "id": 577537,
- "league": {
- "id": 4507,
- "image_url": null,
- "modified_at": "2020-12-11T18:43:12Z",
- "name": "UFCA Grand League Cup",
- "slug": "cs-go-ufca-grand-league-cup",
}, - "league_id": 4507,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "match_type": "best_of",
- "modified_at": "2020-12-15T04:01:03Z",
- "name": "HauntedFamily vs FATE",
- "number_of_games": 3,
- "opponents": [
- {
- "opponent": {
- "acronym": null,
- "id": 127938,
- "location": null,
- "modified_at": "2020-12-11T19:18:03Z",
- "name": "HauntedFamily",
- "slug": "hauntedfamily"
}, - "type": "Team"
}, - {
- "opponent": {
- "acronym": null,
- "id": 126462,
- "location": "JO",
- "modified_at": "2020-12-11T19:17:44Z",
- "name": "FATE",
- "slug": "fate"
}, - "type": "Team"
}
], - "original_scheduled_at": "2020-12-15T09:00:00Z",
- "rescheduled": false,
- "results": [
- {
- "score": 0,
- "team_id": 127938
}, - {
- "score": 0,
- "team_id": 126462
}
], - "scheduled_at": "2020-12-15T09:00:00Z",
- "serie": {
- "begin_at": "2020-12-12T15:00:00Z",
- "description": null,
- "end_at": null,
- "full_name": "Cup #1 2020",
- "id": 3189,
- "league_id": 4507,
- "modified_at": "2020-12-11T19:45:43Z",
- "name": "Cup #1",
- "season": null,
- "slug": "cs-go-ufca-grand-league-cup-cup-1-2020",
- "tier": "c",
- "winner_id": null,
- "winner_type": "Team",
- "year": 2020
}, - "serie_id": 3189,
- "slug": "hauntedfamily-vs-fate-2020-12-15",
- "status": "not_started",
- "streams": {
- "english": {
}, - "official": {
}, - "russian": {
}
}, - "tournament": {
- "begin_at": "2020-12-14T18:00:00Z",
- "end_at": null,
- "id": 5219,
- "league_id": 4507,
- "live_supported": false,
- "modified_at": "2020-12-14T12:01:39Z",
- "name": "Group B",
- "prizepool": null,
- "serie_id": 3189,
- "slug": "cs-go-ufca-grand-league-cup-cup-1-2020-group-b",
- "winner_id": null,
- "winner_type": "Team"
}, - "tournament_id": 5219,
- "videogame": {
- "id": 3,
- "name": "CS:GO",
- "slug": "cs-go"
}, - "videogame_version": null,
- "winner": null,
- "winner_id": null
}
]
List past matches for the given serie
required | SerieID (integer) or SerieSlug (string) (SerieIDOrSlug) A serie ID or slug |
object (filter_over_Matches) 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_Matches) Example: range[begin_at]=2019-04-08T17:00:00Z,2019-10-08T22:00:00Z Options to select results within ranges | |
object (search_over_Matches) Example: search[name]=Finals Options to search results | |
sort | Array of any (sort_over_Matches) 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 |
/matches?page[size]=1
[- {
- "begin_at": "2020-12-15T09:00:00Z",
- "detailed_stats": false,
- "draw": false,
- "end_at": null,
- "forfeit": false,
- "game_advantage": null,
- "games": [
- {
- "begin_at": null,
- "complete": false,
- "detailed_stats": false,
- "end_at": null,
- "finished": false,
- "forfeit": false,
- "id": 33783,
- "length": null,
- "match_id": 577537,
- "position": 1,
- "status": "not_started",
- "video_url": null,
- "winner": {
- "id": null,
- "type": "Team"
}, - "winner_type": "Team"
}, - {
- "begin_at": null,
- "complete": false,
- "detailed_stats": false,
- "end_at": null,
- "finished": false,
- "forfeit": false,
- "id": 33784,
- "length": null,
- "match_id": 577537,
- "position": 2,
- "status": "not_started",
- "video_url": null,
- "winner": {
- "id": null,
- "type": "Team"
}, - "winner_type": "Team"
}, - {
- "begin_at": null,
- "complete": false,
- "detailed_stats": false,
- "end_at": null,
- "finished": false,
- "forfeit": false,
- "id": 33785,
- "length": null,
- "match_id": 577537,
- "position": 3,
- "status": "not_started",
- "video_url": null,
- "winner": {
- "id": null,
- "type": "Team"
}, - "winner_type": "Team"
}
], - "id": 577537,
- "league": {
- "id": 4507,
- "image_url": null,
- "modified_at": "2020-12-11T18:43:12Z",
- "name": "UFCA Grand League Cup",
- "slug": "cs-go-ufca-grand-league-cup",
}, - "league_id": 4507,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "match_type": "best_of",
- "modified_at": "2020-12-15T04:01:03Z",
- "name": "HauntedFamily vs FATE",
- "number_of_games": 3,
- "opponents": [
- {
- "opponent": {
- "acronym": null,
- "id": 127938,
- "location": null,
- "modified_at": "2020-12-11T19:18:03Z",
- "name": "HauntedFamily",
- "slug": "hauntedfamily"
}, - "type": "Team"
}, - {
- "opponent": {
- "acronym": null,
- "id": 126462,
- "location": "JO",
- "modified_at": "2020-12-11T19:17:44Z",
- "name": "FATE",
- "slug": "fate"
}, - "type": "Team"
}
], - "original_scheduled_at": "2020-12-15T09:00:00Z",
- "rescheduled": false,
- "results": [
- {
- "score": 0,
- "team_id": 127938
}, - {
- "score": 0,
- "team_id": 126462
}
], - "scheduled_at": "2020-12-15T09:00:00Z",
- "serie": {
- "begin_at": "2020-12-12T15:00:00Z",
- "description": null,
- "end_at": null,
- "full_name": "Cup #1 2020",
- "id": 3189,
- "league_id": 4507,
- "modified_at": "2020-12-11T19:45:43Z",
- "name": "Cup #1",
- "season": null,
- "slug": "cs-go-ufca-grand-league-cup-cup-1-2020",
- "tier": "c",
- "winner_id": null,
- "winner_type": "Team",
- "year": 2020
}, - "serie_id": 3189,
- "slug": "hauntedfamily-vs-fate-2020-12-15",
- "status": "not_started",
- "streams": {
- "english": {
}, - "official": {
}, - "russian": {
}
}, - "tournament": {
- "begin_at": "2020-12-14T18:00:00Z",
- "end_at": null,
- "id": 5219,
- "league_id": 4507,
- "live_supported": false,
- "modified_at": "2020-12-14T12:01:39Z",
- "name": "Group B",
- "prizepool": null,
- "serie_id": 3189,
- "slug": "cs-go-ufca-grand-league-cup-cup-1-2020-group-b",
- "winner_id": null,
- "winner_type": "Team"
}, - "tournament_id": 5219,
- "videogame": {
- "id": 3,
- "name": "CS:GO",
- "slug": "cs-go"
}, - "videogame_version": null,
- "winner": null,
- "winner_id": null
}
]
List currently running matches for the given serie
required | SerieID (integer) or SerieSlug (string) (SerieIDOrSlug) A serie ID or slug |
object (filter_over_Matches) 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_Matches) Example: range[begin_at]=2019-04-08T17:00:00Z,2019-10-08T22:00:00Z Options to select results within ranges | |
object (search_over_Matches) Example: search[name]=Finals Options to search results | |
sort | Array of any (sort_over_Matches) 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 |
/matches?page[size]=1
[- {
- "begin_at": "2020-12-15T09:00:00Z",
- "detailed_stats": false,
- "draw": false,
- "end_at": null,
- "forfeit": false,
- "game_advantage": null,
- "games": [
- {
- "begin_at": null,
- "complete": false,
- "detailed_stats": false,
- "end_at": null,
- "finished": false,
- "forfeit": false,
- "id": 33783,
- "length": null,
- "match_id": 577537,
- "position": 1,
- "status": "not_started",
- "video_url": null,
- "winner": {
- "id": null,
- "type": "Team"
}, - "winner_type": "Team"
}, - {
- "begin_at": null,
- "complete": false,
- "detailed_stats": false,
- "end_at": null,
- "finished": false,
- "forfeit": false,
- "id": 33784,
- "length": null,
- "match_id": 577537,
- "position": 2,
- "status": "not_started",
- "video_url": null,
- "winner": {
- "id": null,
- "type": "Team"
}, - "winner_type": "Team"
}, - {
- "begin_at": null,
- "complete": false,
- "detailed_stats": false,
- "end_at": null,
- "finished": false,
- "forfeit": false,
- "id": 33785,
- "length": null,
- "match_id": 577537,
- "position": 3,
- "status": "not_started",
- "video_url": null,
- "winner": {
- "id": null,
- "type": "Team"
}, - "winner_type": "Team"
}
], - "id": 577537,
- "league": {
- "id": 4507,
- "image_url": null,
- "modified_at": "2020-12-11T18:43:12Z",
- "name": "UFCA Grand League Cup",
- "slug": "cs-go-ufca-grand-league-cup",
}, - "league_id": 4507,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "match_type": "best_of",
- "modified_at": "2020-12-15T04:01:03Z",
- "name": "HauntedFamily vs FATE",
- "number_of_games": 3,
- "opponents": [
- {
- "opponent": {
- "acronym": null,
- "id": 127938,
- "location": null,
- "modified_at": "2020-12-11T19:18:03Z",
- "name": "HauntedFamily",
- "slug": "hauntedfamily"
}, - "type": "Team"
}, - {
- "opponent": {
- "acronym": null,
- "id": 126462,
- "location": "JO",
- "modified_at": "2020-12-11T19:17:44Z",
- "name": "FATE",
- "slug": "fate"
}, - "type": "Team"
}
], - "original_scheduled_at": "2020-12-15T09:00:00Z",
- "rescheduled": false,
- "results": [
- {
- "score": 0,
- "team_id": 127938
}, - {
- "score": 0,
- "team_id": 126462
}
], - "scheduled_at": "2020-12-15T09:00:00Z",
- "serie": {
- "begin_at": "2020-12-12T15:00:00Z",
- "description": null,
- "end_at": null,
- "full_name": "Cup #1 2020",
- "id": 3189,
- "league_id": 4507,
- "modified_at": "2020-12-11T19:45:43Z",
- "name": "Cup #1",
- "season": null,
- "slug": "cs-go-ufca-grand-league-cup-cup-1-2020",
- "tier": "c",
- "winner_id": null,
- "winner_type": "Team",
- "year": 2020
}, - "serie_id": 3189,
- "slug": "hauntedfamily-vs-fate-2020-12-15",
- "status": "not_started",
- "streams": {
- "english": {
}, - "official": {
}, - "russian": {
}
}, - "tournament": {
- "begin_at": "2020-12-14T18:00:00Z",
- "end_at": null,
- "id": 5219,
- "league_id": 4507,
- "live_supported": false,
- "modified_at": "2020-12-14T12:01:39Z",
- "name": "Group B",
- "prizepool": null,
- "serie_id": 3189,
- "slug": "cs-go-ufca-grand-league-cup-cup-1-2020-group-b",
- "winner_id": null,
- "winner_type": "Team"
}, - "tournament_id": 5219,
- "videogame": {
- "id": 3,
- "name": "CS:GO",
- "slug": "cs-go"
}, - "videogame_version": null,
- "winner": null,
- "winner_id": null
}
]
List upcoming matches for the given serie
required | SerieID (integer) or SerieSlug (string) (SerieIDOrSlug) A serie ID or slug |
object (filter_over_Matches) 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_Matches) Example: range[begin_at]=2019-04-08T17:00:00Z,2019-10-08T22:00:00Z Options to select results within ranges | |
object (search_over_Matches) Example: search[name]=Finals Options to search results | |
sort | Array of any (sort_over_Matches) 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 |
/matches?page[size]=1
[- {
- "begin_at": "2020-12-15T09:00:00Z",
- "detailed_stats": false,
- "draw": false,
- "end_at": null,
- "forfeit": false,
- "game_advantage": null,
- "games": [
- {
- "begin_at": null,
- "complete": false,
- "detailed_stats": false,
- "end_at": null,
- "finished": false,
- "forfeit": false,
- "id": 33783,
- "length": null,
- "match_id": 577537,
- "position": 1,
- "status": "not_started",
- "video_url": null,
- "winner": {
- "id": null,
- "type": "Team"
}, - "winner_type": "Team"
}, - {
- "begin_at": null,
- "complete": false,
- "detailed_stats": false,
- "end_at": null,
- "finished": false,
- "forfeit": false,
- "id": 33784,
- "length": null,
- "match_id": 577537,
- "position": 2,
- "status": "not_started",
- "video_url": null,
- "winner": {
- "id": null,
- "type": "Team"
}, - "winner_type": "Team"
}, - {
- "begin_at": null,
- "complete": false,
- "detailed_stats": false,
- "end_at": null,
- "finished": false,
- "forfeit": false,
- "id": 33785,
- "length": null,
- "match_id": 577537,
- "position": 3,
- "status": "not_started",
- "video_url": null,
- "winner": {
- "id": null,
- "type": "Team"
}, - "winner_type": "Team"
}
], - "id": 577537,
- "league": {
- "id": 4507,
- "image_url": null,
- "modified_at": "2020-12-11T18:43:12Z",
- "name": "UFCA Grand League Cup",
- "slug": "cs-go-ufca-grand-league-cup",
}, - "league_id": 4507,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "match_type": "best_of",
- "modified_at": "2020-12-15T04:01:03Z",
- "name": "HauntedFamily vs FATE",
- "number_of_games": 3,
- "opponents": [
- {
- "opponent": {
- "acronym": null,
- "id": 127938,
- "location": null,
- "modified_at": "2020-12-11T19:18:03Z",
- "name": "HauntedFamily",
- "slug": "hauntedfamily"
}, - "type": "Team"
}, - {
- "opponent": {
- "acronym": null,
- "id": 126462,
- "location": "JO",
- "modified_at": "2020-12-11T19:17:44Z",
- "name": "FATE",
- "slug": "fate"
}, - "type": "Team"
}
], - "original_scheduled_at": "2020-12-15T09:00:00Z",
- "rescheduled": false,
- "results": [
- {
- "score": 0,
- "team_id": 127938
}, - {
- "score": 0,
- "team_id": 126462
}
], - "scheduled_at": "2020-12-15T09:00:00Z",
- "serie": {
- "begin_at": "2020-12-12T15:00:00Z",
- "description": null,
- "end_at": null,
- "full_name": "Cup #1 2020",
- "id": 3189,
- "league_id": 4507,
- "modified_at": "2020-12-11T19:45:43Z",
- "name": "Cup #1",
- "season": null,
- "slug": "cs-go-ufca-grand-league-cup-cup-1-2020",
- "tier": "c",
- "winner_id": null,
- "winner_type": "Team",
- "year": 2020
}, - "serie_id": 3189,
- "slug": "hauntedfamily-vs-fate-2020-12-15",
- "status": "not_started",
- "streams": {
- "english": {
}, - "official": {
}, - "russian": {
}
}, - "tournament": {
- "begin_at": "2020-12-14T18:00:00Z",
- "end_at": null,
- "id": 5219,
- "league_id": 4507,
- "live_supported": false,
- "modified_at": "2020-12-14T12:01:39Z",
- "name": "Group B",
- "prizepool": null,
- "serie_id": 3189,
- "slug": "cs-go-ufca-grand-league-cup-cup-1-2020-group-b",
- "winner_id": null,
- "winner_type": "Team"
}, - "tournament_id": 5219,
- "videogame": {
- "id": 3,
- "name": "CS:GO",
- "slug": "cs-go"
}, - "videogame_version": null,
- "winner": null,
- "winner_id": null
}
]
List players for the given serie
object (filter_over_Players) 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_Players) Example: range[name]=f,i Options to select results within ranges | |
object (search_over_Players) Example: search[role]=tank Options to search results | |
sort | Array of any (sort_over_Players) 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 |
/players?page[size]=1
[- {
- "birth_year": null,
- "birthday": null,
- "current_team": {
- "acronym": null,
- "id": 125866,
- "location": "BR",
- "modified_at": "2020-08-18T01:58:22Z",
- "name": "DETONA",
- "slug": "detona-gaming"
}, - "current_videogame": {
- "id": 3,
- "name": "CS:GO",
- "slug": "cs-go"
}, - "first_name": null,
- "hometown": null,
- "id": 29645,
- "image_url": null,
- "last_name": null,
- "name": "piriaz1n",
- "nationality": null,
- "role": null,
- "slug": "piriaz1n"
}
]
List tournaments of the given serie
required | SerieID (integer) or SerieSlug (string) (SerieIDOrSlug) A serie ID or slug |
object (filter_over_ShortTournaments) 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_ShortTournaments) Example: range[begin_at]=2019-04-08T17:00:00Z,2019-10-08T22:00:00Z Options to select results within ranges | |
object (search_over_ShortTournaments) Example: search[name]=group Options to search results | |
sort | Array of any (sort_over_ShortTournaments) 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 |
/tournaments?page[size]=1
[- {
- "begin_at": "2020-12-15T12:30:00Z",
- "end_at": null,
- "id": 5236,
- "league": {
- "id": 4499,
- "image_url": null,
- "modified_at": "2020-11-30T12:34:02Z",
- "name": "Moon Studio Carnival Cup",
- "slug": "dota-2-moon-studio-carnival-cup",
- "url": null
}, - "league_id": 4499,
- "live_supported": false,
- "matches": [
- {
- "begin_at": "2020-12-15T10:00:00Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": null,
- "forfeit": false,
- "game_advantage": null,
- "id": 577514,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2020-12-15T00:38:14Z",
- "name": "Upper Bracket Round 1 Match 2: Motivate.Trust Gaming vs LBZS",
- "number_of_games": 3,
- "official_stream_url": null,
- "original_scheduled_at": "2020-12-16T10:00:00Z",
- "rescheduled": true,
- "scheduled_at": "2020-12-15T10:00:00Z",
- "slug": "motivate-trust-gaming-vs-lbzs-2020-12-16",
- "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": 5236,
- "winner_id": null
}, - {
- "begin_at": "2020-12-15T12:30:00Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": null,
- "forfeit": false,
- "game_advantage": null,
- "id": 577511,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2020-12-14T14:29:45Z",
- "name": "Lower Bracket Round 1 Match 1: Spade vs XctN",
- "number_of_games": 3,
- "official_stream_url": null,
- "original_scheduled_at": "2020-12-15T12:30:00Z",
- "rescheduled": false,
- "scheduled_at": "2020-12-15T12:30:00Z",
- "slug": "spade-vs-execration-2020-12-15",
- "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": 5236,
- "winner_id": null
}, - {
- "begin_at": "2020-12-15T12:41:02Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": null,
- "forfeit": false,
- "game_advantage": 127651,
- "id": 577512,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2020-12-15T12:41:03Z",
- "name": "Lower Bracket Round 1 Match 2: GXR vs iG.V",
- "number_of_games": 3,
- "official_stream_url": null,
- "original_scheduled_at": "2020-12-15T07:00:00Z",
- "rescheduled": false,
- "scheduled_at": "2020-12-15T07:00:00Z",
- "slug": "galaxy-racer-vs-ig-vitality-2020-12-15",
- "status": "running",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
- "embed_url": null,
- "raw_url": null
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament_id": 5236,
- "winner_id": null
}, - {
- "begin_at": "2020-12-16T08:30:00Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": null,
- "forfeit": false,
- "game_advantage": null,
- "id": 577513,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2020-12-14T14:31:14Z",
- "name": "Upper Bracket Round 1 Match 1: MagMa vs neon",
- "number_of_games": 3,
- "official_stream_url": null,
- "original_scheduled_at": "2020-12-16T08:30:00Z",
- "rescheduled": false,
- "scheduled_at": "2020-12-16T08:30:00Z",
- "slug": "magma-vs-neon-esports-2020-12-16",
- "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": 5236,
- "winner_id": null
}
], - "modified_at": "2020-12-14T17:58:53Z",
- "name": "Playoffs",
- "prizepool": null,
- "serie": {
- "begin_at": "2020-12-01T05:00:00Z",
- "description": null,
- "end_at": null,
- "full_name": "2020",
- "id": 3154,
- "league_id": 4499,
- "modified_at": "2020-11-30T14:32:02Z",
- "name": null,
- "season": null,
- "slug": "dota-2-moon-studio-carnival-cup-2020",
- "tier": "d",
- "winner_id": null,
- "winner_type": null,
- "year": 2020
}, - "serie_id": 3154,
- "slug": "dota-2-moon-studio-carnival-cup-2020-playoffs",
- "teams": [
- {
- "acronym": "iG.V",
- "id": 1650,
- "location": "CN",
- "modified_at": "2020-12-14T10:45:26Z",
- "name": "iG.Vitality",
- "slug": "ig-vitality"
}, - {
- "acronym": "XctN",
- "id": 1660,
- "location": "PH",
- "modified_at": "2020-12-14T22:24:12Z",
- "name": "Execration",
- "slug": "execration"
}, - {
- "acronym": " neon",
- "id": 2061,
- "location": "PH",
- "modified_at": "2020-12-14T16:06:49Z",
- "name": "Neon Esports",
- "slug": "neon-esports"
}, - {
- "acronym": null,
- "id": 126848,
- "location": "TH",
- "modified_at": "2020-12-14T16:09:03Z",
- "name": "Motivate.Trust Gaming",
- "slug": "motivade-trust-gaming"
}, - {
- "acronym": "GXR",
- "id": 127651,
- "location": "AE",
- "modified_at": "2020-12-10T12:32:54Z",
- "name": "Galaxy Racer",
- "slug": "galaxy-racer-esports"
}, - {
- "acronym": null,
- "id": 127867,
- "location": "CN",
- "modified_at": "2020-12-14T13:03:10Z",
- "name": "MagMa",
- "slug": "magma"
}, - {
- "acronym": null,
- "id": 127872,
- "location": "CN",
- "modified_at": "2020-12-14T07:23:14Z",
- "name": "LBZS",
- "slug": "lbzs"
}, - {
- "acronym": null,
- "id": 128082,
- "image_url": null,
- "location": null,
- "modified_at": "2020-12-06T04:35:38Z",
- "name": "Spade",
- "slug": "spade"
}
], - "videogame": {
- "id": 4,
- "name": "Dota 2",
- "slug": "dota-2"
}, - "winner_id": null,
- "winner_type": "Team"
}
]
List tournaments
object (filter_over_ShortTournaments) 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_ShortTournaments) Example: range[begin_at]=2019-04-08T17:00:00Z,2019-10-08T22:00:00Z Options to select results within ranges | |
object (search_over_ShortTournaments) Example: search[name]=group Options to search results | |
sort | Array of any (sort_over_ShortTournaments) 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 |
/tournaments?page[size]=1
[- {
- "begin_at": "2020-12-15T12:30:00Z",
- "end_at": null,
- "id": 5236,
- "league": {
- "id": 4499,
- "image_url": null,
- "modified_at": "2020-11-30T12:34:02Z",
- "name": "Moon Studio Carnival Cup",
- "slug": "dota-2-moon-studio-carnival-cup",
- "url": null
}, - "league_id": 4499,
- "live_supported": false,
- "matches": [
- {
- "begin_at": "2020-12-15T10:00:00Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": null,
- "forfeit": false,
- "game_advantage": null,
- "id": 577514,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2020-12-15T00:38:14Z",
- "name": "Upper Bracket Round 1 Match 2: Motivate.Trust Gaming vs LBZS",
- "number_of_games": 3,
- "official_stream_url": null,
- "original_scheduled_at": "2020-12-16T10:00:00Z",
- "rescheduled": true,
- "scheduled_at": "2020-12-15T10:00:00Z",
- "slug": "motivate-trust-gaming-vs-lbzs-2020-12-16",
- "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": 5236,
- "winner_id": null
}, - {
- "begin_at": "2020-12-15T12:30:00Z"