Download OpenAPI specification:Download
Whether you're looking to build an official Pandascore integration for your service, or you just want to build something awesome, we can help you get started.
The API works over the HTTPS protocol, and is accessed from the api.pandascore.co
domain.
null
values instead of being omitted.Clicking on a query parameter like filter
or search
will show you the available options:
You can also click on a response to see the detailed response schema:
The PandaScore API allows you to access data about eSports events by using a certain structure detailed below.
Leagues
Leagues are the top level events. They don't have a date and represent a regular competition. A League is composed of one or several series.
Some League of Legends leagues are: EU LCS, NA LCS, LCK, etc.
Some Dota 2 leagues are: ESL One, GESC, The International, PGL, etc.
Series
A Serie represents an occurrence of a league event.
The EU LCS league has two series per year: spring 2017, summer 2017, spring 2016, summer 2016 etc.
Some Dota2 Series examples would be: Changsha Major, Open Bucharest, Frankfurt, i-League Invitational etc.
Tournaments
Tournaments groups all the matches of a serie under "stages" and "groups".
The tournaments of the EU LCS of summer 2017 are: Group A, Group B, Playoffs, etc.
Some Dota 2 tournaments are: Group A, Group B, Playoffs, etc.
Matches
Finally we have matches which have two players or teams (depending on the played videogame) and several games (the rounds of the match).
Matches of the group A in the EU LCS of summer 2017 are: G2 vs FNC, MSF vs NIP, etc.
Matches of the group A in the ESL One, Genting tournamnet are: Lower Round 1, Quarterfinal, Upper Final, etc.
Please note that some matches may be listed as "TBD vs TBD" if the matchup is not announced yet, for example the date of the Final match is known but the quarterfinal is still being played.
The API currently supports the JSON format by default.
Other formats may be added depending on user needs.
The Pandascore API paginates all resources on the index method.
Requests that return multiple items will be paginated to 50 items by default. You can specify further pages with the page[number]
parameter. You can also set a custom page size (up to 100) with the page[size]
parameter.
The Link
HTTP response header contains pagination data with first
, previous
, next
and last
raw page links when available, under the format
Link: <https://api.pandascore.co/{Resource}?page=X+1>; rel="next", <https://api.pandascore.co/{Resource}?page=X-1>; rel="prev", <https://api.pandascore.co/{Resource}?page=1>; rel="first", <https://api.pandascore.co/{Resource}?page=X+n>; rel="last"
There is also:
X-Page
header field, which contains the current page.X-Per-Page
header field, which contains the current pagination length.X-Total
header field, which contains the total count of items across all pages.The filter
query parameter can be used to filter a collection by one or several fields for one or several values. The filter
parameter takes the field to filter as a key, and the values to filter as the value. Multiples values must be comma-separated (,
).
For example, the following is a request for all the champions with a name matching Twitch or Brand exactly, but only with 21 armor:
GET /lol/champions?filter[name]=Brand,Twitch&filter[armor]=21&token=YOUR_ACCESS_TOKEN
The range
parameter is a hash that allows filtering fields by an interval.
Only values between the given two comma-separated bounds will be returned. The bounds are inclusive.
For example, the following is a request for all the champions with hp
within 500 and 1000:
GET /lol/champions?range[hp]=500,1000&token=YOUR_ACCESS_TOKEN
The search
parameter is a bit like the filter
parameter, but it will return all results where the values contain the given parameter.
Note: this only works on strings.
Searching with integer values is not supported and filter
or range
parameters may be better suited for your needs here.
For example, to get all the champions with a name containing "twi"
:
$ curl -sg -H 'Authorization: Bearer YOUR_ACCESS_TOKEN' 'https://api.pandascore.co/lol/champions?search[name]=twi' | jq -S '.[].name'
"Twitch"
"Twisted Fate"
All index endpoints support multiple sort fields with comma-separation (,
); the fields are applied in the order specified.
The sort order for each field is ascending unless it is prefixed with a minus (U+002D HYPHEN-MINUS, “-“), in which case it is descending.
For example, GET /lol/champions?sort=attackdamage,-name&token=YOUR_ACCESS_TOKEN
will return all the champions sorted by attack damage.
Any champions with the same attack damage will then be sorted by their names in descending alphabetical order.
Depending on your current plan, you will have a different rate limit. Your plan and your current request count are available on your dashboard.
With the free plan, you have a limit of 1000 requests per hour, others plans have a limit of 4000 requests per hour. The number of remaining requests is available in the X-Rate-Limit-Remaining
response header.
Your API key is included in all the examples on this page, so you can test any example right away. Only you can see this value.
The authentication on the Pandascore API works with access tokens.
All developers need to create an account before getting started, in order to get an access token. The access token should not be shared.
Your token can be found and regenerated from your dashboard.
The access token can be passed in the URL with the token
query string parameter, or in the Authorization: Bearer
header field.
List abilities
object (filter_over_Dota2Abilities) Example: filter[id]=1209,1208,1200 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_Dota2Abilities) Example: range[id]=1200,1400 Options to select results within ranges | |
object (search_over_Dota2Abilities) Example: search[name]=bonus_corruption Options to search results | |
sort | Array of any (sort_over_Dota2Abilities) non-empty Items Enum: "id" "-id" "name" "-name" Example: sort=-name Options to sort results |
/dota2/abilities?page[size]=1
[- {
- "id": 1660,
- "image_url": null,
- "name": "ability_capture"
}
]
Get a single ability by ID or by slug
required | Dota2AbilityID (integer) or Dota2AbilitySlug (string) (Dota2AbilityIDOrSlug) An ability ID or slug |
/dota2/abilities/1537
{- "id": 1537,
- "name": "special_bonus_unique_kunkka_5"
}
Get a single Dota 2 game by ID
dota2_game_id required | integer (Dota2GameID) >= 1 A game ID |
/dota2/games/168885
{- "begin_at": "2018-10-30T14:50:00Z",
- "complete": false,
- "detailed_stats": true,
- "end_at": "2018-10-30T15:47:00Z",
- "finished": true,
- "first_blood": null,
- "forfeit": false,
- "id": 168885,
- "length": 3420,
- "match": {
- "begin_at": "2018-10-30T14:50:00Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": "2018-10-30T17:00:44Z",
- "forfeit": false,
- "game_advantage": null,
- "games": [ ],
- "id": 134340,
- "league": {
- "id": 4125,
- "modified_at": "2019-03-05T11:02:02Z",
- "name": "DreamLeague",
- "slug": "dreamleague",
- "url": null
}, - "league_id": 4125,
- "live": {
- "opens_at": "2018-10-30T14:35:00Z",
- "supported": true,
- "url": "wss://live.dev.pandascore.co/matches/134340"
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2018-10-30T17:17:05Z",
- "name": "Upper Final",
- "number_of_games": 3,
- "official_stream_url": null,
- "opponents": [
- {
- "opponent": {
- "acronym": "coL",
- "id": 1681,
- "location": "US",
- "modified_at": "2019-11-25T13:23:08Z",
- "name": "compLexity Gaming",
- "slug": "complexity-gaming"
}, - "type": "Team"
}, - {
- "opponent": {
- "acronym": "Na`Vi",
- "id": 1699,
- "location": "UA",
- "modified_at": "2020-12-07T11:13:46Z",
- "name": "Natus Vincere",
- "slug": "natus-vincere"
}, - "type": "Team"
}
], - "original_scheduled_at": null,
- "rescheduled": false,
- "results": [
- {
- "score": 0,
- "team_id": 1681
}, - {
- "score": 0,
- "team_id": 1699
}
], - "scheduled_at": "2018-10-30T14:00:00Z",
- "serie": {
- "begin_at": "2018-10-28T23:00:00Z",
- "description": null,
- "end_at": "2018-11-03T23:00:00Z",
- "full_name": "Season 10 2018",
- "id": 1604,
- "league_id": 4125,
- "modified_at": "2019-03-24T22:25:57Z",
- "name": null,
- "season": "10",
- "slug": "dreamleague-10-2018",
- "tier": null,
- "winner_id": 3353,
- "winner_type": "Team",
- "year": 2018
}, - "serie_id": 1604,
- "slug": "2018-10-30",
- "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-10-28T23:00:00Z",
- "end_at": "2018-11-04T23:00:00Z",
- "id": 1841,
- "league_id": 4125,
- "live_supported": true,
- "modified_at": "2019-07-09T23:54:06Z",
- "name": "Group a",
- "prizepool": null,
- "serie_id": 1604,
- "slug": "dreamleague-10-2018-group-a",
- "winner_id": 1681,
- "winner_type": "Team"
}, - "tournament_id": 1841,
- "winner": {
- "acronym": "coL",
- "id": 1681,
- "location": "US",
- "modified_at": "2019-11-25T13:23:08Z",
- "name": "compLexity Gaming",
- "slug": "complexity-gaming"
}, - "winner_id": 1681
}, - "match_id": 134340,
- "players": [
- {
- "abilities": [
- {
- "id": 346,
- "level": 1,
- "name": "wisp_tether"
}, - {
- "id": 337,
- "level": 2,
- "name": "wisp_spirits"
}, - {
- "id": 337,
- "level": 3,
- "name": "wisp_spirits"
}, - {
- "id": 274,
- "level": 4,
- "name": "wisp_overcharge"
}, - {
- "id": 337,
- "level": 5,
- "name": "wisp_spirits"
}, - {
- "id": 490,
- "level": 6,
- "name": "wisp_relocate"
}, - {
- "id": 337,
- "level": 7,
- "name": "wisp_spirits"
}, - {
- "id": 346,
- "level": 8,
- "name": "wisp_tether"
}, - {
- "id": 346,
- "level": 9,
- "name": "wisp_tether"
}, - {
- "id": 389,
- "level": 10,
- "name": "special_bonus_exp_boost_20"
}, - {
- "id": 346,
- "level": 11,
- "name": "wisp_tether"
}, - {
- "id": 490,
- "level": 12,
- "name": "wisp_relocate"
}, - {
- "id": 274,
- "level": 13,
- "name": "wisp_overcharge"
}, - {
- "id": 274,
- "level": 14,
- "name": "wisp_overcharge"
}, - {
- "id": 1393,
- "level": 15,
- "name": "special_bonus_unique_wisp_5"
}, - {
- "id": 274,
- "level": 16,
- "name": "wisp_overcharge"
}, - {
- "id": 490,
- "level": 17,
- "name": "wisp_relocate"
}, - {
- "id": 442,
- "level": 18,
- "name": "special_bonus_gold_income_25"
}, - {
- "id": 1382,
- "level": 19,
- "name": "special_bonus_unique_wisp_4"
}
], - "assists": 27,
- "camps_stacked": 0,
- "creeps_stacked": 0,
- "damage_taken": null,
- "deaths": 8,
- "denies": 4,
- "faction": "dire",
- "game_id": 168885,
- "gold_per_min": 382,
- "gold_remaining": 2382,
- "gold_spent": 18395,
- "heal": 25456,
- "hero": {
- "id": 90,
- "localized_name": "Io",
- "name": "wisp"
}, - "hero_damage": 10550,
- "hero_level": 25,
- "items": [
- {
- "id": 42,
- "name": "magic_wand"
}, - {
- "id": 48,
- "name": "bottle"
}, - {
- "id": 56,
- "name": "tpscroll"
}, - {
- "id": 101,
- "name": "urn_of_shadows"
}, - {
- "id": 141,
- "name": "assault"
}, - {
- "id": 154,
- "name": "lotus_orb"
}, - {
- "id": 247,
- "name": "guardian_greaves"
}
], - "kills": 2,
- "lane_creep": 40,
- "last_hits": 78,
- "neutral_creep": 39,
- "observer_used": 0,
- "observer_wards_destroyed": 1,
- "observer_wards_purchased": 0,
- "opponent": {
- "acronym": "Na`Vi",
- "id": 1699,
- "location": "UA",
- "modified_at": "2020-12-07T11:13:46Z",
- "name": "Natus Vincere",
- "slug": "natus-vincere"
}, - "player": {
- "birth_year": 1991,
- "birthday": "1991-07-02",
- "first_name": "Jacky",
- "hometown": "Canada",
- "id": 9408,
- "last_name": "Mao",
- "name": "EternaLEnVy",
- "nationality": "CA",
- "role": "1",
- "slug": "eternalenvy"
}, - "sentry_used": 0,
- "sentry_wards_destroyed": 0,
- "sentry_wards_purchased": 0,
- "team": {
- "acronym": "coL",
- "id": 1681,
- "location": "US",
- "modified_at": "2019-11-25T13:23:08Z",
- "name": "compLexity Gaming",
- "slug": "complexity-gaming"
}, - "team_id": 1681,
- "tower_damage": 3111,
- "tower_kills": 0,
- "xp_per_min": 661
}, - {
- "abilities": [
- {
- "id": 1195,
- "level": 1,
- "name": "brewmaster_drunken_haze"
}, - {
- "id": 1158,
- "level": 2,
- "name": "brewmaster_drunken_brawler"
}, - {
- "id": 751,
- "level": 3,
- "name": "brewmaster_thunder_clap"
}, - {
- "id": 751,
- "level": 4,
- "name": "brewmaster_thunder_clap"
}, - {
- "id": 751,
- "level": 5,
- "name": "brewmaster_thunder_clap"
}, - {
- "id": 1164,
- "level": 6,
- "name": "brewmaster_primal_split"
}, - {
- "id": 751,
- "level": 7,
- "name": "brewmaster_thunder_clap"
}, - {
- "id": 1158,
- "level": 8,
- "name": "brewmaster_drunken_brawler"
}, - {
- "id": 1158,
- "level": 9,
- "name": "brewmaster_drunken_brawler"
}, - {
- "id": 180,
- "level": 10,
- "name": "special_bonus_hp_200"
}, - {
- "id": 1158,
- "level": 11,
- "name": "brewmaster_drunken_brawler"
}, - {
- "id": 1164,
- "level": 12,
- "name": "brewmaster_primal_split"
}, - {
- "id": 1195,
- "level": 13,
- "name": "brewmaster_drunken_haze"
}, - {
- "id": 1195,
- "level": 14,
- "name": "brewmaster_drunken_haze"
}, - {
- "id": 1183,
- "level": 15,
- "name": "special_bonus_unique_brewmaster_3"
}, - {
- "id": 1195,
- "level": 16,
- "name": "brewmaster_drunken_haze"
}, - {
- "id": 1164,
- "level": 17,
- "name": "brewmaster_primal_split"
}, - {
- "id": 272,
- "level": 18,
- "name": "special_bonus_unique_brewmaster"
}, - {
- "id": 474,
- "level": 19,
- "name": "special_bonus_unique_brewmaster_2"
}
], - "assists": 19,
- "camps_stacked": 0,
- "creeps_stacked": 0,
- "damage_taken": null,
- "deaths": 6,
- "denies": 20,
- "faction": "dire",
- "game_id": 168885,
- "gold_per_min": 418,
- "gold_remaining": 1989,
- "gold_spent": 18365,
- "heal": 1130,
- "hero": {
- "id": 77,
- "localized_name": "Brewmaster",
- "name": "brewmaster"
}, - "hero_damage": 15009,
- "hero_level": 25,
- "items": [
- {
- "id": 1,
- "name": "blink"
}, - {
- "id": 9,
- "name": "platemail"
}, - {
- "id": 56,
- "name": "tpscroll"
}, - {
- "id": 62,
- "name": "phase_boots"
}, - {
- "id": 93,
- "name": "vladmir"
}, - {
- "id": 145,
- "name": "black_king_bar"
}, - {
- "id": 160,
- "name": "aeon_disk"
}
], - "kills": 7,
- "lane_creep": 176,
- "last_hits": 204,
- "neutral_creep": 32,
- "observer_used": 0,
- "observer_wards_destroyed": 2,
- "observer_wards_purchased": 0,
- "opponent": {
- "acronym": "Na`Vi",
- "id": 1699,
- "location": "UA",
- "modified_at": "2020-12-07T11:13:46Z",
- "name": "Natus Vincere",
- "slug": "natus-vincere"
}, - "player": {
- "birth_year": 1995,
- "birthday": "1995-05-03",
- "first_name": "Jingjun",
- "hometown": "USA",
- "id": 9493,
- "last_name": "Wu",
- "name": "Sneyking",
- "nationality": "US",
- "role": "3",
- "slug": "sneyking"
}, - "sentry_used": 0,
- "sentry_wards_destroyed": 2,
- "sentry_wards_purchased": 0,
- "team": {
- "acronym": "coL",
- "id": 1681,
- "location": "US",
- "modified_at": "2019-11-25T13:23:08Z",
- "name": "compLexity Gaming",
- "slug": "complexity-gaming"
}, - "team_id": 1681,
- "tower_damage": 663,
- "tower_kills": 0,
- "xp_per_min": 583
}, - {
- "abilities": [
- {
- "id": 722,
- "level": 1,
- "name": "bane_brain_sap"
}, - {
- "id": 634,
- "level": 2,
- "name": "bane_nightmare"
}, - {
- "id": 722,
- "level": 3,
- "name": "bane_brain_sap"
}, - {
- "id": 634,
- "level": 4,
- "name": "bane_nightmare"
}, - {
- "id": 722,
- "level": 5,
- "name": "bane_brain_sap"
}, - {
- "id": 803,
- "level": 6,
- "name": "bane_fiends_grip"
}, - {
- "id": 722,
- "level": 7,
- "name": "bane_brain_sap"
}, - {
- "id": 634,
- "level": 8,
- "name": "bane_nightmare"
}, - {
- "id": 634,
- "level": 9,
- "name": "bane_nightmare"
}, - {
- "id": 299,
- "level": 10,
- "name": "special_bonus_cast_range_100"
}, - {
- "id": 364,
- "level": 11,
- "name": "bane_enfeeble"
}, - {
- "id": 803,
- "level": 12,
- "name": "bane_fiends_grip"
}, - {
- "id": 364,
- "level": 13,
- "name": "bane_enfeeble"
}, - {
- "id": 364,
- "level": 14,
- "name": "bane_enfeeble"
}, - {
- "id": 846,
- "level": 15,
- "name": "special_bonus_exp_boost_40"
}, - {
- "id": 364,
- "level": 16,
- "name": "bane_enfeeble"
}, - {
- "id": 803,
- "level": 17,
- "name": "bane_fiends_grip"
}, - {
- "id": 233,
- "level": 18,
- "name": "special_bonus_unique_bane_1"
}, - {
- "id": 820,
- "level": 19,
- "name": "special_bonus_unique_bane_2"
}
], - "assists": 18,
- "camps_stacked": 1,
- "creeps_stacked": 3,
- "damage_taken": null,
- "deaths": 13,
- "denies": 3,
- "faction": "dire",
- "game_id": 168885,
- "gold_per_min": 288,
- "gold_remaining": 1832,
- "gold_spent": 13090,
- "heal": 0,
- "hero": {
- "id": 3,
- "localized_name": "Bane",
- "name": "bane"
}, - "hero_damage": 7092,
- "hero_level": 25,
- "items": [
- {
- "id": 11,
- "name": "quelling_blade"
}, - {
- "id": 36,
- "name": "gem"
}, - {
- "id": 36,
- "name": "gem"
}, - {
- "id": 40,
- "name": "magic_stick"
}, - {
- "id": 49,
- "name": "ward_observer"
}, - {
- "id": 56,
- "name": "tpscroll"
}, - {
- "id": 242,
- "name": "smoke_of_deceit"
}, - {
- "id": 259,
- "name": "tranquil_boots"
}, - {
- "id": 262,
- "name": "glimmer_cape"
}
], - "kills": 6,
- "lane_creep": 15,
- "last_hits": 30,
- "neutral_creep": 0,
- "observer_used": 6,
- "observer_wards_destroyed": 8,
- "observer_wards_purchased": 24,
- "opponent": {
- "acronym": "Na`Vi",
- "id": 1699,
- "location": "UA",
- "modified_at": "2020-12-07T11:13:46Z",
- "name": "Natus Vincere",
- "slug": "natus-vincere"
}, - "player": {
- "birth_year": 1994,
- "birthday": "1994-05-14",
- "first_name": "Zakari",
- "hometown": "United States",
- "id": 9506,
- "last_name": "Freedman",
- "name": "Zfreek",
- "nationality": "US",
- "role": "4",
- "slug": "zfreek"
}, - "sentry_used": 13,
- "sentry_wards_destroyed": 4,
- "sentry_wards_purchased": 50,
- "team": {
- "acronym": "coL",
- "id": 1681,
- "location": "US",
- "modified_at": "2019-11-25T13:23:08Z",
- "name": "compLexity Gaming",
- "slug": "complexity-gaming"
}, - "team_id": 1681,
- "tower_damage": 0,
- "tower_kills": 0,
- "xp_per_min": 486
}, - {
- "abilities": [
- {
- "id": 1064,
- "level": 1,
- "name": "silencer_glaives_of_wisdom"
}, - {
- "id": 15,
- "level": 2,
- "name": "silencer_curse_of_the_silent"
}, - {
- "id": 15,
- "level": 3,
- "name": "silencer_curse_of_the_silent"
}, - {
- "id": 109,
- "level": 4,
- "name": "silencer_last_word"
}, - {
- "id": 15,
- "level": 5,
- "name": "silencer_curse_of_the_silent"
}, - {
- "id": 1034,
- "level": 6,
- "name": "silencer_global_silence"
}, - {
- "id": 15,
- "level": 7,
- "name": "silencer_curse_of_the_silent"
}, - {
- "id": 109,
- "level": 8,
- "name": "silencer_last_word"
}, - {
- "id": 109,
- "level": 9,
- "name": "silencer_last_word"
}, - {
- "id": 109,
- "level": 10,
- "name": "silencer_last_word"
}, - {
- "id": 356,
- "level": 11,
- "name": "special_bonus_attack_speed_25"
}, - {
- "id": 1034,
- "level": 12,
- "name": "silencer_global_silence"
}, - {
- "id": 1064,
- "level": 13,
- "name": "silencer_glaives_of_wisdom"
}, - {
- "id": 1064,
- "level": 14,
- "name": "silencer_glaives_of_wisdom"
}, - {
- "id": 427,
- "level": 15,
- "name": "special_bonus_gold_income_20"
}, - {
- "id": 1064,
- "level": 16,
- "name": "silencer_glaives_of_wisdom"
}, - {
- "id": 1034,
- "level": 17,
- "name": "silencer_global_silence"
}, - {
- "id": 191,
- "level": 18,
- "name": "special_bonus_unique_silencer"
}
], - "assists": 18,
- "camps_stacked": 6,
- "creeps_stacked": 16,
- "damage_taken": null,
- "deaths": 12,
- "denies": 5,
- "faction": "radiant",
- "game_id": 168885,
- "gold_per_min": 396,
- "gold_remaining": 2159,
- "gold_spent": 17595,
- "heal": 400,
- "hero": {
- "id": 74,
- "localized_name": "Silencer",
- "name": "silencer"
}, - "hero_damage": 15451,
- "hero_level": 23,
- "items": [
- {
- "id": 42,
- "name": "magic_wand"
}, - {
- "id": 119,
- "name": "hurricane_pike"
}, - {
- "id": 231,
- "name": "arcane_boots"
}, - {
- "id": 262,
- "name": "glimmer_cape"
}
], - "kills": 7,
- "lane_creep": 110,
- "last_hits": 144,
- "neutral_creep": 24,
- "observer_used": 14,
- "observer_wards_destroyed": 7,
- "observer_wards_purchased": 24,
- "opponent": {
- "acronym": "coL",
- "id": 1681,
- "location": "US",
- "modified_at": "2019-11-25T13:23:08Z",
- "name": "compLexity Gaming",
- "slug": "complexity-gaming"
}, - "player": {
- "birth_year": 1997,
- "birthday": "1997-05-16",
- "first_name": "Akbar",
- "hometown": "Russia, Uzbekistan",
- "id": 9582,
- "last_name": "Butaev",
- "name": "SoNNeikO",
- "nationality": "RU",
- "role": "5",
- "slug": "sonneiko"
}, - "sentry_used": 5,
- "sentry_wards_destroyed": 3,
- "sentry_wards_purchased": 32,
- "team": {
- "acronym": "Na`Vi",
- "id": 1699,
- "location": "UA",
- "modified_at": "2020-12-07T11:13:46Z",
- "name": "Natus Vincere",
- "slug": "natus-vincere"
}, - "team_id": 1699,
- "tower_damage": 574,
- "tower_kills": 1,
- "xp_per_min": 417
}, - {
- "abilities": [
- {
- "id": 907,
- "level": 1,
- "name": "lina_light_strike_array"
}, - {
- "id": 398,
- "level": 2,
- "name": "lina_fiery_soul"
}, - {
- "id": 509,
- "level": 3,
- "name": "lina_dragon_slave"
}, - {
- "id": 509,
- "level": 4,
- "name": "lina_dragon_slave"
}, - {
- "id": 509,
- "level": 5,
- "name": "lina_dragon_slave"
}, - {
- "id": 218,
- "level": 6,
- "name": "lina_laguna_blade"
}, - {
- "id": 509,
- "level": 7,
- "name": "lina_dragon_slave"
}, - {
- "id": 907,
- "level": 8,
- "name": "lina_light_strike_array"
}, - {
- "id": 907,
- "level": 9,
- "name": "lina_light_strike_array"
}, - {
- "id": 907,
- "level": 10,
- "name": "lina_light_strike_array"
}, - {
- "id": 97,
- "level": 11,
- "name": "special_bonus_cast_range_125"
}, - {
- "id": 218,
- "level": 12,
- "name": "lina_laguna_blade"
}, - {
- "id": 398,
- "level": 13,
- "name": "lina_fiery_soul"
}, - {
- "id": 398,
- "level": 14,
- "name": "lina_fiery_soul"
}, - {
- "id": 90,
- "level": 15,
- "name": "special_bonus_hp_350"
}, - {
- "id": 398,
- "level": 16,
- "name": "lina_fiery_soul"
}, - {
- "id": 218,
- "level": 17,
- "name": "lina_laguna_blade"
}, - {
- "id": 611,
- "level": 18,
- "name": "special_bonus_unique_lina_2"
}, - {
- "id": 873,
- "level": 19,
- "name": "special_bonus_attack_range_175"
}
], - "assists": 20,
- "camps_stacked": 6,
- "creeps_stacked": 14,
- "damage_taken": null,
- "deaths": 6,
- "denies": 8,
- "faction": "dire",
- "game_id": 168885,
- "gold_per_min": 547,
- "gold_remaining": 5889,
- "gold_spent": 26745,
- "heal": 0,
- "hero": {
- "id": 24,
- "localized_name": "Lina",
- "name": "lina"
}, - "hero_damage": 32142,
- "hero_level": 25,
- "items": [
- {
- "id": 56,
- "name": "tpscroll"
}, - {
- "id": 75,
- "name": "power_treads"
}, - {
- "id": 113,
- "name": "cyclone"
}, - {
- "id": 115,
- "name": "aether_lens"
}, - {
- "id": 148,
- "name": "shivas_guard"
}, - {
- "id": 211,
- "name": "skadi"
}, - {
- "id": 227,
- "name": "ethereal_blade"
}
], - "kills": 10,
- "lane_creep": 180,
- "last_hits": 386,
- "neutral_creep": 190,
- "observer_used": 1,
- "observer_wards_destroyed": 2,
- "observer_wards_purchased": 1,
- "opponent": {
- "acronym": "Na`Vi",
- "id": 1699,
- "location": "UA",
- "modified_at": "2020-12-07T11:13:46Z",
- "name": "Natus Vincere",
- "slug": "natus-vincere"
}, - "player": {
- "birth_year": 1995,
- "birthday": "1995-05-31",
- "first_name": "Linus",
- "hometown": "Sweden",
- "id": 9617,
- "last_name": "Blomdin",
- "name": "Limmp",
- "nationality": "SE",
- "role": "2",
- "slug": "limmp"
}, - "sentry_used": 2,
- "sentry_wards_destroyed": 0,
- "sentry_wards_purchased": 5,
- "team": {
- "acronym": "coL",
- "id": 1681,
- "location": "US",
- "modified_at": "2019-11-25T13:23:08Z",
- "name": "compLexity Gaming",
- "slug": "complexity-gaming"
}, - "team_id": 1681,
- "tower_damage": 6012,
- "tower_kills": 1,
- "xp_per_min": 658
}, - {
- "abilities": [
- {
- "id": 1375,
- "level": 1,
- "name": "dark_willow_bramble_maze"
}, - {
- "id": 1363,
- "level": 2,
- "name": "dark_willow_cursed_crown"
}, - {
- "id": 1354,
- "level": 3,
- "name": "dark_willow_shadow_realm"
}, - {
- "id": 1354,
- "level": 4,
- "name": "dark_willow_shadow_realm"
}, - {
- "id": 1354,
- "level": 5,
- "name": "dark_willow_shadow_realm"
}, - {
- "id": 1219,
- "level": 6,
- "name": "dark_willow_terrorize"
}, - {
- "id": 1354,
- "level": 7,
- "name": "dark_willow_shadow_realm"
}, - {
- "id": 1375,
- "level": 8,
- "name": "dark_willow_bramble_maze"
}, - {
- "id": 1375,
- "level": 9,
- "name": "dark_willow_bramble_maze"
}, - {
- "id": 97,
- "level": 10,
- "name": "special_bonus_cast_range_125"
}, - {
- "id": 1375,
- "level": 11,
- "name": "dark_willow_bramble_maze"
}, - {
- "id": 1219,
- "level": 12,
- "name": "dark_willow_terrorize"
}, - {
- "id": 1363,
- "level": 13,
- "name": "dark_willow_cursed_crown"
}, - {
- "id": 1363,
- "level": 14,
- "name": "dark_willow_cursed_crown"
}, - {
- "id": 635,
- "level": 15,
- "name": "special_bonus_gold_income_15"
}, - {
- "id": 1363,
- "level": 16,
- "name": "dark_willow_cursed_crown"
}, - {
- "id": 1219,
- "level": 17,
- "name": "dark_willow_terrorize"
}, - {
- "id": 1245,
- "level": 18,
- "name": "special_bonus_unique_dark_willow_1"
}
], - "assists": 14,
- "camps_stacked": 0,
- "creeps_stacked": 0,
- "damage_taken": null,
- "deaths": 6,
- "denies": 8,
- "faction": "radiant",
- "game_id": 168885,
- "gold_per_min": 309,
- "gold_remaining": 2465,
- "gold_spent": 13930,
- "heal": 1922,
- "hero": {
- "id": 115,
- "localized_name": "Dark Willow",
- "name": "dark_willow"
}, - "hero_damage": 20124,
- "hero_level": 23,
- "items": [
- {
- "id": 1,
- "name": "blink"
}, - {
- "id": 40,
- "name": "magic_stick"
}, - {
- "id": 47,
- "name": "dust"
}, - {
- "id": 59,
- "name": "travel_boots"
}, - {
- "id": 113,
- "name": "cyclone"
}, - {
- "id": 167,
- "name": "spirit_vessel"
}
], - "kills": 8,
- "lane_creep": 51,
- "last_hits": 47,
- "neutral_creep": 0,
- "observer_used": 1,
- "observer_wards_destroyed": 0,
- "observer_wards_purchased": 1,
- "opponent": {
- "acronym": "coL",
- "id": 1681,
- "location": "US",
- "modified_at": "2019-11-25T13:23:08Z",
- "name": "compLexity Gaming",
- "slug": "complexity-gaming"
}, - "player": {
- "birth_year": 1998,
- "birthday": "1998-05-11",
- "first_name": "Evgeniy",
- "hometown": "Russia",
- "id": 9664,
- "last_name": "Makarov",
- "name": "Chuvash",
- "nationality": "RU",
- "role": "4",
- "slug": "chuvash"
}, - "sentry_used": 1,
- "sentry_wards_destroyed": 1,
- "sentry_wards_purchased": 1,
- "team": {
- "acronym": "Na`Vi",
- "id": 1699,
- "location": "UA",
- "modified_at": "2020-12-07T11:13:46Z",
- "name": "Natus Vincere",
- "slug": "natus-vincere"
}, - "team_id": 1699,
- "tower_damage": 68,
- "tower_kills": 1,
- "xp_per_min": 411
}, - {
- "abilities": [
- {
- "id": 91,
- "level": 1,
- "name": "clinkz_searing_arrows"
}, - {
- "id": 341,
- "level": 2,
- "name": "clinkz_strafe"
}, - {
- "id": 91,
- "level": 3,
- "name": "clinkz_searing_arrows"
}, - {
- "id": 341,
- "level": 4,
- "name": "clinkz_strafe"
}, - {
- "id": 968,
- "level": 5,
- "name": "clinkz_wind_walk"
}, - {
- "id": 627,
- "level": 6,
- "name": "clinkz_death_pact"
}, - {
- "id": 341,
- "level": 7,
- "name": "clinkz_strafe"
}, - {
- "id": 341,
- "level": 8,
- "name": "clinkz_strafe"
}, - {
- "id": 91,
- "level": 9,
- "name": "clinkz_searing_arrows"
}, - {
- "id": 91,
- "level": 10,
- "name": "clinkz_searing_arrows"
}, - {
- "id": 968,
- "level": 11,
- "name": "clinkz_wind_walk"
}, - {
- "id": 627,
- "level": 12,
- "name": "clinkz_death_pact"
}, - {
- "id": 968,
- "level": 13,
- "name": "clinkz_wind_walk"
}, - {
- "id": 944,
- "level": 14,
- "name": "special_bonus_armor_5"
}, - {
- "id": 166,
- "level": 15,
- "name": "special_bonus_unique_clinkz_1"
}, - {
- "id": 968,
- "level": 16,
- "name": "clinkz_wind_walk"
}, - {
- "id": 627,
- "level": 17,
- "name": "clinkz_death_pact"
}, - {
- "id": 1539,
- "level": 18,
- "name": "special_bonus_hp_regen_16"
}, - {
- "id": 692,
- "level": 19,
- "name": "special_bonus_unique_clinkz_2"
}
], - "assists": 14,
- "camps_stacked": 1,
- "creeps_stacked": 1,
- "damage_taken": null,
- "deaths": 3,
- "denies": 9,
- "faction": "radiant",
- "game_id": 168885,
- "gold_per_min": 482,
- "gold_remaining": 870,
- "gold_spent": 28825,
- "heal": 0,
- "hero": {
- "id": 55,
- "localized_name": "Clinkz",
- "name": "clinkz"
}, - "hero_damage": 40957,
- "hero_level": 25,
- "items": [
- {
- "id": 56,
- "name": "tpscroll"
}, - {
- "id": 75,
- "name": "power_treads"
}, - {
- "id": 105,
- "name": "sheepstick"
}, - {
- "id": 145,
- "name": "black_king_bar"
}, - {
- "id": 146,
- "name": "aegis"
}, - {
- "id": 179,
- "name": "rapier"
}, - {
- "id": 181,
- "name": "monkey_king_bar"
}, - {
- "id": 225,
- "name": "diffusal_blade"
}
], - "kills": 14,
- "lane_creep": 201,
- "last_hits": 307,
- "neutral_creep": 101,
- "observer_used": 0,
- "observer_wards_destroyed": 0,
- "observer_wards_purchased": 0,
- "opponent": {
- "acronym": "coL",
- "id": 1681,
- "location": "US",
- "modified_at": "2019-11-25T13:23:08Z",
- "name": "compLexity Gaming",
- "slug": "complexity-gaming"
}, - "player": {
- "birth_year": 1999,
- "birthday": "1999-08-08",
- "first_name": "Vladislav",
- "hometown": "Ukraine",
- "id": 9795,
- "last_name": "Krystanek",
- "name": "Crystallize",
- "nationality": "UA",
- "role": "1",
- "slug": "crystallize"
}, - "sentry_used": 0,
- "sentry_wards_destroyed": 1,
- "sentry_wards_purchased": 0,
- "team": {
- "acronym": "Na`Vi",
- "id": 1699,
- "location": "UA",
- "modified_at": "2020-12-07T11:13:46Z",
- "name": "Natus Vincere",
- "slug": "natus-vincere"
}, - "team_id": 1699,
- "tower_damage": 2791,
- "tower_kills": 1,
- "xp_per_min": 591
}, - {
- "abilities": [
- {
- "id": 289,
- "level": 1,
- "name": "gyrocopter_rocket_barrage"
}, - {
- "id": 231,
- "level": 2,
- "name": "gyrocopter_flak_cannon"
}, - {
- "id": 289,
- "level": 3,
- "name": "gyrocopter_rocket_barrage"
}, - {
- "id": 108,
- "level": 4,
- "name": "gyrocopter_homing_missile"
}, - {
- "id": 289,
- "level": 5,
- "name": "gyrocopter_rocket_barrage"
}, - {
- "id": 1089,
- "level": 6,
- "name": "gyrocopter_call_down"
}, - {
- "id": 289,
- "level": 7,
- "name": "gyrocopter_rocket_barrage"
}, - {
- "id": 231,
- "level": 8,
- "name": "gyrocopter_flak_cannon"
}, - {
- "id": 231,
- "level": 9,
- "name": "gyrocopter_flak_cannon"
}, - {
- "id": 180,
- "level": 10,
- "name": "special_bonus_hp_200"
}, - {
- "id": 231,
- "level": 11,
- "name": "gyrocopter_flak_cannon"
}, - {
- "id": 1089,
- "level": 12,
- "name": "gyrocopter_call_down"
}, - {
- "id": 108,
- "level": 13,
- "name": "gyrocopter_homing_missile"
}, - {
- "id": 108,
- "level": 14,
- "name": "gyrocopter_homing_missile"
}, - {
- "id": 1215,
- "level": 15,
- "name": "special_bonus_unique_gyrocopter_3"
}, - {
- "id": 108,
- "level": 16,
- "name": "gyrocopter_homing_missile"
}, - {
- "id": 1089,
- "level": 17,
- "name": "gyrocopter_call_down"
}, - {
- "id": 655,
- "level": 18,
- "name": "special_bonus_movement_speed_40"
}, - {
- "id": 1104,
- "level": 19,
- "name": "special_bonus_unique_gyrocopter_1"
}
], - "assists": 15,
- "camps_stacked": 4,
- "creeps_stacked": 8,
- "damage_taken": null,
- "deaths": 10,
- "denies": 20,
- "faction": "dire",
- "game_id": 168885,
- "gold_per_min": 686,
- "gold_remaining": 4709,
- "gold_spent": 30935,
- "heal": 400,
- "hero": {
- "id": 71,
- "localized_name": "Gyrocopter",
- "name": "gyrocopter"
}, - "hero_damage": 49765,
- "hero_level": 25,
- "items": [
- {
- "id": 56,
- "name": "tpscroll"
}, - {
- "id": 145,
- "name": "black_king_bar"
}, - {
- "id": 152,
- "name": "sphere"
}, - {
- "id": 173,
- "name": "blade_mail"
}, - {
- "id": 185,
- "name": "butterfly"
}, - {
- "id": 193,
- "name": "manta"
}, - {
- "id": 255,
- "name": "heavens_halberd"
}
], - "kills": 17,
- "lane_creep": 284,
- "last_hits": 508,
- "neutral_creep": 215,
- "observer_used": 1,
- "observer_wards_destroyed": 0,
- "observer_wards_purchased": 0,
- "opponent": {
- "acronym": "Na`Vi",
- "id": 1699,
- "location": "UA",
- "modified_at": "2020-12-07T11:13:46Z",
- "name": "Natus Vincere",
- "slug": "natus-vincere"
}, - "player": {
- "birth_year": 2000,
- "birthday": "2000-02-18",
- "first_name": "Rolen Andrei Gabriel",
- "hometown": "Philippines",
- "id": 9895,
- "last_name": "Ong",
- "name": "Skem",
- "nationality": "PH",
- "role": null,
- "slug": "i-want-to-meet-my-expectations"
}, - "sentry_used": 0,
- "sentry_wards_destroyed": 1,
- "sentry_wards_purchased": 0,
- "team": {
- "acronym": "coL",
- "id": 1681,
- "location": "US",
- "modified_at": "2019-11-25T13:23:08Z",
- "name": "compLexity Gaming",
- "slug": "complexity-gaming"
}, - "team_id": 1681,
- "tower_damage": 8653,
- "tower_kills": 4,
- "xp_per_min": 612
}, - {
- "abilities": [
- {
- "id": 195,
- "level": 1,
- "name": "tiny_craggy_exterior"
}, - {
- "id": 133,
- "level": 2,
- "name": "tiny_avalanche"
}, - {
- "id": 168,
- "level": 3,
- "name": "tiny_toss"
}, - {
- "id": 133,
- "level": 4,
- "name": "tiny_avalanche"
}, - {
- "id": 133,
- "level": 5,
- "name": "tiny_avalanche"
}, - {
- "id": 355,
- "level": 6,
- "name": "tiny_grow"
}, - {
- "id": 133,
- "level": 7,
- "name": "tiny_avalanche"
}, - {
- "id": 168,
- "level": 8,
- "name": "tiny_toss"
}, - {
- "id": 168,
- "level": 9,
- "name": "tiny_toss"
}, - {
- "id": 1169,
- "level": 10,
- "name": "special_bonus_attack_damage_30"
}, - {
- "id": 168,
- "level": 11,
- "name": "tiny_toss"
}, - {
- "id": 355,
- "level": 12,
- "name": "tiny_grow"
}, - {
- "id": 195,
- "level": 13,
- "name": "tiny_craggy_exterior"
}, - {
- "id": 195,
- "level": 14,
- "name": "tiny_craggy_exterior"
}, - {
- "id": 219,
- "level": 15,
- "name": "special_bonus_unique_tiny"
}, - {
- "id": 1343,
- "level": 16,
- "name": "tiny_toss_tree"
}, - {
- "id": 355,
- "level": 17,
- "name": "tiny_grow"
}, - {
- "id": 1298,
- "level": 18,
- "name": "special_bonus_unique_tiny_4"
}
], - "assists": 16,
- "camps_stacked": 1,
- "creeps_stacked": 2,
- "damage_taken": null,
- "deaths": 14,
- "denies": 3,
- "faction": "radiant",
- "game_id": 168885,
- "gold_per_min": 319,
- "gold_remaining": 2046,
- "gold_spent": 13700,
- "heal": 216,
- "hero": {
- "id": 19,
- "localized_name": "Tiny",
- "name": "tiny"
}, - "hero_damage": 22590,
- "hero_level": 24,
- "items": [
- {
- "id": 1,
- "name": "blink"
}, - {
- "id": 9,
- "name": "platemail"
}, - {
- "id": 56,
- "name": "tpscroll"
}, - {
- "id": 75,
- "name": "power_treads"
}, - {
- "id": 173,
- "name": "blade_mail"
}, - {
- "id": 201,
- "name": "invis_sword"
}
], - "kills": 1,
- "lane_creep": 147,
- "last_hits": 157,
- "neutral_creep": 9,
- "observer_used": 0,
- "observer_wards_destroyed": 1,
- "observer_wards_purchased": 0,
- "opponent": {
- "acronym": "coL",
- "id": 1681,
- "location": "US",
- "modified_at": "2019-11-25T13:23:08Z",
- "name": "compLexity Gaming",
- "slug": "complexity-gaming"
}, - "player": {
- "birth_year": 1995,
- "birthday": "1995-01-05",
- "first_name": "Evgeniy",
- "hometown": "Kyrgyzstan",
- "id": 10005,
- "last_name": "Ree",
- "name": "Blizzy",
- "nationality": "KG",
- "role": "3",
- "slug": "blizzy"
}, - "sentry_used": 0,
- "sentry_wards_destroyed": 1,
- "sentry_wards_purchased": 0,
- "team": {
- "acronym": "Na`Vi",
- "id": 1699,
- "location": "UA",
- "modified_at": "2020-12-07T11:13:46Z",
- "name": "Natus Vincere",
- "slug": "natus-vincere"
}, - "team_id": 1699,
- "tower_damage": 907,
- "tower_kills": 0,
- "xp_per_min": 451
}, - {
- "abilities": [
- {
- "id": 306,
- "level": 1,
- "name": "templar_assassin_psi_blades"
}, - {
- "id": 882,
- "level": 2,
- "name": "templar_assassin_refraction"
}, - {
- "id": 882,
- "level": 3,
- "name": "templar_assassin_refraction"
}, - {
- "id": 306,
- "level": 4,
- "name": "templar_assassin_psi_blades"
}, - {
- "id": 882,
- "level": 5,
- "name": "templar_assassin_refraction"
}, - {
- "id": 467,
- "level": 6,
- "name": "templar_assassin_psionic_trap"
}, - {
- "id": 882,
- "level": 7,
- "name": "templar_assassin_refraction"
}, - {
- "id": 306,
- "level": 8,
- "name": "templar_assassin_psi_blades"
}, - {
- "id": 890,
- "level": 9,
- "name": "templar_assassin_meld"
}, - {
- "id": 356,
- "level": 10,
- "name": "special_bonus_attack_speed_25"
}, - {
- "id": 890,
- "level": 11,
- "name": "templar_assassin_meld"
}, - {
- "id": 890,
- "level": 12,
- "name": "templar_assassin_meld"
}, - {
- "id": 306,
- "level": 13,
- "name": "templar_assassin_psi_blades"
}, - {
- "id": 890,
- "level": 14,
- "name": "templar_assassin_meld"
}, - {
- "id": 1258,
- "level": 15,
- "name": "special_bonus_unique_templar_assassin_3"
}, - {
- "id": 467,
- "level": 16,
- "name": "templar_assassin_psionic_trap"
}, - {
- "id": 467,
- "level": 17,
- "name": "templar_assassin_psionic_trap"
}, - {
- "id": 960,
- "level": 18,
- "name": "special_bonus_unique_templar_assassin_2"
}, - {
- "id": 839,
- "level": 19,
- "name": "special_bonus_unique_templar_assassin"
}
], - "assists": 15,
- "camps_stacked": 4,
- "creeps_stacked": 15,
- "damage_taken": null,
- "deaths": 8,
- "denies": 30,
- "faction": "radiant",
- "game_id": 168885,
- "gold_per_min": 664,
- "gold_remaining": 2335,
- "gold_spent": 30700,
- "heal": 0,
- "hero": {
- "id": 45,
- "localized_name": "Templar Assassin",
- "name": "templar_assassin"
}, - "hero_damage": 37596,
- "hero_level": 25,
- "items": [
- {
- "id": 1,
- "name": "blink"
}, - {
- "id": 39,
- "name": "cheese"
}, - {
- "id": 59,
- "name": "travel_boots"
}, - {
- "id": 145,
- "name": "black_king_bar"
}, - {
- "id": 158,
- "name": "nullifier"
}, - {
- "id": 181,
- "name": "monkey_king_bar"
}, - {
- "id": 185,
- "name": "butterfly"
}
], - "kills": 13,
- "lane_creep": 390,
- "last_hits": 487,
- "neutral_creep": 101,
- "observer_used": 0,
- "observer_wards_destroyed": 3,
- "observer_wards_purchased": 0,
- "opponent": {
- "acronym": "coL",
- "id": 1681,
- "location": "US",
- "modified_at": "2019-11-25T13:23:08Z",
- "name": "compLexity Gaming",
- "slug": "complexity-gaming"
}, - "player": {
- "birth_year": 1998,
- "birthday": "1998-10-25",
- "first_name": "Idan",
- "hometown": "Ukraine, Israel",
- "id": 17150,
- "last_name": "Vardanian",
- "name": "MagicaL",
- "nationality": "IL",
- "role": "2",
- "slug": "magical"
}, - "sentry_used": 2,
- "sentry_wards_destroyed": 1,
- "sentry_wards_purchased": 0,
- "team": {
- "acronym": "Na`Vi",
- "id": 1699,
- "location": "UA",
- "modified_at": "2020-12-07T11:13:46Z",
- "name": "Natus Vincere",
- "slug": "natus-vincere"
}, - "team_id": 1699,
- "tower_damage": 5941,
- "tower_kills": 4,
- "xp_per_min": 673
}
], - "position": 1,
- "status": "finished",
- "teams": [
- {
- "bans": [
- 96,
- 40,
- 32,
- 23,
- 11,
- 58
], - "barracks_status": {
- "bottom_melee": true,
- "bottom_ranged": true,
- "middle_melee": true,
- "middle_ranged": true,
- "top_melee": true,
- "top_ranged": true
}, - "faction": "dire",
- "first_blood": false,
- "first_roshan": false,
- "first_tower": false,
- "picks": [
- 90,
- 71,
- 3,
- 24,
- 77
], - "player_ids": [
- 9408,
- 9493,
- 9506,
- 9617,
- 9895
], - "score": 43,
- "team": {
- "acronym": "coL",
- "id": 1681,
- "location": "US",
- "modified_at": "2019-11-25T13:23:08Z",
- "name": "compLexity Gaming",
- "slug": "complexity-gaming"
}, - "tower_status": {
- "ancient_bottom": true,
- "ancient_top": true,
- "bottom_tier_1": false,
- "bottom_tier_2": false,
- "bottom_tier_3": false,
- "middle_tier_1": false,
- "middle_tier_2": false,
- "middle_tier_3": true,
- "top_tier_1": false,
- "top_tier_2": false,
- "top_tier_3": true
}
}, - {
- "bans": [
- 12,
- 2,
- 64,
- 83,
- 65,
- 95
], - "barracks_status": {
- "bottom_melee": true,
- "bottom_ranged": false,
- "middle_melee": false,
- "middle_ranged": false,
- "top_melee": false,
- "top_ranged": false
}, - "faction": "radiant",
- "first_blood": true,
- "first_roshan": true,
- "first_tower": true,
- "picks": [
- 74,
- 19,
- 115,
- 55,
- 45
], - "player_ids": [
- 9582,
- 9664,
- 9795,
- 10005,
- 17150
], - "score": 43,
- "team": {
- "acronym": "Na`Vi",
- "id": 1699,
- "location": "UA",
- "modified_at": "2020-12-07T11:13:46Z",
- "name": "Natus Vincere",
- "slug": "natus-vincere"
}, - "tower_status": {
- "ancient_bottom": false,
- "ancient_top": true,
- "bottom_tier_1": false,
- "bottom_tier_2": false,
- "bottom_tier_3": false,
- "middle_tier_1": false,
- "middle_tier_2": false,
- "middle_tier_3": false,
- "top_tier_1": false,
- "top_tier_2": false,
- "top_tier_3": false
}
}
], - "video_url": null,
- "winner": {
- "id": 1681,
- "type": "Team"
}, - "winner_type": "Team"
}
List games for a given Dota 2 match
required | MatchID (integer) or MatchSlug (string) (MatchIDOrSlug) A match ID or slug |
object (filter_over_Dota2Games) 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_Dota2Games) Example: range[position]=2,4 Options to select results within ranges | |
object (search_over_Dota2Games) Example: search[status]=finished Options to search results | |
sort | Array of any (sort_over_Dota2Games) non-empty Items Enum: "begin_at" "-begin_at" "complete" "-complete" "end_at" "-end_at" "finished" "-finished" "first_blood" "-first_blood" "forfeit" "-forfeit" "id" "-id" "length" "-length" "match_id" "-match_id" "position" "-position" "status" "-status" "video_url" "-video_url" "winner_type" "-winner_type" Example: sort=-length Options to sort results |
/dota2/matches/134340/games?page[size]=1
[- {
- "begin_at": "2018-10-30T16:15:00Z",
- "complete": false,
- "detailed_stats": true,
- "end_at": "2018-10-30T17:00:44Z",
- "finished": true,
- "first_blood": null,
- "forfeit": false,
- "id": 168886,
- "length": 2744,
- "match": {
- "begin_at": "2018-10-30T14:50:00Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": "2018-10-30T17:00:44Z",
- "forfeit": false,
- "game_advantage": null,
- "games": [
- {
- "begin_at": "2018-10-30T14:50:00Z",
- "complete": false,
- "detailed_stats": true,
- "end_at": "2018-10-30T15:47:00Z",
- "finished": true,
- "forfeit": false,
- "id": 168885,
- "length": 3420,
- "match_id": 134340,
- "position": 1,
- "status": "finished",
- "video_url": null,
- "winner": {
- "id": 1681,
- "type": "Team"
}, - "winner_type": "Team"
}, - {
- "begin_at": "2018-10-30T16:15:00Z",
- "complete": false,
- "detailed_stats": true,
- "end_at": "2018-10-30T17:00:44Z",
- "finished": true,
- "forfeit": false,
- "id": 168886,
- "length": 2744,
- "match_id": 134340,
- "position": 2,
- "status": "finished",
- "video_url": null,
- "winner": {
- "id": 1681,
- "type": "Team"
}, - "winner_type": "Team"
}
], - "id": 134340,
- "league": {
- "id": 4125,
- "modified_at": "2019-03-05T11:02:02Z",
- "name": "DreamLeague",
- "slug": "dreamleague",
- "url": null
}, - "league_id": 4125,
- "live": {
- "opens_at": "2018-10-30T14:35:00Z",
- "supported": true,
- "url": "wss://live.dev.pandascore.co/matches/134340"
}, - "live_embed_url": null,
- "match_type": "best_of",
- "modified_at": "2018-10-30T17:17:05Z",
- "name": "Upper Final",
- "number_of_games": 3,
- "official_stream_url": null,
- "opponents": [
- {
- "opponent": {
- "acronym": "coL",
- "id": 1681,
- "location": "US",
- "modified_at": "2019-11-25T13:23:08Z",
- "name": "compLexity Gaming",
- "slug": "complexity-gaming"
}, - "type": "Team"
}, - {
- "opponent": {
- "acronym": "Na`Vi",
- "id": 1699,
- "location": "UA",
- "modified_at": "2020-12-07T11:13:46Z",
- "name": "Natus Vincere",
- "slug": "natus-vincere"
}, - "type": "Team"
}
], - "original_scheduled_at": null,
- "rescheduled": false,
- "results": [
- {
- "score": 2,
- "team_id": 1681
}, - {
- "score": 0,
- "team_id": 1699
}
], - "scheduled_at": "2018-10-30T14:00:00Z",
- "serie": {
- "begin_at": "2018-10-28T23:00:00Z",
- "description": null,
- "end_at": "2018-11-03T23:00:00Z",
- "full_name": "Season 10 2018",
- "id": 1604,
- "league_id": 4125,
- "modified_at": "2019-03-24T22:25:57Z",
- "name": null,
- "season": "10",
- "slug": "dreamleague-10-2018",
- "tier": null,
- "winner_id": 3353,
- "winner_type": "Team",
- "year": 2018
}, - "serie_id": 1604,
- "slug": "2018-10-30",
- "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-10-28T23:00:00Z",
- "end_at": "2018-11-04T23:00:00Z",
- "id": 1841,
- "league_id": 4125,
- "live_supported": true,
- "modified_at": "2019-07-09T23:54:06Z",
- "name": "Group a",
- "prizepool": null,
- "serie_id": 1604,
- "slug": "dreamleague-10-2018-group-a",
- "winner_id": 1681,
- "winner_type": "Team"
}, - "tournament_id": 1841,
- "winner": {
- "acronym": "coL",
- "id": 1681,
- "location": "US",
- "modified_at": "2019-11-25T13:23:08Z",
- "name": "compLexity Gaming",
- "slug": "complexity-gaming"
}, - "winner_id": 1681
}, - "match_id": 134340,
- "players": [
- {
- "abilities": [
- {
- "id": 748,
- "level": 1,
- "name": "earth_spirit_rolling_boulder"
}, - {
- "id": 754,
- "level": 2,
- "name": "earth_spirit_boulder_smash"
}, - {
- "id": 754,
- "level": 3,
- "name": "earth_spirit_boulder_smash"
}, - {
- "id": 76,
- "level": 4,
- "name": "earth_spirit_geomagnetic_grip"
}, - {
- "id": 754,
- "level": 5,
- "name": "earth_spirit_boulder_smash"
}, - {
- "id": 1168,
- "level": 6,
- "name": "earth_spirit_magnetize"
}, - {
- "id": 754,
- "level": 7,
- "name": "earth_spirit_boulder_smash"
}, - {
- "id": 76,
- "level": 8,
- "name": "earth_spirit_geomagnetic_grip"
}, - {
- "id": 76,
- "level": 9,
- "name": "earth_spirit_geomagnetic_grip"
}, - {
- "id": 76,
- "level": 10,
- "name": "earth_spirit_geomagnetic_grip"
}, - {
- "id": 748,
- "level": 11,
- "name": "earth_spirit_rolling_boulder"
}, - {
- "id": 1168,
- "level": 12,
- "name": "earth_spirit_magnetize"
}, - {
- "id": 748,
- "level": 13,
- "name": "earth_spirit_rolling_boulder"
}, - {
- "id": 748,
- "level": 14,
- "name": "earth_spirit_rolling_boulder"
}, - {
- "id": 463,
- "level": 15,
- "name": "special_bonus_attack_damage_40"
}, - {
- "id": 1040,
- "level": 16,
- "name": "special_bonus_unique_earth_spirit"
}, - {
- "id": 1168,
- "level": 17,
- "name": "earth_spirit_magnetize"
}, - {
- "id": 442,
- "level": 18,
- "name": "special_bonus_gold_income_25"
}
], - "assists": 20,
- "camps_stacked": 0,
- "creeps_stacked": 0,
- "damage_taken": null,
- "deaths": 10,
- "denies": 5,
- "faction": "radiant",
- "game_id": 168886,
- "gold_per_min": 330,
- "gold_remaining": 5409,
- "gold_spent": 8390,
- "heal": 0,
- "hero": {
- "id": 105,
- "localized_name": "Earth Spirit",
- "name": "earth_spirit"
}, - "hero_damage": 9418,
- "hero_level": 24,
- "items": [
- {
- "id": 40,
- "name": "magic_stick"
}, - {
- "id": 56,
- "name": "tpscroll"
}, - {
- "id": 101,
- "name": "urn_of_shadows"
}, - {
- "id": 145,
- "name": "black_king_bar"
}, - {
- "id": 242,
- "name": "smoke_of_deceit"
}, - {
- "id": 259,
- "name": "tranquil_boots"
}
], - "kills": 1,
- "lane_creep": 95,
- "last_hits": 96,
- "neutral_creep": 1,
- "observer_used": 1,
- "observer_wards_destroyed": 1,
- "observer_wards_purchased": 0,
- "opponent": {
- "acronym": "Na`Vi",
- "id": 1699,
- "location": "UA",
- "modified_at": "2020-12-07T11:13:46Z",
- "name": "Natus Vincere",
- "slug": "natus-vincere"
}, - "player": {
- "birth_year": 1991,
- "birthday": "1991-07-02",
- "first_name": "Jacky",
- "hometown": "Canada",
- "id": 9408,
- "last_name": "Mao",
- "name": "EternaLEnVy",
- "nationality": "CA",
- "role": "1",
- "slug": "eternalenvy"
}, - "sentry_used": 5,
- "sentry_wards_destroyed": 0,
- "sentry_wards_purchased": 4,
- "team": {
- "acronym": "coL",
- "id": 1681,
- "location": "US",
- "modified_at": "2019-11-25T13:23:08Z",
- "name": "compLexity Gaming",
- "slug": "complexity-gaming"
}, - "team_id": 1681,
- "tower_damage": 0,
- "tower_kills": 0,
- "xp_per_min": 537
}, - {
- "abilities": [
- {
- "id": 292,
- "level": 1,
- "name": "necrolyte_death_pulse"
}, - {
- "id": 471,
- "level": 2,
- "name": "necrolyte_sadist"
}, - {
- "id": 292,
- "level": 3,
- "name": "necrolyte_death_pulse"
}, - {
- "id": 1174,
- "level": 4,
- "name": "necrolyte_heartstopper_aura"
}, - {
- "id": 292,
- "level": 5,
- "name": "necrolyte_death_pulse"
}, - {
- "id": 920,
- "level": 6,
- "name": "necrolyte_reapers_scythe"
}, - {
- "id": 292,
- "level": 7,
- "name": "necrolyte_death_pulse"
}, - {
- "id": 1174,
- "level": 8,
- "name": "necrolyte_heartstopper_aura"
}, - {
- "id": 1174,
- "level": 9,
- "name": "necrolyte_heartstopper_aura"
}, - {
- "id": 117,
- "level": 10,
- "name": "special_bonus_strength_10"
}, - {
- "id": 1174,
- "level": 11,
- "name": "necrolyte_heartstopper_aura"
}, - {
- "id": 920,
- "level": 12,
- "name": "necrolyte_reapers_scythe"
}, - {
- "id": 471,
- "level": 13,
- "name": "necrolyte_sadist"
}, - {
- "id": 471,
- "level": 14,
- "name": "necrolyte_sadist"
}, - {
- "id": 471,
- "level": 15,
- "name": "necrolyte_sadist"
}, - {
- "id": 1506,
- "level": 16,
- "name": "special_bonus_unique_necrophos_3"
}, - {
- "id": 920,
- "level": 17,
- "name": "necrolyte_reapers_scythe"
}, - {
- "id": 426,
- "level": 18,
- "name": "special_bonus_attack_speed_70"
}, - {
- "id": 1330,
- "level": 19,
- "name": "special_bonus_unique_necrophos_2"
}
], - "assists": 19,
- "camps_stacked": 2,
- "creeps_stacked": 6,
- "damage_taken": null,
- "deaths": 3,
- "denies": 20,
- "faction": "radiant",
- "game_id": 168886,
- "gold_per_min": 485,
- "gold_remaining": 2015,
- "gold_spent": 19620,
- "heal": 3935,
- "hero": {
- "id": 35,
- "localized_name": "Necrophos",
- "name": "necrolyte"
}, - "hero_damage": 21694,
- "hero_level": 25,
- "items": [
- {
- "id": 1,
- "name": "blink"
}, - {
- "id": 56,
- "name": "tpscroll"
}, - {
- "id": 75,
- "name": "power_treads"
}, - {
- "id": 117,
- "name": "force_staff"
}, - {
- "id": 143,
- "name": "heart"
}, - {
- "id": 145,
- "name": "black_king_bar"
}, - {
- "id": 177,
- "name": "hood_of_defiance"
}
], - "kills": 10,
- "lane_creep": 182,
- "last_hits": 252,
- "neutral_creep": 80,
- "observer_used": 0,
- "observer_wards_destroyed": 1,
- "observer_wards_purchased": 0,
- "opponent": {
- "acronym": "Na`Vi",
- "id": 1699,
- "location": "UA",
- "modified_at": "2020-12-07T11:13:46Z",
- "name": "Natus Vincere",
- "slug": "natus-vincere"
}, - "player": {
- "birth_year": 1995,
- "birthday": "1995-05-03",
- "first_name": "Jingjun",
- "hometown": "USA",
- "id": 9493,
- "last_name": "Wu",
- "name": "Sneyking",
- "nationality": "US",
- "role": "3",
- "slug": "sneyking"
}, - "sentry_used": 0,
- "sentry_wards_destroyed": 1,
- "sentry_wards_purchased": 1,
- "team": {
- "acronym": "coL",
- "id": 1681,
- "location": "US",
- "modified_at": "2019-11-25T13:23:08Z",
- "name": "compLexity Gaming",
- "slug": "complexity-gaming"
}, - "team_id": 1681,
- "tower_damage": 1322,
- "tower_kills": 1,
- "xp_per_min": 605
}, - {
- "abilities": [
- {
- "id": 1568,
- "level": 1,
- "name": "lich_frost_shield"
}, - {
- "id": 248,
- "level": 2,
- "name": "lich_frost_nova"
}, - {
- "id": 1568,
- "level": 3,
- "name": "lich_frost_shield"
}, - {
- "id": 248,
- "level": 4,
- "name": "lich_frost_nova"
}, - {
- "id": 1568,
- "level": 5,
- "name": "lich_frost_shield"
}, - {
- "id": 787,
- "level": 6,
- "name": "lich_chain_frost"
}, - {
- "id": 708,
- "level": 7,
- "name": "lich_frost_armor"
}, - {
- "id": 1568,
- "level": 8,
- "name": "lich_frost_shield"
}, - {
- "id": 708,
- "level": 9,
- "name": "lich_frost_armor"
}, - {
- "id": 1073,
- "level": 10,
- "name": "special_bonus_movement_speed_25"
}, - {
- "id": 708,
- "level": 11,
- "name": "lich_frost_armor"
}, - {
- "id": 787,
- "level": 12,
- "name": "lich_chain_frost"
}, - {
- "id": 708,
- "level": 13,
- "name": "lich_frost_armor"
}, - {
- "id": 248,
- "level": 14,
- "name": "lich_frost_nova"
}, - {
- "id": 1095,
- "level": 15,
- "name": "special_bonus_unique_lich_3"
}, - {
- "id": 248,
- "level": 16,
- "name": "lich_frost_nova"
}, - {
- "id": 787,
- "level": 17,
- "name": "lich_chain_frost"
}, - {
- "id": 888,
- "level": 18,
- "name": "special_bonus_gold_income_30"
}
], - "assists": 15,
- "camps_stacked": 1,
- "creeps_stacked": 2,
- "damage_taken": null,
- "deaths": 2,
- "denies": 4,
- "faction": "radiant",
- "game_id": 168886,
- "gold_per_min": 295,
- "gold_remaining": 2031,
- "gold_spent": 11870,
- "heal": 0,
- "hero": {
- "id": 25,
- "localized_name": "Lich",
- "name": "lich"
}, - "hero_damage": 11614,
- "hero_level": 23,
- "items": [
- {
- "id": 42,
- "name": "magic_wand"
}, - {
- "id": 56,
- "name": "tpscroll"
}, - {
- "id": 85,
- "name": "bracer"
}, - {
- "id": 259,
- "name": "tranquil_boots"
}, - {
- "id": 262,
- "name": "glimmer_cape"
}
], - "kills": 2,
- "lane_creep": 44,
- "last_hits": 63,
- "neutral_creep": 13,
- "observer_used": 9,
- "observer_wards_destroyed": 2,
- "observer_wards_purchased": 20,
- "opponent": {
- "acronym": "Na`Vi",
- "id": 1699,
- "location": "UA",
- "modified_at": "2020-12-07T11:13:46Z",
- "name": "Natus Vincere",
- "slug": "natus-vincere"
}, - "player": {
- "birth_year": 1994,
- "birthday": "1994-05-14",
- "first_name": "Zakari",
- "hometown": "United States",
- "id": 9506,
- "last_name": "Freedman",
- "name": "Zfreek",
- "nationality": "US",
- "role": "4",
- "slug": "zfreek"
}, - "sentry_used": 6,
- "sentry_wards_destroyed": 4,
- "sentry_wards_purchased": 30,
- "team": {
- "acronym": "coL",
- "id": 1681,
- "location": "US",
- "modified_at": "2019-11-25T13:23:08Z",
- "name": "compLexity Gaming",
- "slug": "complexity-gaming"
}, - "team_id": 1681,
- "tower_damage": 92,
- "tower_kills": 0,
- "xp_per_min": 513
}, - {
- "abilities": [
- {
- "id": 1050,
- "level": 1,
- "name": "chen_holy_persuasion"
}, - {
- "id": 570,
- "level": 2,
- "name": "chen_penitence"
}, - {
- "id": 1050,
- "level": 3,
- "name": "chen_holy_persuasion"
}, - {
- "id": 570,
- "level": 4,
- "name": "chen_penitence"
}, - {
- "id": 1050,
- "level": 5,
- "name": "chen_holy_persuasion"
}, - {
- "id": 158,
- "level": 6,
- "name": "chen_hand_of_god"
}, - {
- "id": 1050,
- "level": 7,
- "name": "chen_holy_persuasion"
}, - {
- "id": 570,
- "level": 8,
- "name": "chen_penitence"
}, - {
- "id": 570,
- "level": 9,
- "name": "chen_penitence"
}, - {
- "id": 480,
- "level": 10,
- "name": "special_bonus_exp_boost_35"
}, - {
- "id": 831,
- "level": 11,
- "name": "chen_test_of_faith"
}, - {
- "id": 158,
- "level": 12,
- "name": "chen_hand_of_god"
}, - {
- "id": 831,
- "level": 13,
- "name": "chen_test_of_faith"
}, - {
- "id": 831,
- "level": 14,
- "name": "chen_test_of_faith"
}, - {
- "id": 365,
- "level": 15,
- "name": "special_bonus_unique_chen_3"
}, - {
- "id": 831,
- "level": 16,
- "name": "chen_test_of_faith"
}, - {
- "id": 158,
- "level": 17,
- "name": "chen_hand_of_god"
}
], - "assists": 8,
- "camps_stacked": 4,
- "creeps_stacked": 8,
- "damage_taken": null,
- "deaths": 14,
- "denies": 14,
- "faction": "dire",
- "game_id": 168886,
- "gold_per_min": 225,
- "gold_remaining": 239,
- "gold_spent": 9445,
- "heal": 3745,
- "hero": {
- "id": 65,
- "localized_name": "Chen",
- "name": "chen"
}, - "hero_damage": 5627,
- "hero_level": 19,
- "items": [
- {
- "id": 35,
- "name": "boots"
}, - {
- "id": 42,
- "name": "magic_wand"
}, - {
- "id": 52,
- "name": "ward_dispenser"
}, - {
- "id": 56,
- "name": "tpscroll"
}, - {
- "id": 95,
- "name": "buckler"
}, - {
- "id": 242,
- "name": "smoke_of_deceit"
}
], - "kills": 1,
- "lane_creep": 43,
- "last_hits": 67,
- "neutral_creep": 19,
- "observer_used": 10,
- "observer_wards_destroyed": 4,
- "observer_wards_purchased": 20,
- "opponent": {
- "acronym": "coL",
- "id": 1681,
- "location": "US",
- "modified_at": "2019-11-25T13:23:08Z",
- "name": "compLexity Gaming",
- "slug": "complexity-gaming"
}, - "player": {
- "birth_year": 1997,
- "birthday": "1997-05-16",
- "first_name": "Akbar",
- "hometown": "Russia, Uzbekistan",
- "id": 9582,
- "last_name": "Butaev",
- "name": "SoNNeikO",
- "nationality": "RU",
- "role": "5",
- "slug": "sonneiko"
}, - "sentry_used": 7,
- "sentry_wards_destroyed": 8,
- "sentry_wards_purchased": 34,
- "team": {
- "acronym": "Na`Vi",
- "id": 1699,
- "location": "UA",
- "modified_at": "2020-12-07T11:13:46Z",
- "name": "Natus Vincere",
- "slug": "natus-vincere"
}, - "team_id": 1699,
- "tower_damage": 688,
- "tower_kills": 0,
- "xp_per_min": 354
}, - {
- "abilities": [
- {
- "id": 306,
- "level": 1,
- "name": "templar_assassin_psi_blades"
}, - {
- "id": 882,
- "level": 2,
- "name": "templar_assassin_refraction"
}, - {
- "id": 882,
- "level": 3,
- "name": "templar_assassin_refraction"
}, - {
- "id": 306,
- "level": 4,
- "name": "templar_assassin_psi_blades"
}, - {
- "id": 882,
- "level": 5,
- "name": "templar_assassin_refraction"
}, - {
- "id": 467,
- "level": 6,
- "name": "templar_assassin_psionic_trap"
}, - {
- "id": 882,
- "level": 7,
- "name": "templar_assassin_refraction"
}, - {
- "id": 890,
- "level": 8,
- "name": "templar_assassin_meld"
}, - {
- "id": 890,
- "level": 9,
- "name": "templar_assassin_meld"
}, - {
- "id": 890,
- "level": 10,
- "name": "templar_assassin_meld"
}, - {
- "id": 890,
- "level": 11,
- "name": "templar_assassin_meld"
}, - {
- "id": 467,
- "level": 12,
- "name": "templar_assassin_psionic_trap"
}, - {
- "id": 356,
- "level": 13,
- "name": "special_bonus_attack_speed_25"
}, - {
- "id": 306,
- "level": 14,
- "name": "templar_assassin_psi_blades"
}, - {
- "id": 816,
- "level": 15,
- "name": "special_bonus_armor_7"
}, - {
- "id": 306,
- "level": 16,
- "name": "templar_assassin_psi_blades"
}, - {
- "id": 467,
- "level": 17,
- "name": "templar_assassin_psionic_trap"
}, - {
- "id": 960,
- "level": 18,
- "name": "special_bonus_unique_templar_assassin_2"
}, - {
- "id": 839,
- "level": 19,
- "name": "special_bonus_unique_templar_assassin"
}
], - "assists": 13,
- "camps_stacked": 3,
- "creeps_stacked": 18,
- "damage_taken": null,
- "deaths": 3,
- "denies": 20,
- "faction": "radiant",
- "game_id": 168886,
- "gold_per_min": 637,
- "gold_remaining": 2142,
- "gold_spent": 22765,
- "heal": 0,
- "hero": {
- "id": 45,
- "localized_name": "Templar Assassin",
- "name": "templar_assassin"
}, - "hero_damage": 26712,
- "hero_level": 25,
- "items": [
- {
- "id": 1,
- "name": "blink"
}, - {
- "id": 56,
- "name": "tpscroll"
}, - {
- "id": 75,
- "name": "power_treads"
}, - {
- "id": 109,
- "name": "bloodthorn"
}, - {
- "id": 145,
- "name": "black_king_bar"
}, - {
- "id": 158,
- "name": "nullifier"
}, - {
- "id": 257,
- "name": "ring_of_aquila"
}
], - "kills": 12,
- "lane_creep": 242,
- "last_hits": 380,
- "neutral_creep": 131,
- "observer_used": 1,
- "observer_wards_destroyed": 1,
- "observer_wards_purchased": 1,
- "opponent": {
- "acronym": "Na`Vi",
- "id": 1699,
- "location": "UA",
- "modified_at": "2020-12-07T11:13:46Z",
- "name": "Natus Vincere",
- "slug": "natus-vincere"
}, - "player": {
- "birth_year": 1995,
- "birthday": "1995-05-31",
- "first_name": "Linus",
- "hometown": "Sweden",
- "id": 9617,
- "last_name": "Blomdin",
- "name": "Limmp",
- "nationality": "SE",
- "role": "2",
- "slug": "limmp"
}, - "sentry_used": 3,
- "sentry_wards_destroyed": 3,
- "sentry_wards_purchased": 3,
- "team": {
- "acronym": "coL",
- "id": 1681,
- "location": "US",
- "modified_at": "2019-11-25T13:23:08Z",
- "name": "compLexity Gaming",
- "slug": "complexity-gaming"
}, - "team_id": 1681,
- "tower_damage": 4746,
- "tower_kills": 5,
- "xp_per_min": 723
}, - {
- "abilities": [
- {
- "id": 325,
- "level": 1,
- "name": "nyx_assassin_impale"
}, - {
- "id": 784,
- "level": 2,
- "name": "nyx_assassin_spiked_carapace"
}, - {
- "id": 325,
- "level": 3,
- "name": "nyx_assassin_impale"
}, - {
- "id": 784,
- "level": 4,
- "name": "nyx_assassin_spiked_carapace"
}, - {
- "id": 325,
- "level": 5,
- "name": "nyx_assassin_impale"
}, - {
- "id": 711,
- "level": 6,
- "name": "nyx_assassin_vendetta"
}, - {
- "id": 325,
- "level": 7,
- "name": "nyx_assassin_impale"
}, - {
- "id": 784,
- "level": 8,
- "name": "nyx_assassin_spiked_carapace"
}, - {
- "id": 784,
- "level": 9,
- "name": "nyx_assassin_spiked_carapace"
}, - {
- "id": 723,
- "level": 10,
- "name": "special_bonus_gold_income_10"
}, - {
- "id": 1042,
- "level": 11,
- "name": "nyx_assassin_mana_burn"
}, - {
- "id": 1042,
- "level": 12,
- "name": "nyx_assassin_mana_burn"
}, - {
- "id": 1042,
- "level": 13,
- "name": "nyx_assassin_mana_burn"
}, - {
- "id": 1042,
- "level": 14,
- "name": "nyx_assassin_mana_burn"
}, - {
- "id": 704,
- "level": 15,
- "name": "special_bonus_hp_325"
}, - {
- "id": 711,
- "level": 16,
- "name": "nyx_assassin_vendetta"
}
], - "assists": 12,
- "camps_stacked": 0,
- "creeps_stacked": 0,
- "damage_taken": null,
- "deaths": 8,
- "denies": 2,
- "faction": "dire",
- "game_id": 168886,
- "gold_per_min": 245,
- "gold_remaining": 1061,
- "gold_spent": 8715,
- "heal": 0,
- "hero": {
- "id": 87,
- "localized_name": "Nyx Assassin",
- "name": "nyx_assassin"
}, - "hero_damage": 8542,
- "hero_level": 17,
- "items": [
- {
- "id": 1,
- "name": "blink"
}, - {
- "id": 47,
- "name": "dust"
}, - {
- "id": 56,
- "name": "tpscroll"
}, - {
- "id": 167,
- "name": "spirit_vessel"
}, - {
- "id": 231,
- "name": "arcane_boots"
}
], - "kills": 2,
- "lane_creep": 11,
- "last_hits": 15,
- "neutral_creep": 1,
- "observer_used": 1,
- "observer_wards_destroyed": 2,
- "observer_wards_purchased": 0,
- "opponent": {
- "acronym": "coL",
- "id": 1681,
- "location": "US",
- "modified_at": "2019-11-25T13:23:08Z",
- "name": "compLexity Gaming",
- "slug": "complexity-gaming"
}, - "player": {
- "birth_year": 1998,
- "birthday": "1998-05-11",
- "first_name": "Evgeniy",
- "hometown": "Russia",
- "id": 9664,
- "last_name": "Makarov",
- "name": "Chuvash",
- "nationality": "RU",
- "role": "4",
- "slug": "chuvash"
}, - "sentry_used": 3,
- "sentry_wards_destroyed": 3,
- "sentry_wards_purchased": 4,
- "team": {
- "acronym": "Na`Vi",
- "id": 1699,
- "location": "UA",
- "modified_at": "2020-12-07T11:13:46Z",
- "name": "Natus Vincere",
- "slug": "natus-vincere"
}, - "team_id": 1699,
- "tower_damage": 0,
- "tower_kills": 0,
- "xp_per_min": 282
}, - {
- "abilities": [
- {
- "id": 353,
- "level": 1,
- "name": "phantom_lancer_spirit_lance"
}, - {
- "id": 256,
- "level": 2,
- "name": "phantom_lancer_phantom_edge"
}, - {
- "id": 359,
- "level": 3,
- "name": "phantom_lancer_doppelwalk"
}, - {
- "id": 256,
- "level": 4,
- "name": "phantom_lancer_phantom_edge"
}, - {
- "id": 256,
- "level": 5,
- "name": "phantom_lancer_phantom_edge"
}, - {
- "id": 665,
- "level": 6,
- "name": "phantom_lancer_juxtapose"
}, - {
- "id": 256,
- "level": 7,
- "name": "phantom_lancer_phantom_edge"
}, - {
- "id": 359,
- "level": 8,
- "name": "phantom_lancer_doppelwalk"
}, - {
- "id": 359,
- "level": 9,
- "name": "phantom_lancer_doppelwalk"
}, - {
- "id": 374,
- "level": 10,
- "name": "special_bonus_attack_speed_20"
}, - {
- "id": 359,
- "level": 11,
- "name": "phantom_lancer_doppelwalk"
}, - {
- "id": 665,
- "level": 12,
- "name": "phantom_lancer_juxtapose"
}, - {
- "id": 353,
- "level": 13,
- "name": "phantom_lancer_spirit_lance"
}, - {
- "id": 353,
- "level": 14,
- "name": "phantom_lancer_spirit_lance"
}, - {
- "id": 282,
- "level": 15,
- "name": "special_bonus_hp_250"
}, - {
- "id": 353,
- "level": 16,
- "name": "phantom_lancer_spirit_lance"
}, - {
- "id": 665,
- "level": 17,
- "name": "phantom_lancer_juxtapose"
}, - {
- "id": 929,
- "level": 18,
- "name": "special_bonus_unique_phantom_lancer"
}
], - "assists": 10,
- "camps_stacked": 2,
- "creeps_stacked": 4,
- "damage_taken": null,
- "deaths": 3,
- "denies": 7,
- "faction": "dire",
- "game_id": 168886,
- "gold_per_min": 522,
- "gold_remaining": 1681,
- "gold_spent": 20470,
- "heal": 0,
- "hero": {
- "id": 12,
- "localized_name": "Phantom Lancer",
- "name": "phantom_lancer"
}, - "hero_damage": 24363,
- "hero_level": 24,
- "items": [
- {
- "id": 56,
- "name": "tpscroll"
}, - {
- "id": 64,
- "name": "eagle"
}, - {
- "id": 75,
- "name": "power_treads"
}, - {
- "id": 143,
- "name": "heart"
}, - {
- "id": 193,
- "name": "manta"
}, - {
- "id": 225,
- "name": "diffusal_blade"
}
], - "kills": 3,
- "lane_creep": 206,
- "last_hits": 405,
- "neutral_creep": 184,
- "observer_used": 0,
- "observer_wards_destroyed": 0,
- "observer_wards_purchased": 0,
- "opponent": {
- "acronym": "coL",
- "id": 1681,
- "location": "US",
- "modified_at": "2019-11-25T13:23:08Z",
- "name": "compLexity Gaming",
- "slug": "complexity-gaming"
}, - "player": {
- "birth_year": 1999,
- "birthday": "1999-08-08",
- "first_name": "Vladislav",
- "hometown": "Ukraine",
- "id": 9795,
- "last_name": "Krystanek",
- "name": "Crystallize",
- "nationality": "UA",
- "role": "1",
- "slug": "crystallize"
}, - "sentry_used": 0,
- "sentry_wards_destroyed": 1,
- "sentry_wards_purchased": 0,
- "team": {
- "acronym": "Na`Vi",
- "id": 1699,
- "location": "UA",
- "modified_at": "2020-12-07T11:13:46Z",
- "name": "Natus Vincere",
- "slug": "natus-vincere"
}, - "team_id": 1699,
- "tower_damage": 129,
- "tower_kills": 0,
- "xp_per_min": 582
}, - {
- "abilities": [
- {
- "id": 542,
- "level": 1,
- "name": "bloodseeker_blood_bath"
}, - {
- "id": 1094,
- "level": 2,
- "name": "bloodseeker_bloodrage"
}, - {
- "id": 1085,
- "level": 3,
- "name": "bloodseeker_thirst"
}, - {
- "id": 1085,
- "level": 4,
- "name": "bloodseeker_thirst"
}, - {
- "id": 1085,
- "level": 5,
- "name": "bloodseeker_thirst"
}, - {
- "id": 736,
- "level": 6,
- "name": "bloodseeker_rupture"
}, - {
- "id": 1085,
- "level": 7,
- "name": "bloodseeker_thirst"
}, - {
- "id": 542,
- "level": 8,
- "name": "bloodseeker_blood_bath"
}, - {
- "id": 542,
- "level": 9,
- "name": "bloodseeker_blood_bath"
}, - {
- "id": 542,
- "level": 10,
- "name": "bloodseeker_blood_bath"
}, - {
- "id": 267,
- "level": 11,
- "name": "special_bonus_armor_6"
}, - {
- "id": 736,
- "level": 12,
- "name": "bloodseeker_rupture"
}, - {
- "id": 1094,
- "level": 13,
- "name": "bloodseeker_bloodrage"
}, - {
- "id": 1094,
- "level": 14,
- "name": "bloodseeker_bloodrage"
}, - {
- "id": 271,
- "level": 15,
- "name": "special_bonus_hp_275"
}, - {
- "id": 1094,
- "level": 16,
- "name": "bloodseeker_bloodrage"
}, - {
- "id": 736,
- "level": 17,
- "name": "bloodseeker_rupture"
}, - {
- "id": 1133,
- "level": 18,
- "name": "special_bonus_unique_bloodseeker_3"
}, - {
- "id": 1434,
- "level": 19,
- "name": "special_bonus_unique_bloodseeker_4"
}
], - "assists": 7,
- "camps_stacked": 1,
- "creeps_stacked": 3,
- "damage_taken": null,
- "deaths": 3,
- "denies": 19,
- "faction": "radiant",
- "game_id": 168886,
- "gold_per_min": 646,
- "gold_remaining": 4316,
- "gold_spent": 25805,
- "heal": 657,
- "hero": {
- "id": 4,
- "localized_name": "Bloodseeker",
- "name": "bloodseeker"
}, - "hero_damage": 25171,
- "hero_level": 25,
- "items": [
- {
- "id": 36,
- "name": "gem"
}, - {
- "id": 44,
- "name": "clarity"
}, - {
- "id": 56,
- "name": "tpscroll"
}, - {
- "id": 75,
- "name": "power_treads"
}, - {
- "id": 145,
- "name": "black_king_bar"
}, - {
- "id": 185,
- "name": "butterfly"
}, - {
- "id": 193,
- "name": "manta"
}, - {
- "id": 209,
- "name": "mjollnir"
}
], - "kills": 13,
- "lane_creep": 251,
- "last_hits": 397,
- "neutral_creep": 151,
- "observer_used": 0,
- "observer_wards_destroyed": 1,
- "observer_wards_purchased": 0,
- "opponent": {
- "acronym": "Na`Vi",
- "id": 1699,
- "location": "UA",
- "modified_at": "2020-12-07T11:13:46Z",
- "name": "Natus Vincere",
- "slug": "natus-vincere"
}, - "player": {
- "birth_year": 2000,
- "birthday": "2000-02-18",
- "first_name": "Rolen Andrei Gabriel",
- "hometown": "Philippines",
- "id": 9895,
- "last_name": "Ong",
- "name": "Skem",
- "nationality": "PH",
- "role": null,
- "slug": "i-want-to-meet-my-expectations"
}, - "sentry_used": 1,
- "sentry_wards_destroyed": 0,
- "sentry_wards_purchased": 0,
- "team": {
- "acronym": "coL",
- "id": 1681,
- "location": "US",
- "modified_at": "2019-11-25T13:23:08Z",
- "name": "compLexity Gaming",
- "slug": "complexity-gaming"
}, - "team_id": 1681,
- "tower_damage": 1088,
- "tower_kills": 0,
- "xp_per_min": 641
}, - {
- "abilities": [
- {
- "id": 83,
- "level": 1,
- "name": "pugna_nether_blast"
}, - {
- "id": 229,
- "level": 2,
- "name": "pugna_decrepify"
}, - {
- "id": 83,
- "level": 3,
- "name": "pugna_nether_blast"
}, - {
- "id": 229,
- "level": 4,
- "name": "pugna_decrepify"
}, - {
- "id": 83,
- "level": 5,
- "name": "pugna_nether_blast"
}, - {
- "id": 584,
- "level": 6,
- "name": "pugna_life_drain"
}, - {
- "id": 83,
- "level": 7,
- "name": "pugna_nether_blast"
}, - {
- "id": 408,
- "level": 8,
- "name": "pugna_nether_ward"
}, - {
- "id": 408,
- "level": 9,
- "name": "pugna_nether_ward"
}, - {
- "id": 408,
- "level": 10,
- "name": "pugna_nether_ward"
}, - {
- "id": 764,
- "level": 11,
- "name": "special_bonus_hp_225"
}, - {
- "id": 584,
- "level": 12,
- "name": "pugna_life_drain"
}, - {
- "id": 229,
- "level": 13,
- "name": "pugna_decrepify"
}, - {
- "id": 229,
- "level": 14,
- "name": "pugna_decrepify"
}, - {
- "id": 408,
- "level": 15,
- "name": "pugna_nether_ward"
}, - {
- "id": 1224,
- "level": 16,
- "name": "special_bonus_unique_pugna_6"
}, - {
- "id": 584,
- "level": 17,
- "name": "pugna_life_drain"
}, - {
- "id": 767,
- "level": 18,
- "name": "special_bonus_unique_pugna_5"
}
], - "assists": 11,
- "camps_stacked": 1,
- "creeps_stacked": 3,
- "damage_taken": null,
- "deaths": 7,
- "denies": 5,
- "faction": "dire",
- "game_id": 168886,
- "gold_per_min": 373,
- "gold_remaining": 438,
- "gold_spent": 14610,
- "heal": 0,
- "hero": {
- "id": 44,
- "localized_name": "Pugna",
- "name": "pugna"
}, - "hero_damage": 25414,
- "hero_level": 22,
- "items": [
- {
- "id": 50,
- "name": "ward_sentry"
}, - {
- "id": 56,
- "name": "tpscroll"
}, - {
- "id": 113,
- "name": "cyclone"
}, - {
- "id": 115,
- "name": "aether_lens"
}, - {
- "id": 127,
- "name": "dagon_3"
}, - {
- "id": 259,
- "name": "tranquil_boots"
}
], - "kills": 4,
- "lane_creep": 153,
- "last_hits": 178,
- "neutral_creep": 21,
- "observer_used": 0,
- "observer_wards_destroyed": 1,
- "observer_wards_purchased": 0,
- "opponent": {
- "acronym": "coL",
- "id": 1681,
- "location": "US",
- "modified_at": "2019-11-25T13:23:08Z",
- "name": "compLexity Gaming",
- "slug": "complexity-gaming"
}, - "player": {
- "birth_year": 1995,
- "birthday": "1995-01-05",
- "first_name": "Evgeniy",
- "hometown": "Kyrgyzstan",
- "id": 10005,
- "last_name": "Ree",
- "name": "Blizzy",
- "nationality": "KG",
- "role": "3",
- "slug": "blizzy"
}, - "sentry_used": 2,
- "sentry_wards_destroyed": 0,
- "sentry_wards_purchased": 3,
- "team": {
- "acronym": "Na`Vi",
- "id": 1699,
- "location": "UA",
- "modified_at": "2020-12-07T11:13:46Z",
- "name": "Natus Vincere",
- "slug": "natus-vincere"
}, - "team_id": 1699,
- "tower_damage": 3076,
- "tower_kills": 1,
- "xp_per_min": 466
}, - {
- "abilities": [
- {
- "id": 907,
- "level": 1,
- "name": "lina_light_strike_array"
}, - {
- "id": 398,
- "level": 2,
- "name": "lina_fiery_soul"
}, - {
- "id": 509,
- "level": 3,
- "name": "lina_dragon_slave"
}, - {
- "id": 509,
- "level": 4,
- "name": "lina_dragon_slave"
}, - {
- "id": 509,
- "level": 5,
- "name": "lina_dragon_slave"
}, - {
- "id": 218,
- "level": 6,
- "name": "lina_laguna_blade"
}, - {
- "id": 509,
- "level": 7,
- "name": "lina_dragon_slave"
}, - {
- "id": 907,
- "level": 8,
- "name": "lina_light_strike_array"
}, - {
- "id": 907,
- "level": 9,
- "name": "lina_light_strike_array"
}, - {
- "id": 97,
- "level": 10,
- "name": "special_bonus_cast_range_125"
}, - {
- "id": 907,
- "level": 11,
- "name": "lina_light_strike_array"
}, - {
- "id": 218,
- "level": 12,
- "name": "lina_laguna_blade"
}, - {
- "id": 398,
- "level": 13,
- "name": "lina_fiery_soul"
}, - {
- "id": 398,
- "level": 14,
- "name": "lina_fiery_soul"
}, - {
- "id": 90,
- "level": 15,
- "name": "special_bonus_hp_350"
}, - {
- "id": 398,
- "level": 16,
- "name": "lina_fiery_soul"
}, - {
- "id": 218,
- "level": 17,
- "name": "lina_laguna_blade"
}, - {
- "id": 611,
- "level": 18,
- "name": "special_bonus_unique_lina_2"
}
], - "assists": 4,
- "camps_stacked": 1,
- "creeps_stacked": 3,
- "damage_taken": null,
- "deaths": 6,
- "denies": 17,
- "faction": "dire",
- "game_id": 168886,
- "gold_per_min": 460,
- "gold_remaining": 245,
- "gold_spent": 18185,
- "heal": 0,
- "hero": {
- "id": 24,
- "localized_name": "Lina",
- "name": "lina"
}, - "hero_damage": 24677,
- "hero_level": 24,
- "items": [
- {
- "id": 9,
- "name": "platemail"
}, - {
- "id": 75,
- "name": "power_treads"
}, - {
- "id": 81,
- "name": "pers"
}, - {
- "id": 113,
- "name": "cyclone"
}, - {
- "id": 145,
- "name": "black_king_bar"
}, - {
- "id": 151,
- "name": "recipe_sphere"
}, - {
- "id": 201,
- "name": "invis_sword"
}
], - "kills": 11,
- "lane_creep": 208,
- "last_hits": 269,
- "neutral_creep": 65,
- "observer_used": 1,
- "observer_wards_destroyed": 2,
- "observer_wards_purchased": 0,
- "opponent": {
- "acronym": "coL",
- "id": 1681,
- "location": "US",
- "modified_at": "2019-11-25T13:23:08Z",
- "name": "compLexity Gaming",
- "slug": "complexity-gaming"
}, - "player": {
- "birth_year": 1998,
- "birthday": "1998-10-25",
- "first_name": "Idan",
- "hometown": "Ukraine, Israel",
- "id": 17150,
- "last_name": "Vardanian",
- "name": "MagicaL",
- "nationality": "IL",
- "role": "2",
- "slug": "magical"
}, - "sentry_used": 0,
- "sentry_wards_destroyed": 1,
- "sentry_wards_purchased": 0,
- "team": {
- "acronym": "Na`Vi",
- "id": 1699,
- "location": "UA",
- "modified_at": "2020-12-07T11:13:46Z",
- "name": "Natus Vincere",
- "slug": "natus-vincere"
}, - "team_id": 1699,
- "tower_damage": 1238,
- "tower_kills": 2,
- "xp_per_min": 583
}
], - "position": 2,
- "status": "finished",
- "teams": [
- {
- "bans": [
- 90,
- 32,
- 96