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 a single CS:GO game by ID
csgo_game_id required | integer (CSGOGameID) >= 1 A CS:GO game ID |
/csgo/games/4505
{- "begin_at": "2018-11-30T16:44:14Z",
- "complete": true,
- "detailed_stats": true,
- "end_at": "2018-11-30T17:30:14Z",
- "finished": true,
- "forfeit": false,
- "id": 4505,
- "length": 2760,
- "map": {
- "id": 4,
- "name": "Cache"
}, - "match": {
- "begin_at": "2018-11-30T15:50:14Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": "2018-11-30T17:30:14Z",
- "forfeit": false,
- "game_advantage": null,
- "games": [
- {
- "begin_at": "2018-11-30T15:50:14Z",
- "complete": true,
- "detailed_stats": true,
- "end_at": "2018-11-30T16:44:14Z",
- "finished": true,
- "forfeit": false,
- "id": 4504,
- "length": 3240,
- "match_id": 168297,
- "position": 1,
- "status": "finished",
- "video_url": null,
- "winner": {
- "id": 3256,
- "type": "Team"
}, - "winner_type": "Team"
}, - {
- "begin_at": "2018-11-30T16:44:14Z",
- "complete": true,
- "detailed_stats": true,
- "end_at": "2018-11-30T17:30:14Z",
- "finished": true,
- "forfeit": false,
- "id": 4505,
- "length": 2760,
- "match_id": 168297,
- "position": 2,
- "status": "finished",
- "winner": {
- "id": 3256,
- "type": "Team"
}, - "winner_type": "Team"
}
], - "id": 168297,
- "league": {
- "id": 4175,
- "modified_at": "2019-02-18T20:17:30Z",
- "name": "SuperNova",
- "slug": "cs-go-supernova",
- "url": null
}, - "league_id": 4175,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2019-10-25T12:15:48Z",
- "name": "Decider Match: NRG vs Virtus.Pro",
- "number_of_games": 3,
- "official_stream_url": null,
- "opponents": [
- {
- "opponent": {
- "acronym": null,
- "id": 3256,
- "location": "US",
- "modified_at": "2019-09-20T16:25:16Z",
- "name": "NRG",
- "slug": "nrg"
}, - "type": "Team"
}, - {
- "opponent": {
- "acronym": null,
- "id": 3288,
- "location": "RU",
- "modified_at": "2020-12-11T19:47:19Z",
- "name": "Virtus.pro",
- "slug": "virtus-pro-75b4744b-43d9-4ebd-a8dc-f1e0f9be69b3"
}, - "type": "Team"
}
], - "original_scheduled_at": "2018-11-30T15:50:14Z",
- "rescheduled": false,
- "results": [
- {
- "score": 2,
- "team_id": 3256
}, - {
- "score": 0,
- "team_id": 3288
}
], - "scheduled_at": "2018-11-30T15:00:00Z",
- "serie": {
- "begin_at": "2018-11-28T23:00:00Z",
- "description": null,
- "end_at": "2018-12-02T21:05:00Z",
- "full_name": "Malta 2018",
- "id": 1647,
- "league_id": 4175,
- "modified_at": "2018-12-03T09:40:37Z",
- "name": "Malta",
- "season": null,
- "slug": "cs-go-supernova-malta-2018",
- "tier": null,
- "winner_id": 3213,
- "winner_type": "Team",
- "year": 2018
}, - "serie_id": 1647,
- "slug": "2018-11-30-68a4424b-d84e-4641-bc57-a65971b3f069",
- "status": "finished",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
- "embed_url": null,
- "raw_url": null
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament": {
- "begin_at": "2018-11-28T23:00:00Z",
- "end_at": "2018-11-30T17:30:00Z",
- "id": 1885,
- "league_id": 4175,
- "live_supported": false,
- "modified_at": "2019-07-10T00:09:05Z",
- "name": "Group a",
- "prizepool": "5000 United States Dollar",
- "serie_id": 1647,
- "slug": "cs-go-supernova-malta-2018-group-a",
- "winner_id": 3213,
- "winner_type": "Team"
}, - "tournament_id": 1885,
- "videogame": {
- "id": 3,
- "name": "CS:GO",
- "slug": "cs-go"
}, - "videogame_version": null,
- "winner": {
- "acronym": null,
- "id": 3256,
- "location": "US",
- "modified_at": "2019-09-20T16:25:16Z",
- "name": "NRG",
- "slug": "nrg"
}, - "winner_id": 3256
}, - "match_id": 168297,
- "players": [
- {
- "adr": 56,
- "assists": 2,
- "deaths": 19,
- "first_kills_diff": -1,
- "flash_assists": 0,
- "game_id": 4505,
- "headshots": 2,
- "k_d_diff": -8,
- "kast": 39.1,
- "kills": 11,
- "opponent": {
- "acronym": null,
- "id": 3256,
- "location": "US",
- "modified_at": "2019-09-20T16:25:16Z",
- "name": "NRG",
- "slug": "nrg"
}, - "player": {
- "birth_year": 1987,
- "birthday": "1987-06-15",
- "first_name": "Filip",
- "hometown": "Poland",
- "id": 17503,
- "last_name": "Kubski",
- "name": "NEO",
- "nationality": "PL",
- "role": null,
- "slug": "neo-d783d97f-d762-48df-b7f9-d35bd917daa2"
}, - "rating": 0.54,
- "team": {
- "acronym": null,
- "id": 3288,
- "location": "RU",
- "modified_at": "2020-12-11T19:47:19Z",
- "name": "Virtus.pro",
- "slug": "virtus-pro-75b4744b-43d9-4ebd-a8dc-f1e0f9be69b3"
}
}, - {
- "adr": 82.4,
- "assists": 4,
- "deaths": 19,
- "first_kills_diff": -3,
- "flash_assists": 1,
- "game_id": 4505,
- "headshots": 6,
- "k_d_diff": -2,
- "kast": 60.9,
- "kills": 17,
- "opponent": {
- "acronym": null,
- "id": 3256,
- "location": "US",
- "modified_at": "2019-09-20T16:25:16Z",
- "name": "NRG",
- "slug": "nrg"
}, - "player": {
- "birth_year": 1988,
- "birthday": "1988-04-11",
- "first_name": "Jarosław",
- "hometown": "Poland",
- "id": 17506,
- "last_name": "Jarząbkowski",
- "name": "pashaBiceps",
- "nationality": "PL",
- "role": null,
- "slug": "pashabiceps"
}, - "rating": 0.98,
- "team": {
- "acronym": null,
- "id": 3288,
- "location": "RU",
- "modified_at": "2020-12-11T19:47:19Z",
- "name": "Virtus.pro",
- "slug": "virtus-pro-75b4744b-43d9-4ebd-a8dc-f1e0f9be69b3"
}
}, - {
- "adr": 93.3,
- "assists": 2,
- "deaths": 14,
- "first_kills_diff": 1,
- "flash_assists": 0,
- "game_id": 4505,
- "headshots": 13,
- "k_d_diff": 6,
- "kast": 78.3,
- "kills": 20,
- "opponent": {
- "acronym": null,
- "id": 3288,
- "location": "RU",
- "modified_at": "2020-12-11T19:47:19Z",
- "name": "Virtus.pro",
- "slug": "virtus-pro-75b4744b-43d9-4ebd-a8dc-f1e0f9be69b3"
}, - "player": {
- "birth_year": 1995,
- "birthday": "1995-01-02",
- "first_name": "Jacob",
- "hometown": "United States",
- "id": 17588,
- "last_name": "Medina",
- "name": "FugLy",
- "nationality": "US",
- "role": null,
- "slug": "fugly"
}, - "rating": 1.32,
- "team": {
- "acronym": null,
- "id": 3256,
- "location": "US",
- "modified_at": "2019-09-20T16:25:16Z",
- "name": "NRG",
- "slug": "nrg"
}
}, - {
- "adr": 62.6,
- "assists": 5,
- "deaths": 14,
- "first_kills_diff": -2,
- "flash_assists": 1,
- "game_id": 4505,
- "headshots": 7,
- "k_d_diff": -1,
- "kast": 78.3,
- "kills": 13,
- "opponent": {
- "acronym": null,
- "id": 3288,
- "location": "RU",
- "modified_at": "2020-12-11T19:47:19Z",
- "name": "Virtus.pro",
- "slug": "virtus-pro-75b4744b-43d9-4ebd-a8dc-f1e0f9be69b3"
}, - "player": {
- "birth_year": 1993,
- "birthday": "1993-07-29",
- "first_name": "Damian",
- "hometown": "Canada",
- "id": 17590,
- "last_name": "Steele",
- "name": "daps",
- "nationality": "CA",
- "role": null,
- "slug": "daps"
}, - "rating": 0.93,
- "team": {
- "acronym": null,
- "id": 3256,
- "location": "US",
- "modified_at": "2019-09-20T16:25:16Z",
- "name": "NRG",
- "slug": "nrg"
}
}, - {
- "adr": 101.5,
- "assists": 4,
- "deaths": 12,
- "first_kills_diff": 4,
- "flash_assists": 0,
- "game_id": 4505,
- "headshots": 17,
- "k_d_diff": 9,
- "kast": 87,
- "kills": 21,
- "opponent": {
- "acronym": null,
- "id": 3288,
- "location": "RU",
- "modified_at": "2020-12-11T19:47:19Z",
- "name": "Virtus.pro",
- "slug": "virtus-pro-75b4744b-43d9-4ebd-a8dc-f1e0f9be69b3"
}, - "player": {
- "birth_year": 1998,
- "birthday": "1998-05-22",
- "first_name": "Vincent",
- "hometown": "United States",
- "id": 17714,
- "last_name": "Cayonte",
- "name": "Brehze",
- "nationality": "US",
- "role": null,
- "slug": "brehze"
}, - "rating": 1.6,
- "team": {
- "acronym": null,
- "id": 3256,
- "location": "US",
- "modified_at": "2019-09-20T16:25:16Z",
- "name": "NRG",
- "slug": "nrg"
}
}, - {
- "adr": 79.9,
- "assists": 3,
- "deaths": 12,
- "first_kills_diff": -1,
- "flash_assists": 2,
- "game_id": 4505,
- "headshots": 5,
- "k_d_diff": 8,
- "kast": 73.9,
- "kills": 20,
- "opponent": {
- "acronym": null,
- "id": 3288,
- "location": "RU",
- "modified_at": "2020-12-11T19:47:19Z",
- "name": "Virtus.pro",
- "slug": "virtus-pro-75b4744b-43d9-4ebd-a8dc-f1e0f9be69b3"
}, - "player": {
- "birth_year": 1999,
- "birthday": "1999-09-07",
- "first_name": "Tsvetelin",
- "hometown": "Bulgaria",
- "id": 17725,
- "last_name": "Dimitrov",
- "name": "CeRq",
- "nationality": "BG",
- "role": null,
- "slug": "cerq"
}, - "rating": 1.35,
- "team": {
- "acronym": null,
- "id": 3256,
- "location": "US",
- "modified_at": "2019-09-20T16:25:16Z",
- "name": "NRG",
- "slug": "nrg"
}
}, - {
- "adr": 94.3,
- "assists": 4,
- "deaths": 13,
- "first_kills_diff": -1,
- "flash_assists": 1,
- "game_id": 4505,
- "headshots": 14,
- "k_d_diff": 8,
- "kast": 69.6,
- "kills": 21,
- "opponent": {
- "acronym": null,
- "id": 3288,
- "location": "RU",
- "modified_at": "2020-12-11T19:47:19Z",
- "name": "Virtus.pro",
- "slug": "virtus-pro-75b4744b-43d9-4ebd-a8dc-f1e0f9be69b3"
}, - "player": {
- "birth_year": 2000,
- "birthday": "2000-03-02",
- "first_name": "Ethan",
- "hometown": "United States",
- "id": 17733,
- "last_name": "Arnold",
- "name": "Ethan",
- "nationality": "US",
- "role": null,
- "slug": "nahte"
}, - "rating": 1.45,
- "team": {
- "acronym": null,
- "id": 3256,
- "location": "US",
- "modified_at": "2019-09-20T16:25:16Z",
- "name": "NRG",
- "slug": "nrg"
}
}, - {
- "adr": 58,
- "assists": 2,
- "deaths": 20,
- "first_kills_diff": 0,
- "flash_assists": 0,
- "game_id": 4505,
- "headshots": 8,
- "k_d_diff": -8,
- "kast": 60.9,
- "kills": 12,
- "opponent": {
- "acronym": null,
- "id": 3256,
- "location": "US",
- "modified_at": "2019-09-20T16:25:16Z",
- "name": "NRG",
- "slug": "nrg"
}, - "player": {
- "birth_year": 1996,
- "birthday": "1996-12-29",
- "first_name": "Michał",
- "hometown": "Poland",
- "id": 17789,
- "last_name": "Müller",
- "name": "MICHU",
- "nationality": "PL",
- "role": null,
- "slug": "michu"
}, - "rating": 0.76,
- "team": {
- "acronym": null,
- "id": 3288,
- "location": "RU",
- "modified_at": "2020-12-11T19:47:19Z",
- "name": "Virtus.pro",
- "slug": "virtus-pro-75b4744b-43d9-4ebd-a8dc-f1e0f9be69b3"
}
}, - {
- "adr": 86.3,
- "assists": 4,
- "deaths": 17,
- "first_kills_diff": 4,
- "flash_assists": 0,
- "game_id": 4505,
- "headshots": 3,
- "k_d_diff": 2,
- "kast": 69.6,
- "kills": 19,
- "opponent": {
- "acronym": null,
- "id": 3256,
- "location": "US",
- "modified_at": "2019-09-20T16:25:16Z",
- "name": "NRG",
- "slug": "nrg"
}, - "player": {
- "birth_year": 1998,
- "birthday": "1998-01-31",
- "first_name": "Michał",
- "hometown": "Poland",
- "id": 17847,
- "last_name": "Rudzki",
- "name": "snatchie",
- "nationality": "PL",
- "role": null,
- "slug": "snatchie"
}, - "rating": 1.17,
- "team": {
- "acronym": null,
- "id": 3288,
- "location": "RU",
- "modified_at": "2020-12-11T19:47:19Z",
- "name": "Virtus.pro",
- "slug": "virtus-pro-75b4744b-43d9-4ebd-a8dc-f1e0f9be69b3"
}
}, - {
- "adr": 52.4,
- "assists": 2,
- "deaths": 20,
- "first_kills_diff": -1,
- "flash_assists": 0,
- "game_id": 4505,
- "headshots": 4,
- "k_d_diff": -14,
- "kast": 43.5,
- "kills": 6,
- "opponent": {
- "acronym": null,
- "id": 3256,
- "location": "US",
- "modified_at": "2019-09-20T16:25:16Z",
- "name": "NRG",
- "slug": "nrg"
}, - "player": {
- "birth_year": 1994,
- "birthday": "1994-07-28",
- "first_name": "Piotr",
- "hometown": "Poland",
- "id": 18160,
- "last_name": "Taterka",
- "name": "morelz",
- "nationality": "PL",
- "role": null,
- "slug": "morelz"
}, - "rating": 0.38,
- "team": {
- "acronym": null,
- "id": 3288,
- "location": "RU",
- "modified_at": "2020-12-11T19:47:19Z",
- "name": "Virtus.pro",
- "slug": "virtus-pro-75b4744b-43d9-4ebd-a8dc-f1e0f9be69b3"
}
}
], - "position": 2,
- "rounds": [
- {
- "ct": 3288,
- "outcome": "eliminated",
- "round": 1,
- "terrorists": 3256,
- "winner_side": "terrorists",
- "winner_team": 3256
}, - {
- "ct": 3288,
- "outcome": "eliminated",
- "round": 2,
- "terrorists": 3256,
- "winner_side": "terrorists",
- "winner_team": 3256
}, - {
- "ct": 3288,
- "outcome": "eliminated",
- "round": 3,
- "terrorists": 3256,
- "winner_side": "terrorists",
- "winner_team": 3256
}, - {
- "ct": 3288,
- "outcome": "eliminated",
- "round": 4,
- "terrorists": 3256,
- "winner_side": "ct",
- "winner_team": 3288
}, - {
- "ct": 3288,
- "outcome": "eliminated",
- "round": 5,
- "terrorists": 3256,
- "winner_side": "terrorists",
- "winner_team": 3256
}, - {
- "ct": 3288,
- "outcome": "eliminated",
- "round": 6,
- "terrorists": 3256,
- "winner_side": "terrorists",
- "winner_team": 3256
}, - {
- "ct": 3288,
- "outcome": "eliminated",
- "round": 7,
- "terrorists": 3256,
- "winner_side": "terrorists",
- "winner_team": 3256
}, - {
- "ct": 3288,
- "outcome": "eliminated",
- "round": 8,
- "terrorists": 3256,
- "winner_side": "ct",
- "winner_team": 3288
}, - {
- "ct": 3288,
- "outcome": "eliminated",
- "round": 9,
- "terrorists": 3256,
- "winner_side": "ct",
- "winner_team": 3288
}, - {
- "ct": 3288,
- "outcome": "defused",
- "round": 10,
- "terrorists": 3256,
- "winner_side": "ct",
- "winner_team": 3288
}, - {
- "ct": 3288,
- "outcome": "eliminated",
- "round": 11,
- "terrorists": 3256,
- "winner_side": "ct",
- "winner_team": 3288
}, - {
- "ct": 3288,
- "outcome": "eliminated",
- "round": 12,
- "terrorists": 3256,
- "winner_side": "terrorists",
- "winner_team": 3256
}, - {
- "ct": 3288,
- "outcome": "eliminated",
- "round": 13,
- "terrorists": 3256,
- "winner_side": "terrorists",
- "winner_team": 3256
}, - {
- "ct": 3288,
- "outcome": "eliminated",
- "round": 14,
- "terrorists": 3256,
- "winner_side": "terrorists",
- "winner_team": 3256
}, - {
- "ct": 3256,
- "outcome": "eliminated",
- "round": 15,
- "terrorists": 3288,
- "winner_side": "ct",
- "winner_team": 3256
}, - {
- "ct": 3256,
- "outcome": "defused",
- "round": 16,
- "terrorists": 3288,
- "winner_side": "ct",
- "winner_team": 3256
}, - {
- "ct": 3256,
- "outcome": "eliminated",
- "round": 17,
- "terrorists": 3288,
- "winner_side": "ct",
- "winner_team": 3256
}, - {
- "ct": 3256,
- "outcome": "defused",
- "round": 18,
- "terrorists": 3288,
- "winner_side": "ct",
- "winner_team": 3256
}, - {
- "ct": 3256,
- "outcome": "eliminated",
- "round": 19,
- "terrorists": 3288,
- "winner_side": "terrorists",
- "winner_team": 3288
}, - {
- "ct": 3256,
- "outcome": "eliminated",
- "round": 20,
- "terrorists": 3288,
- "winner_side": "terrorists",
- "winner_team": 3288
}, - {
- "ct": 3256,
- "outcome": "eliminated",
- "round": 21,
- "terrorists": 3288,
- "winner_side": "ct",
- "winner_team": 3256
}, - {
- "ct": 3256,
- "outcome": "eliminated",
- "round": 22,
- "terrorists": 3288,
- "winner_side": "ct",
- "winner_team": 3256
}, - {
- "ct": 3256,
- "outcome": "defused",
- "round": 23,
- "terrorists": 3288,
- "winner_side": "ct",
- "winner_team": 3256
}
], - "rounds_score": [
- {
- "score": 7,
- "team_id": 3288
}, - {
- "score": 16,
- "team_id": 3256
}
], - "status": "finished",
- "teams": [
- {
- "acronym": null,
- "id": 3256,
- "location": "US",
- "modified_at": "2019-09-20T16:25:16Z",
- "name": "NRG",
- "slug": "nrg"
}, - {
- "acronym": null,
- "id": 3288,
- "location": "RU",
- "modified_at": "2020-12-11T19:47:19Z",
- "name": "Virtus.pro",
- "slug": "virtus-pro-75b4744b-43d9-4ebd-a8dc-f1e0f9be69b3"
}
], - "winner": {
- "id": 3256,
- "type": "Team"
}, - "winner_type": "Team"
}
List games for a given CS:GO match
required | MatchID (integer) or MatchSlug (string) (MatchIDOrSlug) A match ID or slug |
object (filter_over_CSGOGames) Example: filter[forfeit]=false 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_CSGOGames) Example: range[position]=2,4 Options to select results within ranges | |
object (search_over_CSGOGames) Example: search[status]=finished Options to search results | |
sort | Array of any (sort_over_CSGOGames) non-empty Items Enum: "begin_at" "-begin_at" "complete" "-complete" "end_at" "-end_at" "finished" "-finished" "forfeit" "-forfeit" "id" "-id" "length" "-length" "match_id" "-match_id" "position" "-position" "status" "-status" "video_url" "-video_url" Example: sort=-length Options to sort results |
/csgo/matches/168297/games?page[size]=1
[- {
- "begin_at": "2018-11-30T16:44:14Z",
- "complete": true,
- "detailed_stats": true,
- "end_at": "2018-11-30T17:30:14Z",
- "finished": true,
- "forfeit": false,
- "id": 4505,
- "length": 2760,
- "map": {
- "id": 4,
- "name": "Cache"
}, - "match": {
- "begin_at": "2018-11-30T15:50:14Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": "2018-11-30T17:30:14Z",
- "forfeit": false,
- "game_advantage": null,
- "games": [
- {
- "begin_at": "2018-11-30T15:50:14Z",
- "complete": true,
- "detailed_stats": true,
- "end_at": "2018-11-30T16:44:14Z",
- "finished": true,
- "forfeit": false,
- "id": 4504,
- "length": 3240,
- "match_id": 168297,
- "position": 1,
- "status": "finished",
- "video_url": null,
- "winner": {
- "id": 3256,
- "type": "Team"
}, - "winner_type": "Team"
}, - {
- "begin_at": "2018-11-30T16:44:14Z",
- "complete": true,
- "detailed_stats": true,
- "end_at": "2018-11-30T17:30:14Z",
- "finished": true,
- "forfeit": false,
- "id": 4505,
- "length": 2760,
- "match_id": 168297,
- "position": 2,
- "status": "finished",
- "winner": {
- "id": 3256,
- "type": "Team"
}, - "winner_type": "Team"
}
], - "id": 168297,
- "league": {
- "id": 4175,
- "modified_at": "2019-02-18T20:17:30Z",
- "name": "SuperNova",
- "slug": "cs-go-supernova",
- "url": null
}, - "league_id": 4175,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2019-10-25T12:15:48Z",
- "name": "Decider Match: NRG vs Virtus.Pro",
- "number_of_games": 3,
- "official_stream_url": null,
- "opponents": [
- {
- "opponent": {
- "acronym": null,
- "id": 3256,
- "location": "US",
- "modified_at": "2019-09-20T16:25:16Z",
- "name": "NRG",
- "slug": "nrg"
}, - "type": "Team"
}, - {
- "opponent": {
- "acronym": null,
- "id": 3288,
- "location": "RU",
- "modified_at": "2020-12-11T19:47:19Z",
- "name": "Virtus.pro",
- "slug": "virtus-pro-75b4744b-43d9-4ebd-a8dc-f1e0f9be69b3"
}, - "type": "Team"
}
], - "original_scheduled_at": "2018-11-30T15:50:14Z",
- "rescheduled": false,
- "results": [
- {
- "score": 2,
- "team_id": 3256
}, - {
- "score": 0,
- "team_id": 3288
}
], - "scheduled_at": "2018-11-30T15:00:00Z",
- "serie": {
- "begin_at": "2018-11-28T23:00:00Z",
- "description": null,
- "end_at": "2018-12-02T21:05:00Z",
- "full_name": "Malta 2018",
- "id": 1647,
- "league_id": 4175,
- "modified_at": "2018-12-03T09:40:37Z",
- "name": "Malta",
- "season": null,
- "slug": "cs-go-supernova-malta-2018",
- "tier": null,
- "winner_id": 3213,
- "winner_type": "Team",
- "year": 2018
}, - "serie_id": 1647,
- "slug": "2018-11-30-68a4424b-d84e-4641-bc57-a65971b3f069",
- "status": "finished",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
- "embed_url": null,
- "raw_url": null
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament": {
- "begin_at": "2018-11-28T23:00:00Z",
- "end_at": "2018-11-30T17:30:00Z",
- "id": 1885,
- "league_id": 4175,
- "live_supported": false,
- "modified_at": "2019-07-10T00:09:05Z",
- "name": "Group a",
- "prizepool": "5000 United States Dollar",
- "serie_id": 1647,
- "slug": "cs-go-supernova-malta-2018-group-a",
- "winner_id": 3213,
- "winner_type": "Team"
}, - "tournament_id": 1885,
- "videogame": {
- "id": 3,
- "name": "CS:GO",
- "slug": "cs-go"
}, - "videogame_version": null,
- "winner": {
- "acronym": null,
- "id": 3256,
- "location": "US",
- "modified_at": "2019-09-20T16:25:16Z",
- "name": "NRG",
- "slug": "nrg"
}, - "winner_id": 3256
}, - "match_id": 168297,
- "players": [
- {
- "adr": 56,
- "assists": 2,
- "deaths": 19,
- "first_kills_diff": -1,
- "flash_assists": 0,
- "game_id": 4505,
- "headshots": 2,
- "k_d_diff": -8,
- "kast": 39.1,
- "kills": 11,
- "opponent": {
- "acronym": null,
- "id": 3256,
- "location": "US",
- "modified_at": "2019-09-20T16:25:16Z",
- "name": "NRG",
- "slug": "nrg"
}, - "player": {
- "birth_year": 1987,
- "birthday": "1987-06-15",
- "first_name": "Filip",
- "hometown": "Poland",
- "id": 17503,
- "last_name": "Kubski",
- "name": "NEO",
- "nationality": "PL",
- "role": null,
- "slug": "neo-d783d97f-d762-48df-b7f9-d35bd917daa2"
}, - "rating": 0.54,
- "team": {
- "acronym": null,
- "id": 3288,
- "location": "RU",
- "modified_at": "2020-12-11T19:47:19Z",
- "name": "Virtus.pro",
- "slug": "virtus-pro-75b4744b-43d9-4ebd-a8dc-f1e0f9be69b3"
}
}, - {
- "adr": 82.4,
- "assists": 4,
- "deaths": 19,
- "first_kills_diff": -3,
- "flash_assists": 1,
- "game_id": 4505,
- "headshots": 6,
- "k_d_diff": -2,
- "kast": 60.9,
- "kills": 17,
- "opponent": {
- "acronym": null,
- "id": 3256,
- "location": "US",
- "modified_at": "2019-09-20T16:25:16Z",
- "name": "NRG",
- "slug": "nrg"
}, - "player": {
- "birth_year": 1988,
- "birthday": "1988-04-11",
- "first_name": "Jarosław",
- "hometown": "Poland",
- "id": 17506,
- "last_name": "Jarząbkowski",
- "name": "pashaBiceps",
- "nationality": "PL",
- "role": null,
- "slug": "pashabiceps"
}, - "rating": 0.98,
- "team": {
- "acronym": null,
- "id": 3288,
- "location": "RU",
- "modified_at": "2020-12-11T19:47:19Z",
- "name": "Virtus.pro",
- "slug": "virtus-pro-75b4744b-43d9-4ebd-a8dc-f1e0f9be69b3"
}
}, - {
- "adr": 93.3,
- "assists": 2,
- "deaths": 14,
- "first_kills_diff": 1,
- "flash_assists": 0,
- "game_id": 4505,
- "headshots": 13,
- "k_d_diff": 6,
- "kast": 78.3,
- "kills": 20,
- "opponent": {
- "acronym": null,
- "id": 3288,
- "location": "RU",
- "modified_at": "2020-12-11T19:47:19Z",
- "name": "Virtus.pro",
- "slug": "virtus-pro-75b4744b-43d9-4ebd-a8dc-f1e0f9be69b3"
}, - "player": {
- "birth_year": 1995,
- "birthday": "1995-01-02",
- "first_name": "Jacob",
- "hometown": "United States",
- "id": 17588,
- "last_name": "Medina",
- "name": "FugLy",
- "nationality": "US",
- "role": null,
- "slug": "fugly"
}, - "rating": 1.32,
- "team": {
- "acronym": null,
- "id": 3256,
- "location": "US",
- "modified_at": "2019-09-20T16:25:16Z",
- "name": "NRG",
- "slug": "nrg"
}
}, - {
- "adr": 62.6,
- "assists": 5,
- "deaths": 14,
- "first_kills_diff": -2,
- "flash_assists": 1,
- "game_id": 4505,
- "headshots": 7,
- "k_d_diff": -1,
- "kast": 78.3,
- "kills": 13,
- "opponent": {
- "acronym": null,
- "id": 3288,
- "location": "RU",
- "modified_at": "2020-12-11T19:47:19Z",
- "name": "Virtus.pro",
- "slug": "virtus-pro-75b4744b-43d9-4ebd-a8dc-f1e0f9be69b3"
}, - "player": {
- "birth_year": 1993,
- "birthday": "1993-07-29",
- "first_name": "Damian",
- "hometown": "Canada",
- "id": 17590,
- "last_name": "Steele",
- "name": "daps",
- "nationality": "CA",
- "role": null,
- "slug": "daps"
}, - "rating": 0.93,
- "team": {
- "acronym": null,
- "id": 3256,
- "location": "US",
- "modified_at": "2019-09-20T16:25:16Z",
- "name": "NRG",
- "slug": "nrg"
}
}, - {
- "adr": 101.5,
- "assists": 4,
- "deaths": 12,
- "first_kills_diff": 4,
- "flash_assists": 0,
- "game_id": 4505,
- "headshots": 17,
- "k_d_diff": 9,
- "kast": 87,
- "kills": 21,
- "opponent": {
- "acronym": null,
- "id": 3288,
- "location": "RU",
- "modified_at": "2020-12-11T19:47:19Z",
- "name": "Virtus.pro",
- "slug": "virtus-pro-75b4744b-43d9-4ebd-a8dc-f1e0f9be69b3"
}, - "player": {
- "birth_year": 1998,
- "birthday": "1998-05-22",
- "first_name": "Vincent",
- "hometown": "United States",
- "id": 17714,
- "last_name": "Cayonte",
- "name": "Brehze",
- "nationality": "US",
- "role": null,
- "slug": "brehze"
}, - "rating": 1.6,
- "team": {
- "acronym": null,
- "id": 3256,
- "location": "US",
- "modified_at": "2019-09-20T16:25:16Z",
- "name": "NRG",
- "slug": "nrg"
}
}, - {
- "adr": 79.9,
- "assists": 3,
- "deaths": 12,
- "first_kills_diff": -1,
- "flash_assists": 2,
- "game_id": 4505,
- "headshots": 5,
- "k_d_diff": 8,
- "kast": 73.9,
- "kills": 20,
- "opponent": {
- "acronym": null,
- "id": 3288,
- "location": "RU",
- "modified_at": "2020-12-11T19:47:19Z",
- "name": "Virtus.pro",
- "slug": "virtus-pro-75b4744b-43d9-4ebd-a8dc-f1e0f9be69b3"
}, - "player": {
- "birth_year": 1999,
- "birthday": "1999-09-07",
- "first_name": "Tsvetelin",
- "hometown": "Bulgaria",
- "id": 17725,
- "last_name": "Dimitrov",
- "name": "CeRq",
- "nationality": "BG",
- "role": null,
- "slug": "cerq"
}, - "rating": 1.35,
- "team": {
- "acronym": null,
- "id": 3256,
- "location": "US",
- "modified_at": "2019-09-20T16:25:16Z",
- "name": "NRG",
- "slug": "nrg"
}
}, - {
- "adr": 94.3,
- "assists": 4,
- "deaths": 13,
- "first_kills_diff": -1,
- "flash_assists": 1,
- "game_id": 4505,
- "headshots": 14,
- "k_d_diff": 8,
- "kast": 69.6,
- "kills": 21,
- "opponent": {
- "acronym": null,
- "id": 3288,
- "location": "RU",
- "modified_at": "2020-12-11T19:47:19Z",
- "name": "Virtus.pro",
- "slug": "virtus-pro-75b4744b-43d9-4ebd-a8dc-f1e0f9be69b3"
}, - "player": {
- "birth_year": 2000,
- "birthday": "2000-03-02",
- "first_name": "Ethan",
- "hometown": "United States",
- "id": 17733,
- "last_name": "Arnold",
- "name": "Ethan",
- "nationality": "US",
- "role": null,
- "slug": "nahte"
}, - "rating": 1.45,
- "team": {
- "acronym": null,
- "id": 3256,
- "location": "US",
- "modified_at": "2019-09-20T16:25:16Z",
- "name": "NRG",
- "slug": "nrg"
}
}, - {
- "adr": 58,
- "assists": 2,
- "deaths": 20,
- "first_kills_diff": 0,
- "flash_assists": 0,
- "game_id": 4505,
- "headshots": 8,
- "k_d_diff": -8,
- "kast": 60.9,
- "kills": 12,
- "opponent": {
- "acronym": null,
- "id": 3256,
- "location": "US",
- "modified_at": "2019-09-20T16:25:16Z",
- "name": "NRG",
- "slug": "nrg"
}, - "player": {
- "birth_year": 1996,
- "birthday": "1996-12-29",
- "first_name": "Michał",
- "hometown": "Poland",
- "id": 17789,
- "last_name": "Müller",
- "name": "MICHU",
- "nationality": "PL",
- "role": null,
- "slug": "michu"
}, - "rating": 0.76,
- "team": {
- "acronym": null,
- "id": 3288,
- "location": "RU",
- "modified_at": "2020-12-11T19:47:19Z",
- "name": "Virtus.pro",
- "slug": "virtus-pro-75b4744b-43d9-4ebd-a8dc-f1e0f9be69b3"
}
}, - {
- "adr": 86.3,
- "assists": 4,
- "deaths": 17,
- "first_kills_diff": 4,
- "flash_assists": 0,
- "game_id": 4505,
- "headshots": 3,
- "k_d_diff": 2,
- "kast": 69.6,
- "kills": 19,
- "opponent": {
- "acronym": null,
- "id": 3256,
- "location": "US",
- "modified_at": "2019-09-20T16:25:16Z",
- "name": "NRG",
- "slug": "nrg"
}, - "player": {
- "birth_year": 1998,
- "birthday": "1998-01-31",
- "first_name": "Michał",
- "hometown": "Poland",
- "id": 17847,
- "last_name": "Rudzki",
- "name": "snatchie",
- "nationality": "PL",
- "role": null,
- "slug": "snatchie"
}, - "rating": 1.17,
- "team": {
- "acronym": null,
- "id": 3288,
- "location": "RU",
- "modified_at": "2020-12-11T19:47:19Z",
- "name": "Virtus.pro",
- "slug": "virtus-pro-75b4744b-43d9-4ebd-a8dc-f1e0f9be69b3"
}
}, - {
- "adr": 52.4,
- "assists": 2,
- "deaths": 20,
- "first_kills_diff": -1,
- "flash_assists": 0,
- "game_id": 4505,
- "headshots": 4,
- "k_d_diff": -14,
- "kast": 43.5,
- "kills": 6,
- "opponent": {
- "acronym": null,
- "id": 3256,
- "location": "US",
- "modified_at": "2019-09-20T16:25:16Z",
- "name": "NRG",
- "slug": "nrg"
}, - "player": {
- "birth_year": 1994,
- "birthday": "1994-07-28",
- "first_name": "Piotr",
- "hometown": "Poland",
- "id": 18160,
- "last_name": "Taterka",
- "name": "morelz",
- "nationality": "PL",
- "role": null,
- "slug": "morelz"
}, - "rating": 0.38,
- "team": {
- "acronym": null,
- "id": 3288,
- "location": "RU",
- "modified_at": "2020-12-11T19:47:19Z",
- "name": "Virtus.pro",
- "slug": "virtus-pro-75b4744b-43d9-4ebd-a8dc-f1e0f9be69b3"
}
}
], - "position": 2,
- "rounds": [
- {
- "ct": 3288,
- "outcome": "eliminated",
- "round": 1,
- "terrorists": 3256,
- "winner_side": "terrorists",
- "winner_team": 3256
}, - {
- "ct": 3288,
- "outcome": "eliminated",
- "round": 2,
- "terrorists": 3256,
- "winner_side": "terrorists",
- "winner_team": 3256
}, - {
- "ct": 3288,
- "outcome": "eliminated",
- "round": 3,
- "terrorists": 3256,
- "winner_side": "terrorists",
- "winner_team": 3256
}, - {
- "ct": 3288,
- "outcome": "eliminated",
- "round": 4,
- "terrorists": 3256,
- "winner_side": "ct",
- "winner_team": 3288
}, - {
- "ct": 3288,
- "outcome": "eliminated",
- "round": 5,
- "terrorists": 3256,
- "winner_side": "terrorists",
- "winner_team": 3256
}, - {
- "ct": 3288,
- "outcome": "eliminated",
- "round": 6,
- "terrorists": 3256,
- "winner_side": "terrorists",
- "winner_team": 3256
}, - {
- "ct": 3288,
- "outcome": "eliminated",
- "round": 7,
- "terrorists": 3256,
- "winner_side": "terrorists",
- "winner_team": 3256
}, - {
- "ct": 3288,
- "outcome": "eliminated",
- "round": 8,
- "terrorists": 3256,
- "winner_side": "ct",
- "winner_team": 3288
}, - {
- "ct": 3288,
- "outcome": "eliminated",
- "round": 9,
- "terrorists": 3256,
- "winner_side": "ct",
- "winner_team": 3288
}, - {
- "ct": 3288,
- "outcome": "defused",
- "round": 10,
- "terrorists": 3256,
- "winner_side": "ct",
- "winner_team": 3288
}, - {
- "ct": 3288,
- "outcome": "eliminated",
- "round": 11,
- "terrorists": 3256,
- "winner_side": "ct",
- "winner_team": 3288
}, - {
- "ct": 3288,
- "outcome": "eliminated",
- "round": 12,
- "terrorists": 3256,
- "winner_side": "terrorists",
- "winner_team": 3256
}, - {
- "ct": 3288,
- "outcome": "eliminated",
- "round": 13,
- "terrorists": 3256,
- "winner_side": "terrorists",
- "winner_team": 3256
}, - {
- "ct": 3288,
- "outcome": "eliminated",
- "round": 14,
- "terrorists": 3256,
- "winner_side": "terrorists",
- "winner_team": 3256
}, - {
- "ct": 3256,
- "outcome": "eliminated",
- "round": 15,
- "terrorists": 3288,
- "winner_side": "ct",
- "winner_team": 3256
}, - {
- "ct": 3256,
- "outcome": "defused",
- "round": 16,
- "terrorists": 3288,
- "winner_side": "ct",
- "winner_team": 3256
}, - {
- "ct": 3256,
- "outcome": "eliminated",
- "round": 17,
- "terrorists": 3288,
- "winner_side": "ct",
- "winner_team": 3256
}, - {
- "ct": 3256,
- "outcome": "defused",
- "round": 18,
- "terrorists": 3288,
- "winner_side": "ct",
- "winner_team": 3256
}, - {
- "ct": 3256,
- "outcome": "eliminated",
- "round": 19,
- "terrorists": 3288,
- "winner_side": "terrorists",
- "winner_team": 3288
}, - {
- "ct": 3256,
- "outcome": "eliminated",
- "round": 20,
- "terrorists": 3288,
- "winner_side": "terrorists",
- "winner_team": 3288
}, - {
- "ct": 3256,
- "outcome": "eliminated",
- "round": 21,
- "terrorists": 3288,
- "winner_side": "ct",
- "winner_team": 3256
}, - {
- "ct": 3256,
- "outcome": "eliminated",
- "round": 22,
- "terrorists": 3288,
- "winner_side": "ct",
- "winner_team": 3256
}, - {
- "ct": 3256,
- "outcome": "defused",
- "round": 23,
- "terrorists": 3288,
- "winner_side": "ct",
- "winner_team": 3256
}
], - "rounds_score": [
- {
- "score": 7,
- "team_id": 3288
}, - {
- "score": 16,
- "team_id": 3256
}
], - "status": "finished",
- "teams": [
- {
- "acronym": null,
- "id": 3256,
- "location": "US",
- "modified_at": "2019-09-20T16:25:16Z",
- "name": "NRG",
- "slug": "nrg"
}, - {
- "acronym": null,
- "id": 3288,
- "location": "RU",
- "modified_at": "2020-12-11T19:47:19Z",
- "name": "Virtus.pro",
- "slug": "virtus-pro-75b4744b-43d9-4ebd-a8dc-f1e0f9be69b3"
}
], - "winner": {
- "id": 3256,
- "type": "Team"
}, - "winner_type": "Team"
}
]
List CS:GO leagues
object (filter_over_CSGOLeagues) 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_CSGOLeagues) Example: range[modified_at]=2019-04-08T17:00:00Z,2019-10-08T22:00:00Z Options to select results within ranges | |
object (search_over_CSGOLeagues) Example: search[name]=Contenders Options to search results | |
sort | Array of any (sort_over_CSGOLeagues) 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 |
/csgo/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"
}
}
]
List maps
object (filter_over_CSGOMaps) Example: filter[id]=2,5,6 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_CSGOMaps) Options to select results within ranges | |
object (search_over_CSGOMaps) Example: search[name]=infer Options to search results | |
sort | Array of any (sort_over_CSGOMaps) non-empty Items Enum: "id" "-id" "name" "-name" Example: sort=-name Options to sort results |
/csgo/maps?page[size]=2
[- {
- "id": 28,
- "name": "Tuscan"
}, - {
- "id": 20,
- "name": "Vertigo"
}
]
List matches for the CS:GO videogame
object (filter_over_CSGOMatches) 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_CSGOMatches) Example: range[begin_at]=2019-04-08T17:00:00Z,2019-10-08T22:00:00Z Options to select results within ranges | |
object (search_over_CSGOMatches) Example: search[name]=Finals Options to search results | |
sort | Array of any (sort_over_CSGOMatches) 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 |
/csgo/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 CS:GO matches
object (filter_over_CSGOMatches) 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_CSGOMatches) Example: range[begin_at]=2019-04-08T17:00:00Z,2019-10-08T22:00:00Z Options to select results within ranges | |
object (search_over_CSGOMatches) Example: search[name]=Finals Options to search results | |
sort | Array of any (sort_over_CSGOMatches) 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 |
/csgo/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 running CS:GO matches
object (filter_over_CSGOMatches) 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_CSGOMatches) Example: range[begin_at]=2019-04-08T17:00:00Z,2019-10-08T22:00:00Z Options to select results within ranges | |
object (search_over_CSGOMatches) Example: search[name]=Finals Options to search results | |
sort | Array of any (sort_over_CSGOMatches) 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 |
/csgo/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 CS:GO matches
object (filter_over_CSGOMatches) 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_CSGOMatches) Example: range[begin_at]=2019-04-08T17:00:00Z,2019-10-08T22:00:00Z Options to select results within ranges | |
object (search_over_CSGOMatches) Example: search[name]=Finals Options to search results | |
sort | Array of any (sort_over_CSGOMatches) 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 |
/csgo/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 CS:GO videogame
object (filter_over_CSGOPlayers) 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_CSGOPlayers) Example: range[name]=f,i Options to select results within ranges | |
object (search_over_CSGOPlayers) Example: search[role]=tank Options to search results | |
sort | Array of any (sort_over_CSGOPlayers) 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 |
/csgo/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"
}
]
Equivalent route: /series/{serie_id_or_slug}/players
required | SerieID (integer) or SerieSlug (string) (SerieIDOrSlug) A serie ID or slug |
object (filter_over_CSGOPlayers) 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_CSGOPlayers) Example: range[name]=f,i Options to select results within ranges | |
object (search_over_CSGOPlayers) Example: search[role]=tank Options to search results | |
sort | Array of any (sort_over_CSGOPlayers) 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 |
/csgo/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"
}
]
Equivalent route: /tournaments/{tournament_id_or_slug}/players
required | TournamentID (integer) or TournamentSlug (string) (TournamentIDOrSlug) A tournament ID or slug |
object (filter_over_CSGOPlayers) 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_CSGOPlayers) Example: range[name]=f,i Options to select results within ranges | |
object (search_over_CSGOPlayers) Example: search[role]=tank Options to search results | |
sort | Array of any (sort_over_CSGOPlayers) 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 |
/csgo/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 series for the CS:GO videogame
object (filter_over_CSGOSeries) 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_CSGOSeries) Example: range[begin_at]=2019-04-08T17:00:00Z,2019-10-08T22:00:00Z Options to select results within ranges | |
object (search_over_CSGOSeries) Example: search[slug]=lck Options to search results | |
sort | Array of any (sort_over_CSGOSeries) 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 |
/csgo/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 CS:GO series
object (filter_over_CSGOSeries) 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_CSGOSeries) Example: range[begin_at]=2019-04-08T17:00:00Z,2019-10-08T22:00:00Z Options to select results within ranges | |
object (search_over_CSGOSeries) Example: search[slug]=lck Options to search results | |
sort | Array of any (sort_over_CSGOSeries) 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 |
/csgo/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 running CS:GO series
object (filter_over_CSGOSeries) 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_CSGOSeries) Example: range[begin_at]=2019-04-08T17:00:00Z,2019-10-08T22:00:00Z Options to select results within ranges | |
object (search_over_CSGOSeries) Example: search[slug]=lck Options to search results | |
sort | Array of any (sort_over_CSGOSeries) 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 |
/csgo/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 CS:GO series
object (filter_over_CSGOSeries) 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_CSGOSeries) Example: range[begin_at]=2019-04-08T17:00:00Z,2019-10-08T22:00:00Z Options to select results within ranges | |
object (search_over_CSGOSeries) Example: search[slug]=lck Options to search results | |
sort | Array of any (sort_over_CSGOSeries) 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 |
/csgo/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 detailed statistics of CS:GO players for the given match
required | MatchID (integer) or MatchSlug (string) (MatchIDOrSlug) A match ID or slug |
/csgo/matches/227912/players/stats
{- "teams": [
- {
- "id": 3330,
- "name": "Bravado",
- "players": [
- {
- "first_name": "Ruan",
- "id": 18337,
- "last_name": "van Wyk",
- "name": "ELUSIVE",
- "stats": {
- "counts": {
- "assists": 7,
- "deaths": 36,
- "first_kills_diff": -1,
- "flash_assists": 1,
- "games_played": 2,
- "headshots": 11,
- "k_d_diff": -15,
- "kills": 21,
- "rounds_played": 46
}, - "per_game_averages": {
- "adr": 53.55,
- "assists": 3.5,
- "deaths": 18,
- "first_kills_diff": -0.5,
- "flash_assists": 0.5,
- "headshots": 5.5,
- "hltv_game_rating": 0.62,
- "k_d_diff": -7.5,
- "kast": 56.2,
- "kills": 10.5
}, - "per_round_averages": {
- "assists": 0.15,
- "deaths": 0.78,
- "first_kills_diff": -0.02,
- "flash_assists": 0.02,
- "headshots": 0.24,
- "k_d_diff": -0.33,
- "kills": 0.46
}
}
}, - {
- "first_name": "Dimitri",
- "id": 17995,
- "last_name": "Hadjipaschali",
- "name": "Detrony",
- "stats": {
- "counts": {
- "assists": 9,
- "deaths": 34,
- "first_kills_diff": -3,
- "flash_assists": 6,
- "games_played": 2,
- "headshots": 15,
- "k_d_diff": -4,
- "kills": 30,
- "rounds_played": 46
}, - "per_game_averages": {
- "adr": 63.65,
- "assists": 4.5,
- "deaths": 17,
- "first_kills_diff": -1.5,
- "flash_assists": 3,
- "headshots": 7.5,
- "hltv_game_rating": 0.84,
- "k_d_diff": -2,
- "kast": 58.55,
- "kills": 15
}, - "per_round_averages": {
- "assists": 0.2,
- "deaths": 0.74,
- "first_kills_diff": -0.07,
- "flash_assists": 0.13,
- "headshots": 0.33,
- "k_d_diff": -0.09,
- "kills": 0.65
}
}
}, - {
- "first_name": "Aran",
- "id": 18336,
- "last_name": "Groesbeek",
- "name": "Sonic",
- "stats": {
- "counts": {
- "assists": 4,
- "deaths": 38,
- "first_kills_diff": -1,
- "flash_assists": 0,
- "games_played": 2,
- "headshots": 11,
- "k_d_diff": -15,
- "kills": 23,
- "rounds_played": 46
}, - "per_game_averages": {
- "adr": 60.9,
- "assists": 2,
- "deaths": 19,
- "first_kills_diff": -0.5,
- "flash_assists": 0,
- "headshots": 5.5,
- "hltv_game_rating": 0.76,
- "k_d_diff": -7.5,
- "kast": 61.8,
- "kills": 11.5
}, - "per_round_averages": {
- "assists": 0.09,
- "deaths": 0.83,
- "first_kills_diff": -0.02,
- "flash_assists": 0,
- "headshots": 0.24,
- "k_d_diff": -0.33,
- "kills": 0.5
}
}
}, - {
- "first_name": "Rhys",
- "id": 18339,
- "last_name": "Armstrong",
- "name": "Fadey",
- "stats": {
- "counts": {
- "assists": 3,
- "deaths": 39,
- "first_kills_diff": 0,
- "flash_assists": 0,
- "games_played": 2,
- "headshots": 13,
- "k_d_diff": -16,
- "kills": 23,
- "rounds_played": 46
}, - "per_game_averages": {
- "adr": 59.3,
- "assists": 1.5,
- "deaths": 19.5,
- "first_kills_diff": 0,
- "flash_assists": 0,
- "headshots": 6.5,
- "hltv_game_rating": 0.72,
- "k_d_diff": -8,
- "kast": 55.45,
- "kills": 11.5
}, - "per_round_averages": {
- "assists": 0.07,
- "deaths": 0.85,
- "first_kills_diff": 0,
- "flash_assists": 0,
- "headshots": 0.28,
- "k_d_diff": -0.35,
- "kills": 0.5
}
}
}, - {
- "first_name": "Johnny",
- "id": 18338,
- "last_name": "Theodosiou",
- "name": "JT",
- "stats": {
- "counts": {
- "assists": 8,
- "deaths": 38,
- "first_kills_diff": -1,
- "flash_assists": 1,
- "games_played": 2,
- "headshots": 13,
- "k_d_diff": -12,
- "kills": 26,
- "rounds_played": 46
}, - "per_game_averages": {
- "adr": 69.65,
- "assists": 4,
- "deaths": 19,
- "first_kills_diff": -0.5,
- "flash_assists": 0.5,
- "headshots": 6.5,
- "hltv_game_rating": 0.79,
- "k_d_diff": -6,
- "kast": 51.45,
- "kills": 13
}, - "per_round_averages": {
- "assists": 0.17,
- "deaths": 0.83,
- "first_kills_diff": -0.02,
- "flash_assists": 0.02,
- "headshots": 0.28,
- "k_d_diff": -0.26,
- "kills": 0.57
}
}
}
], - "slug": "bravado"
}, - {
- "id": 3251,
- "name": "ENCE",
- "players": [
- {
- "first_name": "Jani",
- "id": 17687,
- "last_name": "Jussila",
- "name": "Aerial",
- "stats": {
- "counts": {
- "assists": 12,
- "deaths": 25,
- "first_kills_diff": 1,
- "flash_assists": 1,
- "games_played": 2,
- "headshots": 9,
- "k_d_diff": 4,
- "kills": 29,
- "rounds_played": 46
}, - "per_game_averages": {
- "adr": 75.7,
- "assists": 6,
- "deaths": 12.5,
- "first_kills_diff": 0.5,
- "flash_assists": 0.5,
- "headshots": 4.5,
- "hltv_game_rating": 1.18,
- "k_d_diff": 2,
- "kast": 79.25,
- "kills": 14.5
}, - "per_round_averages": {
- "assists": 0.26,
- "deaths": 0.54,
- "first_kills_diff": 0.02,
- "flash_assists": 0.02,
- "headshots": 0.2,
- "k_d_diff": 0.09,
- "kills": 0.63
}
}
}, - {
- "first_name": "Jere",
- "id": 17689,
- "last_name": "Salo",
- "name": "sergej",
- "stats": {
- "counts": {
- "assists": 10,
- "deaths": 21,
- "first_kills_diff": -2,
- "flash_assists": 2,
- "games_played": 2,
- "headshots": 19,
- "k_d_diff": 21,
- "kills": 42,
- "rounds_played": 46
}, - "per_game_averages": {
- "adr": 79.45,
- "assists": 5,
- "deaths": 10.5,
- "first_kills_diff": -1,
- "flash_assists": 1,
- "headshots": 9.5,
- "hltv_game_rating": 1.41,
- "k_d_diff": 10.5,
- "kast": 80.5,
- "kills": 21
}, - "per_round_averages": {
- "assists": 0.22,
- "deaths": 0.46,
- "first_kills_diff": -0.04,
- "flash_assists": 0.04,
- "headshots": 0.41,
- "k_d_diff": 0.46,
- "kills": 0.91
}
}
}, - {
- "first_name": "Aleksi",
- "id": 17688,
- "last_name": "Virolainen",
- "name": "Aleksib",
- "stats": {
- "counts": {
- "assists": 13,
- "deaths": 24,
- "first_kills_diff": 0,
- "flash_assists": 4,
- "games_played": 2,
- "headshots": 16,
- "k_d_diff": 10,
- "kills": 34,
- "rounds_played": 46
}, - "per_game_averages": {
- "adr": 93.4,
- "assists": 6.5,
- "deaths": 12,
- "first_kills_diff": 0,
- "flash_assists": 2,
- "headshots": 8,
- "hltv_game_rating": 1.34,
- "k_d_diff": 5,
- "kast": 82.85,
- "kills": 17
}, - "per_round_averages": {
- "assists": 0.28,
- "deaths": 0.52,
- "first_kills_diff": 0,
- "flash_assists": 0.09,
- "headshots": 0.35,
- "k_d_diff": 0.22,
- "kills": 0.74
}
}
}, - {
- "first_name": "Sami",
- "id": 17690,
- "last_name": "Laasanen",
- "name": "xseveN",
- "stats": {
- "counts": {
- "assists": 12,
- "deaths": 30,
- "first_kills_diff": 4,
- "flash_assists": 1,
- "games_played": 2,
- "headshots": 17,
- "k_d_diff": 5,
- "kills": 35,
- "rounds_played": 46
}, - "per_game_averages": {
- "adr": 83.35,
- "assists": 6,
- "deaths": 15,
- "first_kills_diff": 2,
- "flash_assists": 0.5,
- "headshots": 8.5,
- "hltv_game_rating": 1.38,
- "k_d_diff": 2.5,
- "kast": 80.5,
- "kills": 17.5
}, - "per_round_averages": {
- "assists": 0.26,
- "deaths": 0.65,
- "first_kills_diff": 0.09,
- "flash_assists": 0.02,
- "headshots": 0.37,
- "k_d_diff": 0.11,
- "kills": 0.76
}
}
}, - {
- "first_name": "Aleksi",
- "id": 17565,
- "last_name": "Jalli",
- "name": "allu",
- "stats": {
- "counts": {
- "assists": 9,
- "deaths": 23,
- "first_kills_diff": 3,
- "flash_assists": 3,
- "games_played": 2,
- "headshots": 8,
- "k_d_diff": 22,
- "kills": 45,
- "rounds_played": 46
}, - "per_game_averages": {
- "adr": 93.3,
- "assists": 4.5,
- "deaths": 11.5,
- "first_kills_diff": 1.5,
- "flash_assists": 1.5,
- "headshots": 4,
- "hltv_game_rating": 1.51,
- "k_d_diff": 11,
- "kast": 78.1,
- "kills": 22.5
}, - "per_round_averages": {
- "assists": 0.2,
- "deaths": 0.5,
- "first_kills_diff": 0.07,
- "flash_assists": 0.07,
- "headshots": 0.17,
- "k_d_diff": 0.48,
- "kills": 0.98
}
}
}
], - "slug": "ence"
}
]
}
Get detailed statistics of a given CS:GO player for the given match
required | MatchID (integer) or MatchSlug (string) (MatchIDOrSlug) A match ID or slug |
required | PlayerID (integer) or PlayerSlug (string) (PlayerIDOrSlug) A player ID or slug |
/csgo/matches/544858/players/17515/stats
{- "birth_year": 1993,
- "birthday": "1993-02-22",
- "current_team": {
- "acronym": null,
- "id": 3455,
- "location": "FR",
- "modified_at": "2020-12-08T18:51:51Z",
- "name": "Vitality",
- "slug": "vitality-cs-go"
}, - "current_videogame": {
- "id": 3,
- "name": "CS:GO",
- "slug": "cs-go"
}, - "first_name": "Dan",
- "hometown": "France",
- "id": 17515,
- "last_games": [
- {
- "adr": 75.8,
- "assists": 4,
- "deaths": 11,
- "first_kills_diff": 2,
- "flash_assists": 0,
- "game_id": 33169,
- "headshots": 6,
- "k_d_diff": 3,
- "kast": 90.5,
- "kills": 14,
- "opponent": {
- "acronym": null,
- "id": 3209,
- "location": "DK",
- "modified_at": "2020-12-14T01:24:21Z",
- "name": "Astralis",
- "slug": "astralis"
}, - "player": {
- "birth_year": 1993,
- "birthday": "1993-02-22",
- "first_name": "Dan",
- "hometown": "France",
- "id": 17515,
- "last_name": "Madesclaire",
- "name": "apEX",
- "nationality": "FR",
- "role": null,
- "slug": "apex-4fa564ba-a70d-4463-ba36-7787a87af6f3"
}, - "rating": 1.27,
- "team": {
- "acronym": null,
- "id": 3455,
- "location": "FR",
- "modified_at": "2020-12-08T18:51:51Z",
- "name": "Vitality",
- "slug": "vitality-cs-go"
}
}, - {
- "adr": 99.9,
- "assists": 11,
- "deaths": 21,
- "first_kills_diff": 1,
- "flash_assists": 5,
- "game_id": 33168,
- "headshots": 12,
- "k_d_diff": 4,
- "kast": 70,
- "kills": 25,
- "opponent": {
- "acronym": null,
- "id": 3209,
- "location": "DK",
- "modified_at": "2020-12-14T01:24:21Z",
- "name": "Astralis",
- "slug": "astralis"
}, - "player": {
- "birth_year": 1993,
- "birthday": "1993-02-22",
- "first_name": "Dan",
- "hometown": "France",
- "id": 17515,
- "last_name": "Madesclaire",
- "name": "apEX",
- "nationality": "FR",
- "role": null,
- "slug": "apex-4fa564ba-a70d-4463-ba36-7787a87af6f3"
}, - "rating": 1.39,
- "team": {
- "acronym": null,
- "id": 3455,
- "location": "FR",
- "modified_at": "2020-12-08T18:51:51Z",
- "name": "Vitality",
- "slug": "vitality-cs-go"
}
}, - {
- "adr": 95.6,
- "assists": 4,
- "deaths": 11,
- "first_kills_diff": 0,
- "flash_assists": 1,
- "game_id": 33167,
- "headshots": 8,
- "k_d_diff": 7,
- "kast": 75,
- "kills": 18,
- "opponent": {
- "acronym": null,
- "id": 3209,
- "location": "DK",
- "modified_at": "2020-12-14T01:24:21Z",
- "name": "Astralis",
- "slug": "astralis"
}, - "player": {
- "birth_year": 1993,
- "birthday": "1993-02-22",
- "first_name": "Dan",
- "hometown": "France",
- "id": 17515,
- "last_name": "Madesclaire",
- "name": "apEX",
- "nationality": "FR",
- "role": null,
- "slug": "apex-4fa564ba-a70d-4463-ba36-7787a87af6f3"
}, - "rating": 1.36,
- "team": {
- "acronym": null,
- "id": 3455,
- "location": "FR",
- "modified_at": "2020-12-08T18:51:51Z",
- "name": "Vitality",
- "slug": "vitality-cs-go"
}
}, - {
- "adr": 95.3,
- "assists": 6,
- "deaths": 14,
- "first_kills_diff": 0,
- "flash_assists": 1,
- "game_id": 33148,
- "headshots": 7,
- "k_d_diff": -1,
- "kast": 72.2,
- "kills": 13,
- "opponent": {
- "acronym": null,
- "id": 3249,
- "location": "DE",
- "modified_at": "2020-12-08T04:34:03Z",
- "name": "BIG",
- "slug": "big"
}, - "player": {
- "birth_year": 1993,
- "birthday": "1993-02-22",
- "first_name": "Dan",
- "hometown": "France",
- "id": 17515,
- "last_name": "Madesclaire",
- "name": "apEX",
- "nationality": "FR",
- "role": null,
- "slug": "apex-4fa564ba-a70d-4463-ba36-7787a87af6f3"
}, - "rating": 1.18,
- "team": {
- "acronym": null,
- "id": 3455,
- "location": "FR",
- "modified_at": "2020-12-08T18:51:51Z",
- "name": "Vitality",
- "slug": "vitality-cs-go"
}
}, - {
- "adr": 104.5,
- "assists": 5,
- "deaths": 7,
- "first_kills_diff": 3,
- "flash_assists": 1,
- "game_id": 33147,
- "headshots": 9,
- "k_d_diff": 10,
- "kast": 82.4,
- "kills": 17,
- "opponent": {
- "acronym": null,
- "id": 3249,
- "location": "DE",
- "modified_at": "2020-12-08T04:34:03Z",
- "name": "BIG",
- "slug": "big"
}, - "player": {
- "birth_year": 1993,
- "birthday": "1993-02-22",
- "first_name": "Dan",
- "hometown": "France",
- "id": 17515,
- "last_name": "Madesclaire",
- "name": "apEX",
- "nationality": "FR",
- "role": null,
- "slug": "apex-4fa564ba-a70d-4463-ba36-7787a87af6f3"
}, - "rating": 1.84,
- "team": {
- "acronym": null,
- "id": 3455,
- "location": "FR",
- "modified_at": "2020-12-08T18:51:51Z",
- "name": "Vitality",
- "slug": "vitality-cs-go"
}
}
], - "last_name": "Madesclaire",
- "name": "apEX",
- "nationality": "FR",
- "role": null,
- "slug": "apex-4fa564ba-a70d-4463-ba36-7787a87af6f3",
- "stats": {
- "counts": {
- "assists": 15,
- "deaths": 36,
- "first_kills_diff": -2,
- "flash_assists": 3,
- "games_played": 2,
- "headshots": 17,
- "k_d_diff": -3,
- "kills": 33,
- "rounds_played": 54
}, - "match": {
- "begin_at": "2019-05-26T22:35:02Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": "2019-05-27T00:38:44Z",
- "forfeit": false,
- "game_advantage": null,
- "games": [
- {
- "begin_at": "2019-05-26T22:35:30Z",
- "complete": true,
- "detailed_stats": true,
- "end_at": "2019-05-26T23:23:05Z",
- "finished": true,
- "forfeit": false,
- "id": 7110,
- "length": 2854,
- "match_id": 544858,
- "position": 1,
- "status": "finished",
- "video_url": null,
- "winner": {
- "id": 3455,
- "type": "Team"
}, - "winner_type": "Team"
}, - {
- "begin_at": "2019-05-26T23:41:20Z",
- "complete": true,
- "detailed_stats": true,
- "end_at": "2019-05-27T00:38:44Z",
- "finished": true,
- "forfeit": false,
- "id": 7111,
- "length": 3444,
- "match_id": 544858,
- "position": 2,
- "status": "finished",
- "winner": {
- "id": 3455,
- "type": "Team"
}, - "winner_type": "Team"
}
], - "id": 544858,
- "league": {
- "id": 4168,
- "modified_at": "2019-12-11T11:07:32Z",
- "name": "cs_summit",
- "slug": "cs-go-cs_summit",
- "url": null
}, - "league_id": 4168,
- "live": {
- "opens_at": "2019-05-26T22:20:02Z",
- "supported": true,
- "url": "wss://live.dev.pandascore.co/matches/544858"
}, - "match_type": "best_of",
- "modified_at": "2019-05-27T00:38:45Z",
- "name": "Grand Final: Vitality vs Liquid",
- "number_of_games": 3,
- "opponents": [
- {
- "opponent": {
- "acronym": null,
- "id": 3455,
- "location": "FR",
- "modified_at": "2020-12-08T18:51:51Z",
- "name": "Vitality",
- "slug": "vitality-cs-go"
}, - "type": "Team"
}, - {
- "opponent": {
- "acronym": null,
- "id": 3213,
- "location": "US",
- "modified_at": "2020-12-01T18:11:05Z",
- "name": "Liquid",
- "slug": "liquid-cs-go"
}, - "type": "Team"
}
], - "original_scheduled_at": "2019-05-26T22:30:00Z",
- "rescheduled": false,
- "results": [
- {
- "score": 2,
- "team_id": 3455
}, - {
- "score": 0,
- "team_id": 3213
}
], - "scheduled_at": "2019-05-26T22:30:00Z",
- "serie": {
- "begin_at": "2019-05-23T16:00:00Z",
- "description": null,
- "end_at": "2019-05-27T00:38:00Z",
- "full_name": "Season 4 2019",
- "id": 1792,
- "league_id": 4168,
- "modified_at": "2019-12-11T11:05:06Z",
- "name": "",
- "season": "4",
- "slug": "cs-go-cs_summit-4-2019",
- "tier": null,
- "winner_id": 3455,
- "winner_type": "Team",
- "year": 2019
}, - "serie_id": 1792,
- "slug": "vitality-2019-05-27",
- "status": "finished",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament": {
- "begin_at": "2019-05-26T16:00:00Z",
- "end_at": "2019-05-27T00:38:00Z",
- "id": 2365,
- "league_id": 4168,
- "live_supported": true,
- "modified_at": "2019-05-28T16:18:15Z",
- "name": "Playoffs",
- "prizepool": "150000 United States Dollar",
- "serie_id": 1792,
- "slug": "cs-go-cs_summit-cs-summit-4-2019-playoffs",
- "winner_id": 3455,
- "winner_type": "Team"
}, - "tournament_id": 2365,
- "videogame": {
- "id": 3,
- "name": "CS:GO",
- "slug": "cs-go"
}, - "videogame_version": null,
- "winner": {
- "acronym": null,
- "id": 3455,
- "location": "FR",
- "modified_at": "2020-12-08T18:51:51Z",
- "name": "Vitality",
- "slug": "vitality-cs-go"
}, - "winner_id": 3455
}, - "per_game_averages": {
- "adr": 76.95,
- "assists": 7.5,
- "deaths": 18,
- "first_kills_diff": -1,
- "flash_assists": 1.5,
- "headshots": 8.5,
- "hltv_game_rating": 0.97,
- "k_d_diff": -1.5,
- "kast": 63.3,
- "kills": 16.5
}, - "per_round_averages": {
- "assists": 0.28,
- "deaths": 0.67,
- "first_kills_diff": -0.04,
- "flash_assists": 0.06,
- "headshots": 0.31,
- "k_d_diff": -0.06,
- "kills": 0.61
}
}, - "teams": [
- {
- "acronym": null,
- "id": 3210,
- "location": "DE",
- "modified_at": "2020-12-03T16:26:36Z",
- "name": "G2",
- "slug": "g2"
}, - {
- "acronym": null,
- "id": 3221,
- "location": "SG",
- "modified_at": "2018-12-08T13:03:52Z",
- "name": "Titan",
- "slug": "titan"
}, - {
- "acronym": null,
- "id": 3222,
- "location": "US",
- "modified_at": "2020-11-22T23:58:44Z",
- "name": "Envy",
- "slug": "envyus"
}, - {
- "acronym": null,
- "id": 3230,
- "location": "FR",
- "modified_at": "2020-12-06T18:07:46Z",
- "name": "LDLC",
- "slug": "ldlc-cs-go"
}, - {
- "acronym": null,
- "id": 3327,
- "location": "FR",
- "modified_at": "2018-12-08T13:15:50Z",
- "name": "Clan-Mystik",
- "slug": "clan-mystik"
}, - {
- "acronym": null,
- "id": 3455,
- "location": "FR",
- "modified_at": "2020-12-08T18:51:51Z",
- "name": "Vitality",
- "slug": "vitality-cs-go"
}
]
}
Get detailed statistics of a given CS:GO team for the given match
required | MatchID (integer) or MatchSlug (string) (MatchIDOrSlug) A match ID or slug |
required | TeamID (integer) or TeamSlug (string) (TeamIDOrSlug) A team ID or slug |
{- "acronym": "string",
- "current_videogame": {
- "id": 1,
- "name": "LoL",
- "slug": "league-of-legends"
}, - "id": 1,
- "last_games": [
- {
- "begin_at": "2019-08-24T14:15:22Z",
- "complete": true,
- "detailed_stats": true,
- "end_at": "2019-08-24T14:15:22Z",
- "finished": true,
- "forfeit": true,
- "id": 1,
- "length": 0,
- "match_id": 1,
- "players": [
- {
- "adr": 0,
- "assists": 0,
- "deaths": 0