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 champions for the latest version
object (filter_over_LoLChampions) Example: filter[armor]=33 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_LoLChampions) Example: range[hpperlevel]=50,100 Options to select results within ranges | |
object (search_over_LoLChampions) Example: search[name]=xayah Options to search results | |
sort | Array of any (sort_over_LoLChampions) non-empty Items Enum: "armor" "-armor" "armorperlevel" "-armorperlevel" "attackdamage" "-attackdamage" "attackdamageperlevel" "-attackdamageperlevel" "attackrange" "-attackrange" "attackspeedoffset" "-attackspeedoffset" "attackspeedperlevel" "-attackspeedperlevel" "crit" "-crit" "critperlevel" "-critperlevel" "hp" "-hp" "hpperlevel" "-hpperlevel" "hpregen" "-hpregen" "hpregenperlevel" "-hpregenperlevel" "id" "-id" "movespeed" "-movespeed" "mp" "-mp" "mpperlevel" "-mpperlevel" "mpregen" "-mpregen" "mpregenperlevel" "-mpregenperlevel" "name" "-name" "spellblock" "-spellblock" "spellblockperlevel" "-spellblockperlevel" Example: sort=-attackrange&sort=name Options to sort results |
/lol/champions?page[size]=1
[- {
- "armor": 28,
- "armorperlevel": 3.4,
- "attackdamage": 60,
- "attackdamageperlevel": 3,
- "attackrange": 175,
- "attackspeedoffset": null,
- "attackspeedperlevel": 2.5,
- "crit": 0,
- "critperlevel": 0,
- "hp": 550,
- "hpperlevel": 85,
- "hpregen": 7.5,
- "hpregenperlevel": 0.75,
- "id": 2671,
- "movespeed": 345,
- "mp": 500,
- "mpperlevel": 0,
- "mpregen": 0,
- "mpregenperlevel": 0,
- "name": "Yone",
- "spellblock": 32,
- "spellblockperlevel": 1.25,
- "videogame_versions": [
- "10.16.1"
]
}
]
Get a single champion by ID or by slug
lol_champion_id required | integer (LoLChampionID) >= 1 A champion ID |
/lol/champions/2527
{- "armor": 28,
- "armorperlevel": 3.5,
- "attackdamage": 60,
- "attackdamageperlevel": 2.88,
- "attackrange": 650,
- "attackspeedoffset": null,
- "attackspeedperlevel": 4,
- "crit": 0,
- "critperlevel": 0,
- "hp": 481,
- "hpperlevel": 91,
- "hpregen": 3.5,
- "hpregenperlevel": 0.55,
- "id": 2527,
- "movespeed": 325,
- "mp": 313.7,
- "mpperlevel": 35,
- "mpregen": 7.4,
- "mpregenperlevel": 0.55,
- "name": "Caitlyn",
- "spellblock": 30,
- "spellblockperlevel": 0.5,
- "videogame_versions": [
- "9.17.1",
- "9.16.1",
- "9.15.1",
- "9.14.1",
- "9.13.1",
- "9.12.1"
]
}
List champions for all versions
object (filter_over_LoLChampions) Example: filter[armor]=33 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_LoLChampions) Example: range[hpperlevel]=50,100 Options to select results within ranges | |
object (search_over_LoLChampions) Example: search[name]=xayah Options to search results | |
sort | Array of any (sort_over_LoLChampions) non-empty Items Enum: "armor" "-armor" "armorperlevel" "-armorperlevel" "attackdamage" "-attackdamage" "attackdamageperlevel" "-attackdamageperlevel" "attackrange" "-attackrange" "attackspeedoffset" "-attackspeedoffset" "attackspeedperlevel" "-attackspeedperlevel" "crit" "-crit" "critperlevel" "-critperlevel" "hp" "-hp" "hpperlevel" "-hpperlevel" "hpregen" "-hpregen" "hpregenperlevel" "-hpregenperlevel" "id" "-id" "movespeed" "-movespeed" "mp" "-mp" "mpperlevel" "-mpperlevel" "mpregen" "-mpregen" "mpregenperlevel" "-mpregenperlevel" "name" "-name" "spellblock" "-spellblock" "spellblockperlevel" "-spellblockperlevel" Example: sort=-attackrange&sort=name Options to sort results |
/lol/champions?page[size]=1
[- {
- "armor": 28,
- "armorperlevel": 3.4,
- "attackdamage": 60,
- "attackdamageperlevel": 3,
- "attackrange": 175,
- "attackspeedoffset": null,
- "attackspeedperlevel": 2.5,
- "crit": 0,
- "critperlevel": 0,
- "hp": 550,
- "hpperlevel": 85,
- "hpregen": 7.5,
- "hpregenperlevel": 0.75,
- "id": 2671,
- "movespeed": 345,
- "mp": 500,
- "mpperlevel": 0,
- "mpregen": 0,
- "mpregenperlevel": 0,
- "name": "Yone",
- "spellblock": 32,
- "spellblockperlevel": 1.25,
- "videogame_versions": [
- "10.16.1"
]
}
]
List champions for the given version
lol_version_name required | integer (LoLVersionName) >= 1 A version to select champions on. Can be all if you want to query all the champions over all the versions of league of legends. |
object (filter_over_LoLChampions) Example: filter[armor]=33 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_LoLChampions) Example: range[hpperlevel]=50,100 Options to select results within ranges | |
object (search_over_LoLChampions) Example: search[name]=xayah Options to search results | |
sort | Array of any (sort_over_LoLChampions) non-empty Items Enum: "armor" "-armor" "armorperlevel" "-armorperlevel" "attackdamage" "-attackdamage" "attackdamageperlevel" "-attackdamageperlevel" "attackrange" "-attackrange" "attackspeedoffset" "-attackspeedoffset" "attackspeedperlevel" "-attackspeedperlevel" "crit" "-crit" "critperlevel" "-critperlevel" "hp" "-hp" "hpperlevel" "-hpperlevel" "hpregen" "-hpregen" "hpregenperlevel" "-hpregenperlevel" "id" "-id" "movespeed" "-movespeed" "mp" "-mp" "mpperlevel" "-mpperlevel" "mpregen" "-mpregen" "mpregenperlevel" "-mpregenperlevel" "name" "-name" "spellblock" "-spellblock" "spellblockperlevel" "-spellblockperlevel" Example: sort=-attackrange&sort=name Options to sort results |
/lol/champions?page[size]=1
[- {
- "armor": 28,
- "armorperlevel": 3.4,
- "attackdamage": 60,
- "attackdamageperlevel": 3,
- "attackrange": 175,
- "attackspeedoffset": null,
- "attackspeedperlevel": 2.5,
- "crit": 0,
- "critperlevel": 0,
- "hp": 550,
- "hpperlevel": 85,
- "hpregen": 7.5,
- "hpregenperlevel": 0.75,
- "id": 2671,
- "movespeed": 345,
- "mp": 500,
- "mpperlevel": 0,
- "mpregen": 0,
- "mpregenperlevel": 0,
- "name": "Yone",
- "spellblock": 32,
- "spellblockperlevel": 1.25,
- "videogame_versions": [
- "10.16.1"
]
}
]
Get a single League of Legends game by ID
lol_game_id required | integer (LoLGameID) >= 1 A LoL game ID |
/lol/games/206047
{- "begin_at": "2019-07-07T22:01:25Z",
- "complete": true,
- "detailed_stats": true,
- "end_at": "2019-07-07T22:35:30Z",
- "finished": true,
- "forfeit": false,
- "id": 206047,
- "length": 1500,
- "match": {
- "begin_at": "2019-07-07T22:01:24Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": "2019-07-07T22:35:30Z",
- "forfeit": false,
- "game_advantage": null,
- "games": [
- {
- "begin_at": "2019-07-07T22:01:25Z",
- "complete": true,
- "detailed_stats": true,
- "end_at": "2019-07-07T22:35:30Z",
- "finished": true,
- "forfeit": false,
- "id": 206047,
- "length": 1500,
- "match_id": 545034,
- "position": 1,
- "status": "finished",
- "video_url": null,
- "winner": {
- "id": 389,
- "type": "Team"
}, - "winner_type": "Team"
}
], - "id": 545034,
- "league": {
- "id": 4198,
- "modified_at": "2020-02-13T15:22:42Z",
- "name": "LCS",
- "slug": "league-of-legends-lcs",
}, - "league_id": 4198,
- "live": {
- "opens_at": "2019-07-07T21:46:24Z",
- "supported": true,
- "url": "wss://live.dev.pandascore.co/matches/545034"
}, - "match_type": "best_of",
- "modified_at": "2019-07-07T22:53:53Z",
- "name": "CLG vs TSM",
- "number_of_games": 1,
- "opponents": [
- {
- "opponent": {
- "acronym": "CLG",
- "id": 389,
- "location": "US",
- "modified_at": "2020-12-09T10:30:51Z",
- "name": "Counter Logic Gaming",
- "slug": "counter-logic-gaming"
}, - "type": "Team"
}, - {
- "opponent": {
- "acronym": "TSM",
- "id": 387,
- "location": "US",
- "modified_at": "2020-12-07T19:09:41Z",
- "name": "Team SoloMid",
- "slug": "solomid"
}, - "type": "Team"
}
], - "original_scheduled_at": "2019-07-07T22:00:00Z",
- "rescheduled": false,
- "results": [
- {
- "score": 1,
- "team_id": 389
}, - {
- "score": 0,
- "team_id": 387
}
], - "scheduled_at": "2019-07-07T22:00:00Z",
- "serie": {
- "begin_at": "2019-05-31T22:00:00Z",
- "description": null,
- "end_at": "2019-09-09T18:00:00Z",
- "full_name": "Summer 2019",
- "id": 1795,
- "league_id": 4198,
- "modified_at": "2019-12-27T12:34:59Z",
- "name": "",
- "season": "Summer",
- "slug": "league-of-legends-lcs-summer-2019",
- "tier": null,
- "winner_id": 390,
- "winner_type": "Team",
- "year": 2019
}, - "serie_id": 1795,
- "slug": "counter-logic-gaming-vs-tsm-2019-07-08",
- "status": "finished",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament": {
- "begin_at": "2019-05-31T22:00:00Z",
- "end_at": "2019-08-06T18:00:00Z",
- "id": 2378,
- "league_id": 4198,
- "live_supported": true,
- "modified_at": "2019-08-05T11:54:55Z",
- "name": "Regular season",
- "prizepool": null,
- "serie_id": 1795,
- "slug": "league-of-legends-lcs-summer-2019-regular-season",
- "winner_id": 390,
- "winner_type": "Team"
}, - "tournament_id": 2378,
- "videogame": {
- "id": 1,
- "name": "LoL",
- "slug": "league-of-legends"
}, - "videogame_version": {
- "current": false,
- "name": "9.12.1"
}, - "winner": {
- "acronym": "CLG",
- "id": 389,
- "location": "US",
- "modified_at": "2020-12-09T10:30:51Z",
- "name": "Counter Logic Gaming",
- "slug": "counter-logic-gaming"
}, - "winner_id": 389
}, - "match_id": 545034,
- "players": [
- {
- "assists": 3,
- "champion": {
- "id": 2351,
- "name": "Cassiopeia"
}, - "deaths": 3,
- "flags": {
- "first_blood_assist": false,
- "first_blood_kill": false,
- "first_inhibitor_assist": false,
- "first_inhibitor_kill": false,
- "first_tower_assist": false,
- "first_tower_kill": false
}, - "game_id": 206047,
- "gold_earned": 9231,
- "gold_spent": 9225,
- "items": [
- {
- "id": 674,
- "is_trinket": false,
- "name": "Blasting Wand"
}, - {
- "id": 729,
- "is_trinket": true,
- "name": "Farsight Alteration"
}, - {
- "id": 741,
- "is_trinket": false,
- "name": "Doran's Ring"
}, - {
- "id": 826,
- "is_trinket": false,
- "name": "Seraph's Embrace"
}, - {
- "id": 1651,
- "is_trinket": false,
- "name": "Fiendish Codex"
}, - {
- "id": 2297,
- "is_trinket": false,
- "name": "Liandry's Torment"
}
], - "kills": 3,
- "kills_counters": {
- "inhibitors": 0,
- "neutral_minions": 12,
- "neutral_minions_enemy_jungle": 0,
- "neutral_minions_team_jungle": 12,
- "players": 3,
- "turrets": 0,
- "wards": 4
}, - "kills_series": {
- "double_kills": 0,
- "penta_kills": 0,
- "quadra_kills": 0,
- "triple_kills": 0
}, - "largest_critical_strike": 0,
- "largest_killing_spree": 2,
- "largest_multi_kill": 1,
- "level": 13,
- "magic_damage": {
- "dealt": 91140,
- "dealt_to_champions": 12846
}, - "masteries": [ ],
- "minions_killed": 193,
- "opponent": {
- "acronym": "CLG",
- "id": 389,
- "location": "US",
- "modified_at": "2020-12-09T10:30:51Z",
- "name": "Counter Logic Gaming",
- "slug": "counter-logic-gaming"
}, - "physical_damage": {
- "dealt": 9205,
- "dealt_to_champions": 79,
- "taken": 4358
}, - "player": {
- "birth_year": 1996,
- "birthday": "1996-02-21",
- "first_name": "Søren",
- "hometown": "Denmark",
- "id": 40,
- "last_name": "Bjerg",
- "name": "Bjergsen",
- "nationality": "DK",
- "role": "mid",
- "slug": "bjergsen"
}, - "player_id": 40,
- "role": "mid",
- "runes": [ ],
- "spells": [
- {
- "id": 28,
- "name": "Flash"
}, - {
- "id": 39,
- "name": "Teleport"
}
], - "team": {
- "acronym": "TSM",
- "id": 387,
- "location": "US",
- "modified_at": "2020-12-07T19:09:41Z",
- "name": "Team SoloMid",
- "slug": "solomid"
}, - "total_damage": {
- "dealt": 100345,
- "dealt_to_champions": 12926,
- "taken": 14166
}, - "total_heal": 5100,
- "total_time_crowd_control_dealt": 338,
- "total_units_healed": 1,
- "true_damage": {
- "dealt": 0,
- "dealt_to_champions": 0,
- "taken": 506
}, - "wards": {
- "placed": 12,
- "sight_wards_bought_in_game": 0,
- "vision_wards_bought_in_game": 6
}, - "wards_placed": 12
}, - {
- "assists": 2,
- "champion": {
- "id": 2525,
- "name": "Gragas"
}, - "deaths": 2,
- "flags": {
- "first_blood_assist": false,
- "first_blood_kill": false,
- "first_inhibitor_assist": false,
- "first_inhibitor_kill": false,
- "first_tower_assist": false,
- "first_tower_kill": false
}, - "game_id": 206047,
- "gold_earned": 4831,
- "gold_spent": 4600,
- "items": [
- {
- "id": 668,
- "is_trinket": false,
- "name": "Null-Magic Mantle"
}, - {
- "id": 671,
- "is_trinket": false,
- "name": "Cloth Armor"
}, - {
- "id": 761,
- "is_trinket": false,
- "name": "Glacial Shroud"
}, - {
- "id": 763,
- "is_trinket": false,
- "name": "Control Ward"
}, - {
- "id": 1649,
- "is_trinket": false,
- "name": "Ninja Tabi"
}, - {
- "id": 1650,
- "is_trinket": true,
- "name": "Oracle Lens"
}, - {
- "id": 2280,
- "is_trinket": false,
- "name": "Frostfang"
}
], - "kills": 0,
- "kills_counters": {
- "inhibitors": 0,
- "neutral_minions": 0,
- "neutral_minions_enemy_jungle": 0,
- "neutral_minions_team_jungle": 0,
- "players": 0,
- "turrets": 0,
- "wards": 6
}, - "kills_series": {
- "double_kills": 0,
- "penta_kills": 0,
- "quadra_kills": 0,
- "triple_kills": 0
}, - "largest_critical_strike": 0,
- "largest_killing_spree": 0,
- "largest_multi_kill": 0,
- "level": 9,
- "magic_damage": {
- "dealt": 5659,
- "dealt_to_champions": 1962
}, - "masteries": [ ],
- "minions_killed": 15,
- "opponent": {
- "acronym": "CLG",
- "id": 389,
- "location": "US",
- "modified_at": "2020-12-09T10:30:51Z",
- "name": "Counter Logic Gaming",
- "slug": "counter-logic-gaming"
}, - "physical_damage": {
- "dealt": 1633,
- "dealt_to_champions": 272,
- "taken": 2417
}, - "player": {
- "birth_year": 1997,
- "birthday": "1997-02-10",
- "first_name": "Andy",
- "hometown": "Canada",
- "id": 53,
- "last_name": "Ta",
- "name": "Smoothie",
- "nationality": "CA",
- "role": "sup",
- "slug": "smoothie"
}, - "player_id": 53,
- "role": "sup",
- "runes": [ ],
- "spells": [
- {
- "id": 26,
- "name": "Ignite"
}, - {
- "id": 28,
- "name": "Flash"
}
], - "team": {
- "acronym": "TSM",
- "id": 387,
- "location": "US",
- "modified_at": "2020-12-07T19:09:41Z",
- "name": "Team SoloMid",
- "slug": "solomid"
}, - "total_damage": {
- "dealt": 9812,
- "dealt_to_champions": 2514,
- "taken": 8360
}, - "total_heal": 2355,
- "total_time_crowd_control_dealt": 88,
- "total_units_healed": 1,
- "true_damage": {
- "dealt": 2519,
- "dealt_to_champions": 280,
- "taken": 124
}, - "wards": {
- "placed": 37,
- "sight_wards_bought_in_game": 0,
- "vision_wards_bought_in_game": 12
}, - "wards_placed": 37
}, - {
- "assists": 9,
- "champion": {
- "id": 2353,
- "name": "Corki"
}, - "deaths": 1,
- "flags": {
- "first_blood_assist": false,
- "first_blood_kill": false,
- "first_inhibitor_assist": false,
- "first_inhibitor_kill": false,
- "first_tower_assist": false,
- "first_tower_kill": false
}, - "game_id": 206047,
- "gold_earned": 12927,
- "gold_spent": 10208,
- "items": [
- {
- "id": 658,
- "is_trinket": false,
- "name": "Cloak of Agility"
}, - {
- "id": 686,
- "is_trinket": true,
- "name": "Warding Totem (Trinket)"
}, - {
- "id": 692,
- "is_trinket": false,
- "name": "Pickaxe"
}, - {
- "id": 774,
- "is_trinket": false,
- "name": "Sorcerer's Shoes"
}, - {
- "id": 859,
- "is_trinket": false,
- "name": "Trinity Force"
}, - {
- "id": 2329,
- "is_trinket": false,
- "name": "Rapid Firecannon"
}
], - "kills": 6,
- "kills_counters": {
- "inhibitors": 0,
- "neutral_minions": 24,
- "neutral_minions_enemy_jungle": 0,
- "neutral_minions_team_jungle": 17,
- "players": 6,
- "turrets": 2,
- "wards": 9
}, - "kills_series": {
- "double_kills": 1,
- "penta_kills": 0,
- "quadra_kills": 0,
- "triple_kills": 0
}, - "largest_critical_strike": 1584,
- "largest_killing_spree": 4,
- "largest_multi_kill": 2,
- "level": 15,
- "magic_damage": {
- "dealt": 121156,
- "dealt_to_champions": 10873
}, - "masteries": [ ],
- "minions_killed": 227,
- "opponent": {
- "acronym": "TSM",
- "id": 387,
- "location": "US",
- "modified_at": "2020-12-07T19:09:41Z",
- "name": "Team SoloMid",
- "slug": "solomid"
}, - "physical_damage": {
- "dealt": 18464,
- "dealt_to_champions": 1115,
- "taken": 4554
}, - "player": {
- "birth_year": 1997,
- "birthday": "1997-10-27",
- "first_name": "Tristan",
- "hometown": "Germany",
- "id": 62,
- "last_name": "Schrage",
- "name": "PowerOfEvil",
- "nationality": "DE",
- "role": "mid",
- "slug": "powerofevil"
}, - "player_id": 62,
- "role": "mid",
- "runes": [ ],
- "spells": [
- {
- "id": 28,
- "name": "Flash"
}, - {
- "id": 39,
- "name": "Teleport"
}
], - "team": {
- "acronym": "CLG",
- "id": 389,
- "location": "US",
- "modified_at": "2020-12-09T10:30:51Z",
- "name": "Counter Logic Gaming",
- "slug": "counter-logic-gaming"
}, - "total_damage": {
- "dealt": 149931,
- "dealt_to_champions": 12138,
- "taken": 7954
}, - "total_heal": 2609,
- "total_time_crowd_control_dealt": 41,
- "total_units_healed": 1,
- "true_damage": {
- "dealt": 10310,
- "dealt_to_champions": 150,
- "taken": 0
}, - "wards": {
- "placed": 14,
- "sight_wards_bought_in_game": 0,
- "vision_wards_bought_in_game": 6
}, - "wards_placed": 14
}, - {
- "assists": 6,
- "champion": {
- "id": 2518,
- "name": "Jarvan IV"
}, - "deaths": 6,
- "flags": {
- "first_blood_assist": false,
- "first_blood_kill": false,
- "first_inhibitor_assist": false,
- "first_inhibitor_kill": false,
- "first_tower_assist": true,
- "first_tower_kill": false
}, - "game_id": 206047,
- "gold_earned": 7324,
- "gold_spent": 6545,
- "items": [
- {
- "id": 607,
- "is_trinket": false,
- "name": "Broken Stopwatch"
}, - {
- "id": 739,
- "is_trinket": false,
- "name": "Negatron Cloak"
}, - {
- "id": 763,
- "is_trinket": false,
- "name": "Control Ward"
}, - {
- "id": 829,
- "is_trinket": false,
- "name": "Skirmisher's Sabre (Enchantment: Cinderhulk)"
}, - {
- "id": 849,
- "is_trinket": false,
- "name": "Kindlegem"
}, - {
- "id": 1649,
- "is_trinket": false,
- "name": "Ninja Tabi"
}, - {
- "id": 1650,
- "is_trinket": true,
- "name": "Oracle Lens"
}
], - "kills": 1,
- "kills_counters": {
- "inhibitors": 0,
- "neutral_minions": 91,
- "neutral_minions_enemy_jungle": 15,
- "neutral_minions_team_jungle": 49,
- "players": 1,
- "turrets": 0,
- "wards": 4
}, - "kills_series": {
- "double_kills": 0,
- "penta_kills": 0,
- "quadra_kills": 0,
- "triple_kills": 0
}, - "largest_critical_strike": 0,
- "largest_killing_spree": 0,
- "largest_multi_kill": 1,
- "level": 12,
- "magic_damage": {
- "dealt": 24755,
- "dealt_to_champions": 842
}, - "masteries": [ ],
- "minions_killed": 104,
- "opponent": {
- "acronym": "CLG",
- "id": 389,
- "location": "US",
- "modified_at": "2020-12-09T10:30:51Z",
- "name": "Counter Logic Gaming",
- "slug": "counter-logic-gaming"
}, - "physical_damage": {
- "dealt": 57760,
- "dealt_to_champions": 4827,
- "taken": 13072
}, - "player": {
- "birth_year": 1996,
- "birthday": "1996-12-26",
- "first_name": "Matthew",
- "hometown": "USA",
- "id": 223,
- "last_name": "Higginbotham",
- "name": "Akaadian",
- "nationality": "US",
- "role": "jun",
- "slug": "akaadian"
}, - "player_id": 223,
- "role": "jun",
- "runes": [ ],
- "spells": [
- {
- "id": 28,
- "name": "Flash"
}, - {
- "id": 36,
- "name": "Smite"
}
], - "team": {
- "acronym": "TSM",
- "id": 387,
- "location": "US",
- "modified_at": "2020-12-07T19:09:41Z",
- "name": "Team SoloMid",
- "slug": "solomid"
}, - "total_damage": {
- "dealt": 88678,
- "dealt_to_champions": 6234,
- "taken": 21499
}, - "total_heal": 5156,
- "total_time_crowd_control_dealt": 309,
- "total_units_healed": 1,
- "true_damage": {
- "dealt": 6161,
- "dealt_to_champions": 563,
- "taken": 689
}, - "wards": {
- "placed": 19,
- "sight_wards_bought_in_game": 0,
- "vision_wards_bought_in_game": 9
}, - "wards_placed": 19
}, - {
- "assists": 8,
- "champion": {
- "id": 2437,
- "name": "Sivir"
}, - "deaths": 3,
- "flags": {
- "first_blood_assist": false,
- "first_blood_kill": true,
- "first_inhibitor_assist": false,
- "first_inhibitor_kill": true,
- "first_tower_assist": false,
- "first_tower_kill": false
}, - "game_id": 206047,
- "gold_earned": 10459,
- "gold_spent": 8550,
- "items": [
- {
- "id": 598,
- "is_trinket": false,
- "name": "Zeal"
}, - {
- "id": 658,
- "is_trinket": false,
- "name": "Cloak of Agility"
}, - {
- "id": 691,
- "is_trinket": false,
- "name": "B. F. Sword"
}, - {
- "id": 697,
- "is_trinket": false,
- "name": "Doran's Blade"
}, - {
- "id": 729,
- "is_trinket": true,
- "name": "Farsight Alteration"
}, - {
- "id": 753,
- "is_trinket": false,
- "name": "Berserker's Greaves"
}, - {
- "id": 2351,
- "is_trinket": false,
- "name": "Essence Reaver"
}
], - "kills": 2,
- "kills_counters": {
- "inhibitors": 2,
- "neutral_minions": 4,
- "neutral_minions_enemy_jungle": 0,
- "neutral_minions_team_jungle": 4,
- "players": 2,
- "turrets": 1,
- "wards": 9
}, - "kills_series": {
- "double_kills": 0,
- "penta_kills": 0,
- "quadra_kills": 0,
- "triple_kills": 0
}, - "largest_critical_strike": 513,
- "largest_killing_spree": 2,
- "largest_multi_kill": 1,
- "level": 13,
- "magic_damage": {
- "dealt": 0,
- "dealt_to_champions": 0
}, - "masteries": [ ],
- "minions_killed": 218,
- "opponent": {
- "acronym": "TSM",
- "id": 387,
- "location": "US",
- "modified_at": "2020-12-07T19:09:41Z",
- "name": "Team SoloMid",
- "slug": "solomid"
}, - "physical_damage": {
- "dealt": 129194,
- "dealt_to_champions": 5065,
- "taken": 5674
}, - "player": {
- "birth_year": 1997,
- "birthday": "1997-03-16",
- "first_name": "Trevor",
- "hometown": "USA",
- "id": 229,
- "last_name": "Hayes",
- "name": "Stixxay",
- "nationality": "US",
- "role": "adc",
- "slug": "stixxay"
}, - "player_id": 229,
- "role": "adc",
- "runes": [ ],
- "spells": [
- {
- "id": 28,
- "name": "Flash"
}, - {
- "id": 39,
- "name": "Teleport"
}
], - "team": {
- "acronym": "CLG",
- "id": 389,
- "location": "US",
- "modified_at": "2020-12-09T10:30:51Z",
- "name": "Counter Logic Gaming",
- "slug": "counter-logic-gaming"
}, - "total_damage": {
- "dealt": 129260,
- "dealt_to_champions": 5065,
- "taken": 9126
}, - "total_heal": 375,
- "total_time_crowd_control_dealt": 11,
- "total_units_healed": 1,
- "true_damage": {
- "dealt": 66,
- "dealt_to_champions": 0,
- "taken": 334
}, - "wards": {
- "placed": 14,
- "sight_wards_bought_in_game": 0,
- "vision_wards_bought_in_game": 6
}, - "wards_placed": 14
}, - {
- "assists": 11,
- "champion": {
- "id": 2530,
- "name": "Yuumi"
}, - "deaths": 0,
- "flags": {
- "first_blood_assist": false,
- "first_blood_kill": false,
- "first_inhibitor_assist": true,
- "first_inhibitor_kill": false,
- "first_tower_assist": false,
- "first_tower_kill": false
}, - "game_id": 206047,
- "gold_earned": 7696,
- "gold_spent": 5625,
- "items": [
- {
- "id": 740,
- "is_trinket": false,
- "name": "Forbidden Idol"
}, - {
- "id": 742,
- "is_trinket": false,
- "name": "Aether Wisp"
}, - {
- "id": 841,
- "is_trinket": false,
- "name": "Athene's Unholy Grail"
}, - {
- "id": 1650,
- "is_trinket": true,
- "name": "Oracle Lens"
}, - {
- "id": 2280,
- "is_trinket": false,
- "name": "Frostfang"
}, - {
- "id": 2336,
- "is_trinket": false,
- "name": "The Dark Seal"
}
], - "kills": 3,
- "kills_counters": {
- "inhibitors": 0,
- "neutral_minions": 4,
- "neutral_minions_enemy_jungle": 0,
- "neutral_minions_team_jungle": 0,
- "players": 3,
- "turrets": 0,
- "wards": 4
}, - "kills_series": {
- "double_kills": 0,
- "penta_kills": 0,
- "quadra_kills": 0,
- "triple_kills": 0
}, - "largest_critical_strike": 0,
- "largest_killing_spree": 3,
- "largest_multi_kill": 1,
- "level": 13,
- "magic_damage": {
- "dealt": 15414,
- "dealt_to_champions": 10294
}, - "masteries": [ ],
- "minions_killed": 10,
- "opponent": {
- "acronym": "TSM",
- "id": 387,
- "location": "US",
- "modified_at": "2020-12-07T19:09:41Z",
- "name": "Team SoloMid",
- "slug": "solomid"
}, - "physical_damage": {
- "dealt": 3129,
- "dealt_to_champions": 725,
- "taken": 1245
}, - "player": {
- "birth_year": 1996,
- "birthday": "1996-09-17",
- "first_name": "Vincent",
- "hometown": "",
- "id": 510,
- "last_name": "Wang",
- "name": "Biofrost",
- "nationality": "CA",
- "role": "sup",
- "slug": "biofrost"
}, - "player_id": 510,
- "role": "sup",
- "runes": [ ],
- "spells": [
- {
- "id": 27,
- "name": "Exhaust"
}, - {
- "id": 30,
- "name": "Heal"
}
], - "team": {
- "acronym": "CLG",
- "id": 389,
- "location": "US",
- "modified_at": "2020-12-09T10:30:51Z",
- "name": "Counter Logic Gaming",
- "slug": "counter-logic-gaming"
}, - "total_damage": {
- "dealt": 18543,
- "dealt_to_champions": 11020,
- "taken": 2322
}, - "total_heal": 6914,
- "total_time_crowd_control_dealt": 70,
- "total_units_healed": 4,
- "true_damage": {
- "dealt": 0,
- "dealt_to_champions": 0,
- "taken": 0
}, - "wards": {
- "placed": 23,
- "sight_wards_bought_in_game": 0,
- "vision_wards_bought_in_game": 9
}, - "wards_placed": 23
}, - {
- "assists": 1,
- "champion": {
- "id": 2497,
- "name": "Yasuo"
}, - "deaths": 6,
- "flags": {
- "first_blood_assist": false,
- "first_blood_kill": false,
- "first_inhibitor_assist": false,
- "first_inhibitor_kill": false,
- "first_tower_assist": false,
- "first_tower_kill": false
}, - "game_id": 206047,
- "gold_earned": 8899,
- "gold_spent": 8360,
- "items": [
- {
- "id": 692,
- "is_trinket": false,
- "name": "Pickaxe"
}, - {
- "id": 699,
- "is_trinket": false,
- "name": "Doran's Shield"
}, - {
- "id": 729,
- "is_trinket": true,
- "name": "Farsight Alteration"
}, - {
- "id": 753,
- "is_trinket": false,
- "name": "Berserker's Greaves"
}, - {
- "id": 763,
- "is_trinket": false,
- "name": "Control Ward"
}, - {
- "id": 2255,
- "is_trinket": false,
- "name": "Guardian Angel"
}, - {
- "id": 2328,
- "is_trinket": false,
- "name": "Statikk Shiv"
}
], - "kills": 2,
- "kills_counters": {
- "inhibitors": 0,
- "neutral_minions": 12,
- "neutral_minions_enemy_jungle": 0,
- "neutral_minions_team_jungle": 8,
- "players": 2,
- "turrets": 0,
- "wards": 2
}, - "kills_series": {
- "double_kills": 0,
- "penta_kills": 0,
- "quadra_kills": 0,
- "triple_kills": 0
}, - "largest_critical_strike": 409,
- "largest_killing_spree": 0,
- "largest_multi_kill": 1,
- "level": 12,
- "magic_damage": {
- "dealt": 17483,
- "dealt_to_champions": 843
}, - "masteries": [ ],
- "minions_killed": 208,
- "opponent": {
- "acronym": "CLG",
- "id": 389,
- "location": "US",
- "modified_at": "2020-12-09T10:30:51Z",
- "name": "Counter Logic Gaming",
- "slug": "counter-logic-gaming"
}, - "physical_damage": {
- "dealt": 95813,
- "dealt_to_champions": 4131,
- "taken": 8664
}, - "player": {
- "birth_year": 1997,
- "birthday": "1997-06-24",
- "first_name": "Jesper",
- "hometown": "Denmark",
- "id": 680,
- "last_name": "Svenningsen",
- "name": "Zven",
- "nationality": "DK",
- "role": "adc",
- "slug": "zven"
}, - "player_id": 680,
- "role": "adc",
- "runes": [ ],
- "spells": [
- {
- "id": 27,
- "name": "Exhaust"
}, - {
- "id": 28,
- "name": "Flash"
}
], - "team": {
- "acronym": "TSM",
- "id": 387,
- "location": "US",
- "modified_at": "2020-12-07T19:09:41Z",
- "name": "Team SoloMid",
- "slug": "solomid"
}, - "total_damage": {
- "dealt": 113570,
- "dealt_to_champions": 5248,
- "taken": 15678
}, - "total_heal": 2244,
- "total_time_crowd_control_dealt": 114,
- "total_units_healed": 1,
- "true_damage": {
- "dealt": 273,
- "dealt_to_champions": 273,
- "taken": 132
}, - "wards": {
- "placed": 8,
- "sight_wards_bought_in_game": 0,
- "vision_wards_bought_in_game": 3
}, - "wards_placed": 8
}, - {
- "assists": 5,
- "champion": {
- "id": 2516,
- "name": "Aatrox"
}, - "deaths": 2,
- "flags": {
- "first_blood_assist": false,
- "first_blood_kill": false,
- "first_inhibitor_assist": false,
- "first_inhibitor_kill": false,
- "first_tower_assist": false,
- "first_tower_kill": false
}, - "game_id": 206047,
- "gold_earned": 10911,
- "gold_spent": 8805,
- "items": [
- {
- "id": 693,
- "is_trinket": false,
- "name": "Long Sword"
}, - {
- "id": 699,
- "is_trinket": false,
- "name": "Doran's Shield"
}, - {
- "id": 700,
- "is_trinket": false,
- "name": "Mercury's Treads"
}, - {
- "id": 792,
- "is_trinket": false,
- "name": "Maw of Malmortius"
}, - {
- "id": 855,
- "is_trinket": false,
- "name": "The Black Cleaver"
}, - {
- "id": 1650,
- "is_trinket": true,
- "name": "Oracle Lens"
}
], - "kills": 3,
- "kills_counters": {
- "inhibitors": 0,
- "neutral_minions": 19,
- "neutral_minions_enemy_jungle": 8,
- "neutral_minions_team_jungle": 3,
- "players": 3,
- "turrets": 2,
- "wards": 4
}, - "kills_series": {
- "double_kills": 0,
- "penta_kills": 0,
- "quadra_kills": 0,
- "triple_kills": 0
}, - "largest_critical_strike": 0,
- "largest_killing_spree": 2,
- "largest_multi_kill": 1,
- "level": 15,
- "magic_damage": {
- "dealt": 0,
- "dealt_to_champions": 0
}, - "masteries": [ ],
- "minions_killed": 191,
- "opponent": {
- "acronym": "TSM",
- "id": 387,
- "location": "US",
- "modified_at": "2020-12-07T19:09:41Z",
- "name": "Team SoloMid",
- "slug": "solomid"
}, - "physical_damage": {
- "dealt": 117208,
- "dealt_to_champions": 10693,
- "taken": 10905
}, - "player": {
- "birth_year": 1995,
- "birthday": "1995-11-16",
- "first_name": "Kim",
- "hometown": "South Korea",
- "id": 1414,
- "last_name": "Hyeong-min",
- "name": "Ruin",
- "nationality": "KR",
- "role": "top",
- "slug": "ruin"
}, - "player_id": 1414,
- "role": "top",
- "runes": [ ],
- "spells": [
- {
- "id": 28,
- "name": "Flash"
}, - {
- "id": 39,
- "name": "Teleport"
}
], - "team": {
- "acronym": "CLG",
- "id": 389,
- "location": "US",
- "modified_at": "2020-12-09T10:30:51Z",
- "name": "Counter Logic Gaming",
- "slug": "counter-logic-gaming"
}, - "total_damage": {
- "dealt": 119621,
- "dealt_to_champions": 11104,
- "taken": 22501
}, - "total_heal": 9170,
- "total_time_crowd_control_dealt": 184,
- "total_units_healed": 1,
- "true_damage": {
- "dealt": 2413,
- "dealt_to_champions": 410,
- "taken": 1575
}, - "wards": {
- "placed": 11,
- "sight_wards_bought_in_game": 0,
- "vision_wards_bought_in_game": 5
}, - "wards_placed": 11
}, - {
- "assists": 9,
- "champion": {
- "id": 2512,
- "name": "Sylas"
}, - "deaths": 1,
- "flags": {
- "first_blood_assist": false,
- "first_blood_kill": false,
- "first_inhibitor_assist": true,
- "first_inhibitor_kill": false,
- "first_tower_assist": false,
- "first_tower_kill": false
}, - "game_id": 206047,
- "gold_earned": 10192,
- "gold_spent": 8800,
- "items": [
- {
- "id": 606,
- "is_trinket": false,
- "name": "Slightly Magical Boots"
}, - {
- "id": 730,
- "is_trinket": false,
- "name": "Refillable Potion"
}, - {
- "id": 799,
- "is_trinket": false,
- "name": "Hextech Protobelt-01"
}, - {
- "id": 1650,
- "is_trinket": true,
- "name": "Oracle Lens"
}, - {
- "id": 1671,
- "is_trinket": false,
- "name": "Zhonya's Hourglass"
}, - {
- "id": 2346,
- "is_trinket": false,
- "name": "Skirmisher's Sabre (Enchantment: Runic Echoes)"
}
], - "kills": 4,
- "kills_counters": {
- "inhibitors": 0,
- "neutral_minions": 98,
- "neutral_minions_enemy_jungle": 13,
- "neutral_minions_team_jungle": 57,
- "players": 4,
- "turrets": 0,
- "wards": 8
}, - "kills_series": {
- "double_kills": 0,
- "penta_kills": 0,
- "quadra_kills": 0,
- "triple_kills": 0
}, - "largest_critical_strike": 0,
- "largest_killing_spree": 3,
- "largest_multi_kill": 1,
- "level": 14,
- "magic_damage": {
- "dealt": 105607,
- "dealt_to_champions": 11906
}, - "masteries": [ ],
- "minions_killed": 137,
- "opponent": {
- "acronym": "TSM",
- "id": 387,
- "location": "US",
- "modified_at": "2020-12-07T19:09:41Z",
- "name": "Team SoloMid",
- "slug": "solomid"
}, - "physical_damage": {
- "dealt": 15711,
- "dealt_to_champions": 1185,
- "taken": 12171
}, - "player": {
- "birth_year": 1997,
- "birthday": "1997-09-11",
- "first_name": "Raymond",
- "hometown": null,
- "id": 1564,
- "last_name": "Griffin",
- "name": "Griffin",
- "nationality": "US",
- "role": "jun",
- "slug": "wiggily"
}, - "player_id": 1564,
- "role": "jun",
- "runes": [ ],
- "spells": [
- {
- "id": 28,
- "name": "Flash"
}, - {
- "id": 36,
- "name": "Smite"
}
], - "team": {
- "acronym": "CLG",
- "id": 389,
- "location": "US",
- "modified_at": "2020-12-09T10:30:51Z",
- "name": "Counter Logic Gaming",
- "slug": "counter-logic-gaming"
}, - "total_damage": {
- "dealt": 130820,
- "dealt_to_champions": 14072,
- "taken": 20756
}, - "total_heal": 9880,
- "total_time_crowd_control_dealt": 464,
- "total_units_healed": 1,
- "true_damage": {
- "dealt": 9501,
- "dealt_to_champions": 980,
- "taken": 207
}, - "wards": {
- "placed": 10,
- "sight_wards_bought_in_game": 0,
- "vision_wards_bought_in_game": 10
}, - "wards_placed": 10
}, - {
- "assists": 2,
- "champion": {
- "id": 2390,
- "name": "Kennen"
}, - "deaths": 1,
- "flags": {
- "first_blood_assist": false,
- "first_blood_kill": false,
- "first_inhibitor_assist": false,
- "first_inhibitor_kill": false,
- "first_tower_assist": true,
- "first_tower_kill": false
}, - "game_id": 206047,
- "gold_earned": 8945,
- "gold_spent": 8975,
- "items": [
- {
- "id": 607,
- "is_trinket": false,
- "name": "Broken Stopwatch"
}, - {
- "id": 686,
- "is_trinket": true,
- "name": "Warding Totem (Trinket)"
}, - {
- "id": 763,
- "is_trinket": false,
- "name": "Control Ward"
}, - {
- "id": 774,
- "is_trinket": false,
- "name": "Sorcerer's Shoes"
}, - {
- "id": 2318,
- "is_trinket": false,
- "name": "Morellonomicon"
}, - {
- "id": 2339,
- "is_trinket": false,
- "name": "Hextech Gunblade"
}
], - "kills": 1,
- "kills_counters": {
- "inhibitors": 0,
- "neutral_minions": 4,
- "neutral_minions_enemy_jungle": 0,
- "neutral_minions_team_jungle": 4,
- "players": 1,
- "turrets": 0,
- "wards": 3
}, - "kills_series": {
- "double_kills": 0,
- "penta_kills": 0,
- "quadra_kills": 0,
- "triple_kills": 0
}, - "largest_critical_strike": 0,
- "largest_killing_spree": 0,
- "largest_multi_kill": 1,
- "level": 14,
- "magic_damage": {
- "dealt": 63491,
- "dealt_to_champions": 7679
}, - "masteries": [ ],
- "minions_killed": 203,
- "opponent": {
- "acronym": "CLG",
- "id": 389,
- "location": "US",
- "modified_at": "2020-12-09T10:30:51Z",
- "name": "Counter Logic Gaming",
- "slug": "counter-logic-gaming"
}, - "physical_damage": {
- "dealt": 31823,
- "dealt_to_champions": 3622,
- "taken": 7835
}, - "player": {
- "birth_year": 2000,
- "birthday": "2000-01-19",
- "first_name": "Sergen",
- "hometown": "Türkiye",
- "id": 1718,
- "last_name": "Çelik",
- "name": "Broken Blade",
- "nationality": "DE",
- "role": "top",
- "slug": "broken-blade"
}, - "player_id": 1718,
- "role": "top",
- "runes": [ ],
- "spells": [
- {
- "id": 28,
- "name": "Flash"
}, - {
- "id": 39,
- "name": "Teleport"
}
], - "team": {
- "acronym": "TSM",
- "id": 387,
- "location": "US",
- "modified_at": "2020-12-07T19:09:41Z",
- "name": "Team SoloMid",
- "slug": "solomid"
}, - "total_damage": {
- "dealt": 103678,
- "dealt_to_champions": 11301,
- "taken": 12693
}, - "total_heal": 4828,
- "total_time_crowd_control_dealt": 53,
- "total_units_healed": 1,
- "true_damage": {
- "dealt": 8363,
- "dealt_to_champions": 0,
- "taken": 87
}, - "wards": {
- "placed": 12,
- "sight_wards_bought_in_game": 0,
- "vision_wards_bought_in_game": 5
}, - "wards_placed": 12
}
], - "position": 1,
- "status": "finished",
- "teams": [
- {
- "bans": [
- 2438,
- 2482,
- 2509,
- 2384,
- 2462
], - "baron_kills": 0,
- "cloud_drake_kills": 0,
- "color": "red",
- "dragon_kills": 2,
- "elder_drake_kills": 0,
- "first_baron": false,
- "first_blood": false,
- "first_dragon": false,
- "first_inhibitor": false,
- "first_tower": true,
- "gold_earned": 39230,
- "herald_kills": 0,
- "infernal_drake_kills": 1,
- "inhibitor_kills": 0,
- "kills": 7,
- "mountain_drake_kills": 0,
- "ocean_drake_kills": 1,
- "player_ids": [
- 40,
- 53,
- 223,
- 680,
- 1718
], - "team": {
- "acronym": "TSM",
- "id": 387,
- "location": "US",
- "modified_at": "2020-12-07T19:09:41Z",
- "name": "Team SoloMid",
- "slug": "solomid"
}, - "tower_kills": 1
}, - {
- "bans": [
- 2452,
- 2494,
- 2439,
- 2493,
- 2401
], - "baron_kills": 1,
- "cloud_drake_kills": 1,
- "color": "blue",
- "dragon_kills": 2,
- "elder_drake_kills": 0,
- "first_baron": true,
- "first_blood": true,
- "first_dragon": true,
- "first_inhibitor": true,
- "first_tower": false,
- "gold_earned": 52185,
- "herald_kills": 1,
- "infernal_drake_kills": 0,
- "inhibitor_kills": 2,
- "kills": 18,
- "mountain_drake_kills": 0,
- "ocean_drake_kills": 1,
- "player_ids": [
- 62,
- 229,
- 510,
- 1414,
- 1564
], - "team": {
- "acronym": "CLG",
- "id": 389,
- "location": "US",
- "modified_at": "2020-12-09T10:30:51Z",
- "name": "Counter Logic Gaming",
- "slug": "counter-logic-gaming"
}, - "tower_kills": 11
}
], - "video_url": null,
- "winner": {
- "id": 389,
- "type": "Team"
}, - "winner_type": "Team"
}
List events for a given League of Legends game
lol_game_id required | integer (LoLGameID) >= 1 A LoL game ID |
integer or object Pagination in the form of | |
per_page | integer [ 1 .. 100 ] Default: 50 Example: per_page=5 Equivalent to |
/lol/games/206047/events?page[size]=1
[- {
- "game_id": 206047,
- "ingame_timestamp": 352,
- "is_first": true,
- "match_id": 545034,
- "payload": {
- "assists": [ ],
- "killer": {
- "object": {
- "champion": {
- "id": 2512,
- "name": "Sylas"
}, - "player_id": 1564,
- "player_name": "Wiggily",
- "side": "blue"
}, - "type": "player"
}, - "victim": {
- "object": {
- "name": "Ocean Drake",
- "type": "ocean"
}, - "type": "drake"
}
}, - "tournament_id": 2378,
- "type": "drake_kill"
}
]
List frames for a given League of Legends game
lol_game_id required | integer (LoLGameID) >= 1 A LoL game ID |
integer or object Pagination in the form of | |
per_page | integer [ 1 .. 100 ] Default: 50 Example: per_page=5 Equivalent to |
/lol/games/206047/frames?page[size]=1
[- {
- "blue": {
- "acronym": "CLG",
- "drakes": 0,
- "gold": 2500,
- "id": 389,
- "inhibitors": 0,
- "kills": 0,
- "name": "Counter Logic Gaming",
- "nashors": 0,
- "players": {
- "adc": {
- "assists": 0,
- "champion": {
- "id": 2437,
- "name": "Sivir"
}, - "cs": 0,
- "deaths": 0,
- "id": 229,
- "kills": 0,
- "level": 1,
- "name": "Stixxay",
- "summoner_spells": [
- {
- "id": 39,
- "name": "Teleport"
}, - {
- "id": 28,
- "name": "Flash"
}
]
}, - "jun": {
- "assists": 0,
- "champion": {
- "id": 2512,
- "name": "Sylas"
}, - "cs": 0,
- "deaths": 0,
- "id": 1564,
- "kills": 0,
- "level": 1,
- "name": "Wiggily",
- "summoner_spells": [
- {
- "id": 28,
- "name": "Flash"
}, - {
- "id": 36,
- "name": "Smite"
}
]
}, - "mid": {
- "assists": 0,
- "champion": {
- "id": 2353,
- "name": "Corki"
}, - "cs": 0,
- "deaths": 0,
- "id": 62,
- "kills": 0,
- "level": 1,
- "name": "PowerOfEvil",
- "summoner_spells": [
- {
- "id": 28,
- "name": "Flash"
}, - {
- "id": 39,
- "name": "Teleport"
}
]
}, - "sup": {
- "assists": 0,
- "champion": {
- "id": 2530,
- "name": "Yuumi"
}, - "cs": 0,
- "deaths": 0,
- "id": 510,
- "kills": 0,
- "level": 1,
- "name": "Biofrost",
- "summoner_spells": [
- {
- "id": 30,
- "name": "Heal"
}, - {
- "id": 27,
- "name": "Exhaust"
}
]
}, - "top": {
- "assists": 0,
- "champion": {
- "id": 2516,
- "name": "Aatrox"
}, - "cs": 0,
- "deaths": 0,
- "id": 1414,
- "kills": 0,
- "level": 1,
- "name": "Ruin",
- "summoner_spells": [
- {
- "id": 39,
- "name": "Teleport"
}, - {
- "id": 28,
- "name": "Flash"
}
]
}
}, - "score": 0,
- "towers": 0
}, - "current_timestamp": 58,
- "game_id": 206047,
- "match_id": 545034,
- "red": {
- "acronym": "TSM",
- "drakes": 0,
- "gold": 2500,
- "id": 387,
- "inhibitors": 0,
- "kills": 0,
- "name": "TSM",
- "nashors": 0,
- "players": {
- "adc": {
- "assists": 0,
- "champion": {
- "id": 2497,
- "name": "Yasuo"
}, - "cs": 0,
- "deaths": 0,
- "id": 680,
- "kills": 0,
- "level": 1,
- "name": "Zven",
- "summoner_spells": [
- {
- "id": 28,
- "name": "Flash"
}, - {
- "id": 27,
- "name": "Exhaust"
}
]
}, - "jun": {
- "assists": 0,
- "champion": {
- "id": 2518,
- "name": "Jarvan IV"
}, - "cs": 0,
- "deaths": 0,
- "id": 223,
- "kills": 0,
- "level": 1,
- "name": "Akaadian",
- "summoner_spells": [
- {
- "id": 28,
- "name": "Flash"
}, - {
- "id": 36,
- "name": "Smite"
}
]
}, - "mid": {
- "assists": 0,
- "champion": {
- "id": 2351,
- "name": "Cassiopeia"
}, - "cs": 0,
- "deaths": 0,
- "id": 40,
- "kills": 0,
- "level": 1,
- "name": "Bjergsen",
- "summoner_spells": [
- {
- "id": 28,
- "name": "Flash"
}, - {
- "id": 39,
- "name": "Teleport"
}
]
}, - "sup": {
- "assists": 0,
- "champion": {
- "id": 2525,
- "name": "Gragas"
}, - "cs": 0,
- "deaths": 0,
- "id": 53,
- "kills": 0,
- "level": 1,
- "name": "Smoothie",
- "summoner_spells": [
- {
- "id": 28,
- "name": "Flash"
}, - {
- "id": 26,
- "name": "Ignite"
}
]
}, - "top": {
- "assists": 0,
- "champion": {
- "id": 2390,
- "name": "Kennen"
}, - "cs": 0,
- "deaths": 0,
- "id": 1718,
- "kills": 0,
- "level": 1,
- "name": "Broken Blade",
- "summoner_spells": [
- {
- "id": 28,
- "name": "Flash"
}, - {
- "id": 39,
- "name": "Teleport"
}
]
}
}, - "score": 0,
- "towers": 0
}, - "tournament_id": 2378
}
]
List games for a given League of Legends match
required | MatchID (integer) or MatchSlug (string) (MatchIDOrSlug) A match ID or slug |
object (filter_over_LoLGames) 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_LoLGames) Example: range[position]=2,4 Options to select results within ranges | |
object (search_over_LoLGames) Example: search[status]=finished Options to search results | |
sort | Array of any (sort_over_LoLGames) 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" "winner_type" "-winner_type" Example: sort=-length Options to sort results |
/lol/matches/545034/games?page[size]=1
[- {
- "begin_at": "2019-07-07T22:01:25Z",
- "complete": true,
- "detailed_stats": true,
- "end_at": "2019-07-07T22:35:30Z",
- "finished": true,
- "forfeit": false,
- "id": 206047,
- "length": 1500,
- "match": {
- "begin_at": "2019-07-07T22:01:24Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": "2019-07-07T22:35:30Z",
- "forfeit": false,
- "game_advantage": null,
- "games": [
- {
- "begin_at": "2019-07-07T22:01:25Z",
- "complete": true,
- "detailed_stats": true,
- "end_at": "2019-07-07T22:35:30Z",
- "finished": true,
- "forfeit": false,
- "id": 206047,
- "length": 1500,
- "match_id": 545034,
- "position": 1,
- "status": "finished",
- "video_url": null,
- "winner": {
- "id": 389,
- "type": "Team"
}, - "winner_type": "Team"
}
], - "id": 545034,
- "league": {
- "id": 4198,
- "modified_at": "2020-02-13T15:22:42Z",
- "name": "LCS",
- "slug": "league-of-legends-lcs",
}, - "league_id": 4198,
- "live": {
- "opens_at": "2019-07-07T21:46:24Z",
- "supported": true,
- "url": "wss://live.dev.pandascore.co/matches/545034"
}, - "match_type": "best_of",
- "modified_at": "2019-07-07T22:53:53Z",
- "name": "CLG vs TSM",
- "number_of_games": 1,
- "opponents": [
- {
- "opponent": {
- "acronym": "CLG",
- "id": 389,
- "location": "US",
- "modified_at": "2020-12-09T10:30:51Z",
- "name": "Counter Logic Gaming",
- "slug": "counter-logic-gaming"
}, - "type": "Team"
}, - {
- "opponent": {
- "acronym": "TSM",
- "id": 387,
- "location": "US",
- "modified_at": "2020-12-07T19:09:41Z",
- "name": "Team SoloMid",
- "slug": "solomid"
}, - "type": "Team"
}
], - "original_scheduled_at": "2019-07-07T22:00:00Z",
- "rescheduled": false,
- "results": [
- {
- "score": 1,
- "team_id": 389
}, - {
- "score": 0,
- "team_id": 387
}
], - "scheduled_at": "2019-07-07T22:00:00Z",
- "serie": {
- "begin_at": "2019-05-31T22:00:00Z",
- "description": null,
- "end_at": "2019-09-09T18:00:00Z",
- "full_name": "Summer 2019",
- "id": 1795,
- "league_id": 4198,
- "modified_at": "2019-12-27T12:34:59Z",
- "name": "",
- "season": "Summer",
- "slug": "league-of-legends-lcs-summer-2019",
- "tier": null,
- "winner_id": 390,
- "winner_type": "Team",
- "year": 2019
}, - "serie_id": 1795,
- "slug": "counter-logic-gaming-vs-tsm-2019-07-08",
- "status": "finished",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament": {
- "begin_at": "2019-05-31T22:00:00Z",
- "end_at": "2019-08-06T18:00:00Z",
- "id": 2378,
- "league_id": 4198,
- "live_supported": true,
- "modified_at": "2019-08-05T11:54:55Z",
- "name": "Regular season",
- "prizepool": null,
- "serie_id": 1795,
- "slug": "league-of-legends-lcs-summer-2019-regular-season",
- "winner_id": 390,
- "winner_type": "Team"
}, - "tournament_id": 2378,
- "videogame": {
- "id": 1,
- "name": "LoL",
- "slug": "league-of-legends"
}, - "videogame_version": {
- "current": false,
- "name": "9.12.1"
}, - "winner": {
- "acronym": "CLG",
- "id": 389,
- "location": "US",
- "modified_at": "2020-12-09T10:30:51Z",
- "name": "Counter Logic Gaming",
- "slug": "counter-logic-gaming"
}, - "winner_id": 389
}, - "match_id": 545034,
- "players": [
- {
- "assists": 3,
- "champion": {
- "id": 2351,
- "name": "Cassiopeia"
}, - "deaths": 3,
- "flags": {
- "first_blood_assist": false,
- "first_blood_kill": false,
- "first_inhibitor_assist": false,
- "first_inhibitor_kill": false,
- "first_tower_assist": false,
- "first_tower_kill": false
}, - "game_id": 206047,
- "gold_earned": 9231,
- "gold_spent": 9225,
- "items": [
- {
- "id": 674,
- "is_trinket": false,
- "name": "Blasting Wand"
}, - {
- "id": 729,
- "is_trinket": true,
- "name": "Farsight Alteration"
}, - {
- "id": 741,
- "is_trinket": false,
- "name": "Doran's Ring"
}, - {
- "id": 826,
- "is_trinket": false,
- "name": "Seraph's Embrace"
}, - {
- "id": 1651,
- "is_trinket": false,
- "name": "Fiendish Codex"
}, - {
- "id": 2297,
- "is_trinket": false,
- "name": "Liandry's Torment"
}
], - "kills": 3,
- "kills_counters": {
- "inhibitors": 0,
- "neutral_minions": 12,
- "neutral_minions_enemy_jungle": 0,
- "neutral_minions_team_jungle": 12,
- "players": 3,
- "turrets": 0,
- "wards": 4
}, - "kills_series": {
- "double_kills": 0,
- "penta_kills": 0,
- "quadra_kills": 0,
- "triple_kills": 0
}, - "largest_critical_strike": 0,
- "largest_killing_spree": 2,
- "largest_multi_kill": 1,
- "level": 13,
- "magic_damage": {
- "dealt": 91140,
- "dealt_to_champions": 12846
}, - "masteries": [ ],
- "minions_killed": 193,
- "opponent": {
- "acronym": "CLG",
- "id": 389,
- "location": "US",
- "modified_at": "2020-12-09T10:30:51Z",
- "name": "Counter Logic Gaming",
- "slug": "counter-logic-gaming"
}, - "physical_damage": {
- "dealt": 9205,
- "dealt_to_champions": 79,
- "taken": 4358
}, - "player": {
- "birth_year": 1996,
- "birthday": "1996-02-21",
- "first_name": "Søren",
- "hometown": "Denmark",
- "id": 40,
- "last_name": "Bjerg",
- "name": "Bjergsen",
- "nationality": "DK",
- "role": "mid",
- "slug": "bjergsen"
}, - "player_id": 40,
- "role": "mid",
- "runes": [ ],
- "spells": [
- {
- "id": 28,
- "name": "Flash"
}, - {
- "id": 39,
- "name": "Teleport"
}
], - "team": {
- "acronym": "TSM",
- "id": 387,
- "location": "US",
- "modified_at": "2020-12-07T19:09:41Z",
- "name": "Team SoloMid",
- "slug": "solomid"
}, - "total_damage": {
- "dealt": 100345,
- "dealt_to_champions": 12926,
- "taken": 14166
}, - "total_heal": 5100,
- "total_time_crowd_control_dealt": 338,
- "total_units_healed": 1,
- "true_damage": {
- "dealt": 0,
- "dealt_to_champions": 0,
- "taken": 506
}, - "wards": {
- "placed": 12,
- "sight_wards_bought_in_game": 0,
- "vision_wards_bought_in_game": 6
}, - "wards_placed": 12
}, - {
- "assists": 2,
- "champion": {
- "id": 2525,
- "name": "Gragas"
}, - "deaths": 2,
- "flags": {
- "first_blood_assist": false,
- "first_blood_kill": false,
- "first_inhibitor_assist": false,
- "first_inhibitor_kill": false,
- "first_tower_assist": false,
- "first_tower_kill": false
}, - "game_id": 206047,
- "gold_earned": 4831,
- "gold_spent": 4600,
- "items": [
- {
- "id": 668,
- "is_trinket": false,
- "name": "Null-Magic Mantle"
}, - {
- "id": 671,
- "is_trinket": false,
- "name": "Cloth Armor"
}, - {
- "id": 761,
- "is_trinket": false,
- "name": "Glacial Shroud"
}, - {
- "id": 763,
- "is_trinket": false,
- "name": "Control Ward"
}, - {
- "id": 1649,
- "is_trinket": false,
- "name": "Ninja Tabi"
}, - {
- "id": 1650,
- "is_trinket": true,
- "name": "Oracle Lens"
}, - {
- "id": 2280,
- "is_trinket": false,
- "name": "Frostfang"
}
], - "kills": 0,
- "kills_counters": {
- "inhibitors": 0,
- "neutral_minions": 0,
- "neutral_minions_enemy_jungle": 0,
- "neutral_minions_team_jungle": 0,
- "players": 0,
- "turrets": 0,
- "wards": 6
}, - "kills_series": {
- "double_kills": 0,
- "penta_kills": 0,
- "quadra_kills": 0,
- "triple_kills": 0
}, - "largest_critical_strike": 0,
- "largest_killing_spree": 0,
- "largest_multi_kill": 0,
- "level": 9,
- "magic_damage": {
- "dealt": 5659,
- "dealt_to_champions": 1962
}, - "masteries": [ ],
- "minions_killed": 15,
- "opponent": {
- "acronym": "CLG",
- "id": 389,
- "location": "US",
- "modified_at": "2020-12-09T10:30:51Z",
- "name": "Counter Logic Gaming",
- "slug": "counter-logic-gaming"
}, - "physical_damage": {
- "dealt": 1633,
- "dealt_to_champions": 272,
- "taken": 2417
}, - "player": {
- "birth_year": 1997,
- "birthday": "1997-02-10",
- "first_name": "Andy",
- "hometown": "Canada",
- "id": 53,
- "last_name": "Ta",
- "name": "Smoothie",
- "nationality": "CA",
- "role": "sup",
- "slug": "smoothie"
}, - "player_id": 53,
- "role": "sup",
- "runes": [ ],
- "spells": [
- {
- "id": 26,
- "name": "Ignite"
}, - {
- "id": 28,
- "name": "Flash"
}
], - "team": {
- "acronym": "TSM",
- "id": 387,
- "location": "US",
- "modified_at": "2020-12-07T19:09:41Z",
- "name": "Team SoloMid",
- "slug": "solomid"
}, - "total_damage": {
- "dealt": 9812,
- "dealt_to_champions": 2514,
- "taken": 8360
}, - "total_heal": 2355,
- "total_time_crowd_control_dealt": 88,
- "total_units_healed": 1,
- "true_damage": {
- "dealt": 2519,
- "dealt_to_champions": 280,
- "taken": 124
}, - "wards": {
- "placed": 37,
- "sight_wards_bought_in_game": 0,
- "vision_wards_bought_in_game": 12
}, - "wards_placed": 37
}, - {
- "assists": 9,
- "champion": {
- "id": 2353,
- "name": "Corki"
}, - "deaths": 1,
- "flags": {
- "first_blood_assist": false,
- "first_blood_kill": false,
- "first_inhibitor_assist": false,
- "first_inhibitor_kill": false,
- "first_tower_assist": false,
- "first_tower_kill": false
}, - "game_id": 206047,
- "gold_earned": 12927,
- "gold_spent": 10208,
- "items": [
- {
- "id": 658,
- "is_trinket": false,
- "name": "Cloak of Agility"
}, - {
- "id": 686,
- "is_trinket": true,
- "name": "Warding Totem (Trinket)"
}, - {
- "id": 692,
- "is_trinket": false,
- "name": "Pickaxe"
}, - {
- "id": 774,
- "is_trinket": false,
- "name": "Sorcerer's Shoes"
}, - {
- "id": 859,
- "is_trinket": false,
- "name": "Trinity Force"
}, - {
- "id": 2329,
- "is_trinket": false,
- "name": "Rapid Firecannon"
}
], - "kills": 6,
- "kills_counters": {
- "inhibitors": 0,
- "neutral_minions": 24,
- "neutral_minions_enemy_jungle": 0,
- "neutral_minions_team_jungle": 17,
- "players": 6,
- "turrets": 2,
- "wards": 9
}, - "kills_series": {
- "double_kills": 1,
- "penta_kills": 0,
- "quadra_kills": 0,
- "triple_kills": 0
}, - "largest_critical_strike": 1584,
- "largest_killing_spree": 4,
- "largest_multi_kill": 2,
- "level": 15,
- "magic_damage": {
- "dealt": 121156,
- "dealt_to_champions": 10873
}, - "masteries": [ ],
- "minions_killed": 227,
- "opponent": {
- "acronym": "TSM",
- "id": 387,
- "location": "US",
- "modified_at": "2020-12-07T19:09:41Z",
- "name": "Team SoloMid",
- "slug": "solomid"
}, - "physical_damage": {
- "dealt": 18464,
- "dealt_to_champions": 1115,
- "taken": 4554
}, - "player": {
- "birth_year": 1997,
- "birthday": "1997-10-27",
- "first_name": "Tristan",
- "hometown": "Germany",
- "id": 62,
- "last_name": "Schrage",
- "name": "PowerOfEvil",
- "nationality": "DE",
- "role": "mid",
- "slug": "powerofevil"
}, - "player_id": 62,
- "role": "mid",
- "runes": [ ],
- "spells": [
- {
- "id": 28,
- "name": "Flash"
}, - {
- "id": 39,
- "name": "Teleport"
}
], - "team": {
- "acronym": "CLG",
- "id": 389,
- "location": "US",
- "modified_at": "2020-12-09T10:30:51Z",
- "name": "Counter Logic Gaming",
- "slug": "counter-logic-gaming"
}, - "total_damage": {
- "dealt": 149931,
- "dealt_to_champions": 12138,
- "taken": 7954
}, - "total_heal": 2609,
- "total_time_crowd_control_dealt": 41,
- "total_units_healed": 1,
- "true_damage": {
- "dealt": 10310,
- "dealt_to_champions": 150,
- "taken": 0
}, - "wards": {
- "placed": 14,
- "sight_wards_bought_in_game": 0,
- "vision_wards_bought_in_game": 6
}, - "wards_placed": 14
}, - {
- "assists": 6,
- "champion": {
- "id": 2518,
- "name": "Jarvan IV"
}, - "deaths": 6,
- "flags": {
- "first_blood_assist": false,
- "first_blood_kill": false,
- "first_inhibitor_assist": false,
- "first_inhibitor_kill": false,
- "first_tower_assist": true,
- "first_tower_kill": false
}, - "game_id": 206047,
- "gold_earned": 7324,
- "gold_spent": 6545,
- "items": [
- {
- "id": 607,
- "is_trinket": false,
- "name": "Broken Stopwatch"
}, - {
- "id": 739,
- "is_trinket": false,
- "name": "Negatron Cloak"
}, - {
- "id": 763,
- "is_trinket": false,
- "name": "Control Ward"
}, - {
- "id": 829,
- "is_trinket": false,
- "name": "Skirmisher's Sabre (Enchantment: Cinderhulk)"
}, - {
- "id": 849,
- "is_trinket": false,
- "name": "Kindlegem"
}, - {
- "id": 1649,
- "is_trinket": false,
- "name": "Ninja Tabi"
}, - {
- "id": 1650,
- "is_trinket": true,
- "name": "Oracle Lens"
}
], - "kills": 1,
- "kills_counters": {
- "inhibitors": 0,
- "neutral_minions": 91,
- "neutral_minions_enemy_jungle": 15,
- "neutral_minions_team_jungle": 49,
- "players": 1,
- "turrets": 0,
- "wards": 4
}, - "kills_series": {
- "double_kills": 0,
- "penta_kills": 0,
- "quadra_kills": 0,
- "triple_kills": 0
}, - "largest_critical_strike": 0,
- "largest_killing_spree": 0,
- "largest_multi_kill": 1,
- "level": 12,
- "magic_damage": {
- "dealt": 24755,
- "dealt_to_champions": 842
}, - "masteries": [ ],
- "minions_killed": 104,
- "opponent": {
- "acronym": "CLG",
- "id": 389,
- "location": "US",
- "modified_at": "2020-12-09T10:30:51Z",
- "name": "Counter Logic Gaming",
- "slug": "counter-logic-gaming"
}, - "physical_damage": {
- "dealt": 57760,
- "dealt_to_champions": 4827,
- "taken": 13072
}, - "player": {
- "birth_year": 1996,
- "birthday": "1996-12-26",
- "first_name": "Matthew",
- "hometown": "USA",
- "id": 223,
- "last_name": "Higginbotham",
- "name": "Akaadian",
- "nationality": "US",
- "role": "jun",
- "slug": "akaadian"
}, - "player_id": 223,
- "role": "jun",
- "runes": [ ],
- "spells": [
- {
- "id": 28,
- "name": "Flash"
}, - {
- "id": 36,
- "name": "Smite"
}
], - "team": {
- "acronym": "TSM",
- "id": 387,
- "location": "US",
- "modified_at": "2020-12-07T19:09:41Z",
- "name": "Team SoloMid",
- "slug": "solomid"
}, - "total_damage": {
- "dealt": 88678,
- "dealt_to_champions": 6234,
- "taken": 21499
}, - "total_heal": 5156,
- "total_time_crowd_control_dealt": 309,
- "total_units_healed": 1,
- "true_damage": {
- "dealt": 6161,
- "dealt_to_champions": 563,
- "taken": 689
}, - "wards": {
- "placed": 19,
- "sight_wards_bought_in_game": 0,
- "vision_wards_bought_in_game": 9
}, - "wards_placed": 19
}, - {
- "assists": 8,
- "champion": {
- "id": 2437,
- "name": "Sivir"
}, - "deaths": 3,
- "flags": {
- "first_blood_assist": false,
- "first_blood_kill": true,
- "first_inhibitor_assist": false,
- "first_inhibitor_kill": true,
- "first_tower_assist": false,
- "first_tower_kill": false
}, - "game_id": 206047,
- "gold_earned": 10459,
- "gold_spent": 8550,
- "items": [
- {
- "id": 598,
- "is_trinket": false,
- "name": "Zeal"
}, - {
- "id": 658,
- "is_trinket": false,
- "name": "Cloak of Agility"
}, - {
- "id": 691,
- "is_trinket": false,
- "name": "B. F. Sword"
}, - {
- "id": 697,
- "is_trinket": false,
- "name": "Doran's Blade"
}, - {
- "id": 729,
- "is_trinket": true,
- "name": "Farsight Alteration"
}, - {
- "id": 753,
- "is_trinket": false,
- "name": "Berserker's Greaves"
}, - {
- "id": 2351,
- "is_trinket": false,
- "name": "Essence Reaver"
}
], - "kills": 2,
- "kills_counters": {
- "inhibitors": 2,
- "neutral_minions": 4,
- "neutral_minions_enemy_jungle": 0,
- "neutral_minions_team_jungle": 4,
- "players": 2,
- "turrets": 1,
- "wards": 9
}, - "kills_series": {
- "double_kills": 0,
- "penta_kills": 0,
- "quadra_kills": 0,
- "triple_kills": 0
}, - "largest_critical_strike": 513,
- "largest_killing_spree": 2,
- "largest_multi_kill": 1,
- "level": 13,
- "magic_damage": {
- "dealt": 0,
- "dealt_to_champions": 0
}, - "masteries": [ ],
- "minions_killed": 218,
- "opponent": {
- "acronym": "TSM",
- "id": 387,
- "location": "US",
- "modified_at": "2020-12-07T19:09:41Z",
- "name": "Team SoloMid",
- "slug": "solomid"
}, - "physical_damage": {
- "dealt": 129194,
- "dealt_to_champions": 5065,
- "taken": 5674
}, - "player": {
- "birth_year": 1997,
- "birthday": "1997-03-16",
- "first_name": "Trevor",
- "hometown": "USA",
- "id": 229,
- "last_name": "Hayes",
- "name": "Stixxay",
- "nationality": "US",
- "role": "adc",
- "slug": "stixxay"
}, - "player_id": 229,
- "role": "adc",
- "runes": [ ],
- "spells": [
- {
- "id": 28,
- "name": "Flash"
}, - {
- "id": 39,
- "name": "Teleport"
}
], - "team": {
- "acronym": "CLG",
- "id": 389,
- "location": "US",
- "modified_at": "2020-12-09T10:30:51Z",
- "name": "Counter Logic Gaming",
- "slug": "counter-logic-gaming"
}, - "total_damage": {
- "dealt": 129260,
- "dealt_to_champions": 5065,
- "taken": 9126
}, - "total_heal": 375,
- "total_time_crowd_control_dealt": 11,
- "total_units_healed": 1,
- "true_damage": {
- "dealt": 66,
- "dealt_to_champions": 0,
- "taken": 334
}, - "wards": {
- "placed": 14,
- "sight_wards_bought_in_game": 0,
- "vision_wards_bought_in_game": 6
}, - "wards_placed": 14
}, - {
- "assists": 11,
- "champion": {
- "id": 2530,
- "name": "Yuumi"
}, - "deaths": 0,
- "flags": {
- "first_blood_assist": false,
- "first_blood_kill": false,
- "first_inhibitor_assist": true,
- "first_inhibitor_kill": false,
- "first_tower_assist": false,
- "first_tower_kill": false
}, - "game_id": 206047,
- "gold_earned": 7696,
- "gold_spent": 5625,
- "items": [
- {
- "id": 740,
- "is_trinket": false,
- "name": "Forbidden Idol"
}, - {
- "id": 742,
- "is_trinket": false,
- "name": "Aether Wisp"
}, - {
- "id": 841,
- "is_trinket": false,
- "name": "Athene's Unholy Grail"
}, - {
- "id": 1650,
- "is_trinket": true,
- "name": "Oracle Lens"
}, - {
- "id": 2280,
- "is_trinket": false,
- "name": "Frostfang"
}, - {
- "id": 2336,
- "is_trinket": false,
- "name": "The Dark Seal"
}
], - "kills": 3,
- "kills_counters": {
- "inhibitors": 0,
- "neutral_minions": 4,
- "neutral_minions_enemy_jungle": 0,
- "neutral_minions_team_jungle": 0,
- "players": 3,
- "turrets": 0,
- "wards": 4
}, - "kills_series": {
- "double_kills": 0,
- "penta_kills": 0,
- "quadra_kills": 0,
- "triple_kills": 0
}, - "largest_critical_strike": 0,
- "largest_killing_spree": 3,
- "largest_multi_kill": 1,
- "level": 13,
- "magic_damage": {
- "dealt": 15414,
- "dealt_to_champions": 10294
}, - "masteries": [ ],
- "minions_killed": 10,
- "opponent": {
- "acronym": "TSM",
- "id": 387,
- "location": "US",
- "modified_at": "2020-12-07T19:09:41Z",
- "name": "Team SoloMid",
- "slug": "solomid"
}, - "physical_damage": {
- "dealt": 3129,
- "dealt_to_champions": 725,
- "taken": 1245
}, - "player": {
- "birth_year": 1996,
- "birthday": "1996-09-17",
- "first_name": "Vincent",
- "hometown": "",
- "id": 510,
- "last_name": "Wang",
- "name": "Biofrost",
- "nationality": "CA",
- "role": "sup",
- "slug": "biofrost"
}, - "player_id": 510,
- "role": "sup",
- "runes": [ ],
- "spells": [
- {
- "id": 27,
- "name": "Exhaust"
}, - {
- "id": 30,
- "name": "Heal"
}
], - "team": {
- "acronym": "CLG",
- "id": 389,
- "location": "US",
- "modified_at": "2020-12-09T10:30:51Z",
- "name": "Counter Logic Gaming",
- "slug": "counter-logic-gaming"
}, - "total_damage": {
- "dealt": 18543,
- "dealt_to_champions": 11020,
- "taken": 2322
}, - "total_heal": 6914,
- "total_time_crowd_control_dealt": 70,
- "total_units_healed": 4,
- "true_damage": {
- "dealt": 0,
- "dealt_to_champions": 0,
- "taken": 0
}, - "wards": {
- "placed": 23,
- "sight_wards_bought_in_game": 0,
- "vision_wards_bought_in_game": 9
}, - "wards_placed": 23
}, - {
- "assists": 1,
- "champion": {
- "id": 2497,
- "name": "Yasuo"
}, - "deaths": 6,
- "flags": {
- "first_blood_assist": false,
- "first_blood_kill": false,
- "first_inhibitor_assist": false,
- "first_inhibitor_kill": false,
- "first_tower_assist": false,
- "first_tower_kill": false
}, - "game_id": 206047,
- "gold_earned": 8899,
- "gold_spent": 8360,
- "items": [
- {
- "id": 692,
- "is_trinket": false,
- "name": "Pickaxe"
}, - {
- "id": 699,
- "is_trinket": false,
- "name": "Doran's Shield"
}, - {
- "id": 729,
- "is_trinket": true,
- "name": "Farsight Alteration"
}, - {
- "id": 753,
- "is_trinket": false,
- "name": "Berserker's Greaves"
}, - {
- "id": 763,
- "is_trinket": false,
- "name": "Control Ward"
}, - {
- "id": 2255,
- "is_trinket": false,
- "name": "Guardian Angel"
}, - {
- "id": 2328,
- "is_trinket": false,
- "name": "Statikk Shiv"
}
], - "kills": 2,
- "kills_counters": {
- "inhibitors": 0,
- "neutral_minions": 12,
- "neutral_minions_enemy_jungle": 0,
- "neutral_minions_team_jungle": 8,
- "players": 2,
- "turrets": 0,
- "wards": 2
}, - "kills_series": {
- "double_kills": 0,
- "penta_kills": 0,
- "quadra_kills": 0,
- "triple_kills": 0
}, - "largest_critical_strike": 409,
- "largest_killing_spree": 0,
- "largest_multi_kill": 1,
- "level": 12,
- "magic_damage": {
- "dealt": 17483,
- "dealt_to_champions": 843
}, - "masteries": [ ],
- "minions_killed": 208,
- "opponent": {
- "acronym": "CLG",
- "id": 389,
- "location": "US",
- "modified_at": "2020-12-09T10:30:51Z",
- "name": "Counter Logic Gaming",
- "slug": "counter-logic-gaming"
}, - "physical_damage": {
- "dealt": 95813,
- "dealt_to_champions": 4131,
- "taken": 8664
}, - "player": {
- "birth_year": 1997,
- "birthday": "1997-06-24",
- "first_name": "Jesper",
- "hometown": "Denmark",
- "id": 680,
- "last_name": "Svenningsen",
- "name": "Zven",
- "nationality": "DK",
- "role": "adc",
- "slug": "zven"
}, - "player_id": 680,
- "role": "adc",
- "runes": [ ],
- "spells": [
- {
- "id": 27,
- "name": "Exhaust"
}, - {
- "id": 28,
- "name": "Flash"
}
], - "team": {
- "acronym": "TSM",
- "id": 387,
- "location": "US",
- "modified_at": "2020-12-07T19:09:41Z",
- "name": "Team SoloMid",
- "slug": "solomid"
}, - "total_damage": {
- "dealt": 113570,
- "dealt_to_champions": 5248,
- "taken": 15678
}, - "total_heal": 2244,
- "total_time_crowd_control_dealt": 114,
- "total_units_healed": 1,
- "true_damage": {
- "dealt": 273,
- "dealt_to_champions": 273,
- "taken": 132
}, - "wards": {
- "placed": 8,
- "sight_wards_bought_in_game": 0,
- "vision_wards_bought_in_game": 3
}, - "wards_placed": 8
}, - {
- "assists": 5,
- "champion": {
- "id": 2516,
- "name": "Aatrox"
}, - "deaths": 2,
- "flags": {
- "first_blood_assist": false,
- "first_blood_kill": false,
- "first_inhibitor_assist": false,
- "first_inhibitor_kill": false,
- "first_tower_assist": false,
- "first_tower_kill": false
}, - "game_id": 206047,
- "gold_earned": 10911,
- "gold_spent": 8805,
- "items": [
- {
- "id": 693,
- "is_trinket": false,
- "name": "Long Sword"
}, - {
- "id": 699,
- "is_trinket": false,
- "name": "Doran's Shield"
}, - {
- "id": 700,
- "is_trinket": false,
- "name": "Mercury's Treads"
}, - {
- "id": 792,
- "is_trinket": false,
- "name": "Maw of Malmortius"
}, - {
- "id": 855,
- "is_trinket": false,
- "name": "The Black Cleaver"
}, - {
- "id": 1650,
- "is_trinket": true,
- "name": "Oracle Lens"
}
], - "kills": 3,
- "kills_counters": {
- "inhibitors": 0,
- "neutral_minions": 19,
- "neutral_minions_enemy_jungle": 8,
- "neutral_minions_team_jungle": 3,
- "players": 3,
- "turrets": 2,
- "wards": 4
}, - "kills_series": {
- "double_kills": 0,
- "penta_kills": 0,
- "quadra_kills": 0,
- "triple_kills": 0
}, - "largest_critical_strike": 0,
- "largest_killing_spree": 2,
- "largest_multi_kill": 1,
- "level": 15,
- "magic_damage": {
- "dealt": 0,
- "dealt_to_champions": 0
}, - "masteries": [ ],
- "minions_killed": 191,
- "opponent": {
- "acronym": "TSM",
- "id": 387,
- "location": "US",
- "modified_at": "2020-12-07T19:09:41Z",
- "name": "Team SoloMid",
- "slug": "solomid"
}, - "physical_damage": {
- "dealt": 117208,
- "dealt_to_champions": 10693,
- "taken": 10905
}, - "player": {
- "birth_year": 1995,
- "birthday": "1995-11-16",
- "first_name": "Kim",
- "hometown": "South Korea",
- "id": 1414,
- "last_name": "Hyeong-min",
- "name": "Ruin",
- "nationality": "KR",
- "role": "top",
- "slug": "ruin"
}, - "player_id": 1414,
- "role": "top",
- "runes": [ ],
- "spells": [
- {
- "id": 28,
- "name": "Flash"
}, - {
- "id": 39,
- "name": "Teleport"
}
], - "team": {
- "acronym": "CLG",
- "id": 389,
- "location": "US",
- "modified_at": "2020-12-09T10:30:51Z",
- "name": "Counter Logic Gaming",
- "slug": "counter-logic-gaming"
}, - "total_damage": {
- "dealt": 119621,
- "dealt_to_champions": 11104,
- "taken": 22501
}, - "total_heal": 9170,
- "total_time_crowd_control_dealt": 184,
- "total_units_healed": 1,
- "true_damage": {
- "dealt": 2413,
- "dealt_to_champions": 410,
- "taken": 1575
}, - "wards": {
- "placed": 11,
- "sight_wards_bought_in_game": 0,
- "vision_wards_bought_in_game": 5
}, - "wards_placed": 11
}, - {
- "assists": 9,
- "champion": {
- "id": 2512,
- "name": "Sylas"
}, - "deaths": 1,
- "flags": {
- "first_blood_assist": false,
- "first_blood_kill": false,
- "first_inhibitor_assist": true,
- "first_inhibitor_kill": false,
- "first_tower_assist": false,
- "first_tower_kill": false
}, - "game_id": 206047,
- "gold_earned": 10192,
- "gold_spent": 8800,
- "items": [
- {
- "id": 606,
- "is_trinket": false,
- "name": "Slightly Magical Boots"
}, - {
- "id": 730,
- "is_trinket": false,
- "name": "Refillable Potion"
}, - {
- "id": 799,
- "is_trinket": false,
- "name": "Hextech Protobelt-01"
}, - {
- "id": 1650,
- "is_trinket": true,
- "name": "Oracle Lens"
}, - {
- "id": 1671,
- "is_trinket": false,
- "name": "Zhonya's Hourglass"
}, - {
- "id": 2346,
- "is_trinket": false,
- "name": "Skirmisher's Sabre (Enchantment: Runic Echoes)"
}
], - "kills": 4,
- "kills_counters": {
- "inhibitors": 0,
- "neutral_minions": 98,
- "neutral_minions_enemy_jungle": 13,
- "neutral_minions_team_jungle": 57,
- "players": 4,
- "turrets": 0,
- "wards": 8
}, - "kills_series": {
- "double_kills": 0,
- "penta_kills": 0,
- "quadra_kills": 0,
- "triple_kills": 0
}, - "largest_critical_strike": 0,
- "largest_killing_spree": 3,
- "largest_multi_kill": 1,
- "level": 14,
- "magic_damage": {
- "dealt": 105607,
- "dealt_to_champions": 11906
}, - "masteries": [ ],
- "minions_killed": 137,
- "opponent": {
- "acronym": "TSM",
- "id": 387,
- "location": "US",
- "modified_at": "2020-12-07T19:09:41Z",
- "name": "Team SoloMid",
- "slug": "solomid"
}, - "physical_damage": {
- "dealt": 15711,
- "dealt_to_champions": 1185,
- "taken": 12171
}, - "player": {
- "birth_year": 1997,
- "birthday": "1997-09-11",
- "first_name": "Raymond",
- "hometown": null,
- "id": 1564,
- "last_name": "Griffin",
- "name": "Griffin",
- "nationality": "US",
- "role": "jun",
- "slug": "wiggily"
}, - "player_id": 1564,
- "role": "jun",
- "runes": [ ],
- "spells": [
- {
- "id": 28,
- "name": "Flash"
}, - {
- "id": 36,
- "name": "Smite"
}
], - "team": {
- "acronym": "CLG",
- "id": 389,
- "location": "US",
- "modified_at": "2020-12-09T10:30:51Z",
- "name": "Counter Logic Gaming",
- "slug": "counter-logic-gaming"
}, - "total_damage": {
- "dealt": 130820,
- "dealt_to_champions": 14072,
- "taken": 20756
}, - "total_heal": 9880,
- "total_time_crowd_control_dealt": 464,
- "total_units_healed": 1,
- "true_damage": {
- "dealt": 9501,
- "dealt_to_champions": 980,
- "taken": 207
}, - "wards": {
- "placed": 10,
- "sight_wards_bought_in_game": 0,
- "vision_wards_bought_in_game": 10
}, - "wards_placed": 10
}, - {
- "assists": 2,
- "champion": {
- "id": 2390,
- "name": "Kennen"
}, - "deaths": 1,
- "flags": {
- "first_blood_assist": false,
- "first_blood_kill": false,
- "first_inhibitor_assist": false,
- "first_inhibitor_kill": false,
- "first_tower_assist": true,
- "first_tower_kill": false
}, - "game_id": 206047,
- "gold_earned": 8945,
- "gold_spent": 8975,
- "items": [
- {
- "id": 607,
- "is_trinket": false,
- "name": "Broken Stopwatch"
}, - {
- "id": 686,
- "is_trinket": true,
- "name": "Warding Totem (Trinket)"
}, - {
- "id": 763,
- "is_trinket": false,
- "name": "Control Ward"
}, - {
- "id": 774,
- "is_trinket": false,
- "name": "Sorcerer's Shoes"
}, - {
- "id": 2318,
- "is_trinket": false,
- "name": "Morellonomicon"
}, - {
- "id": 2339,
- "is_trinket": false,
- "name": "Hextech Gunblade"
}
], - "kills": 1,
- "kills_counters": {
- "inhibitors": 0,
- "neutral_minions": 4,
- "neutral_minions_enemy_jungle": 0,
- "neutral_minions_team_jungle": 4,
- "players": 1,
- "turrets": 0,
- "wards": 3
}, - "kills_series": {
- "double_kills": 0,
- "penta_kills": 0,
- "quadra_kills": 0,
- "triple_kills": 0
}, - "largest_critical_strike": 0,
- "largest_killing_spree": 0,
- "largest_multi_kill": 1,
- "level": 14,
- "magic_damage": {
- "dealt": 63491,
- "dealt_to_champions": 7679
}, - "masteries": [ ],
- "minions_killed": 203,
- "opponent": {
- "acronym": "CLG",
- "id": 389,
- "location": "US",
- "modified_at": "2020-12-09T10:30:51Z",
- "name": "Counter Logic Gaming",
- "slug": "counter-logic-gaming"
}, - "physical_damage": {
- "dealt": 31823,
- "dealt_to_champions": 3622,
- "taken": 7835
}, - "player": {
- "birth_year": 2000,
- "birthday": "2000-01-19",
- "first_name": "Sergen",
- "hometown": "Türkiye",
- "id": 1718,
- "last_name": "Çelik",
- "name": "Broken Blade",
- "nationality": "DE",
- "role": "top",
- "slug": "broken-blade"
}, - "player_id": 1718,
- "role": "top",
- "runes": [ ],
- "spells": [
- {
- "id": 28,
- "name": "Flash"
}, - {
- "id": 39,
- "name": "Teleport"
}
], - "team": {
- "acronym": "TSM",
- "id": 387,
- "location": "US",
- "modified_at": "2020-12-07T19:09:41Z",
- "name": "Team SoloMid",
- "slug": "solomid"
}, - "total_damage": {
- "dealt": 103678,
- "dealt_to_champions": 11301,
- "taken": 12693
}, - "total_heal": 4828,
- "total_time_crowd_control_dealt": 53,
- "total_units_healed": 1,
- "true_damage": {
- "dealt": 8363,
- "dealt_to_champions": 0,
- "taken": 87
}, - "wards": {
- "placed": 12,
- "sight_wards_bought_in_game": 0,
- "vision_wards_bought_in_game": 5
}, - "wards_placed": 12
}
], - "position": 1,
- "status": "finished",
- "teams": [
- {
- "bans": [
- 2438,
- 2482,
- 2509,
- 2384,
- 2462
], - "baron_kills": 0,
- "cloud_drake_kills": 0,
- "color": "red",
- "dragon_kills": 2,
- "elder_drake_kills": 0,
- "first_baron": false,
- "first_blood": false,
- "first_dragon": false,
- "first_inhibitor": false,
- "first_tower": true,
- "gold_earned": 39230,
- "herald_kills": 0,
- "infernal_drake_kills": 1,
- "inhibitor_kills": 0,
- "kills": 7,
- "mountain_drake_kills": 0,
- "ocean_drake_kills": 1,
- "player_ids": [
- 40,
- 53,
- 223,
- 680,
- 1718
], - "team": {
- "acronym": "TSM",
- "id": 387,
- "location": "US",
- "modified_at": "2020-12-07T19:09:41Z",
- "name": "Team SoloMid",
- "slug": "solomid"
}, - "tower_kills": 1
}, - {
- "bans": [
- 2452,
- 2494,
- 2439,
- 2493,
- 2401
], - "baron_kills": 1,
- "cloud_drake_kills": 1,
- "color": "blue",
- "dragon_kills": 2,
- "elder_drake_kills": 0,
- "first_baron": true,
- "first_blood": true,
- "first_dragon": true,
- "first_inhibitor": true,
- "first_tower": false,
- "gold_earned": 52185,
- "herald_kills": 1,
- "infernal_drake_kills": 0,
- "inhibitor_kills": 2,
- "kills": 18,
- "mountain_drake_kills": 0,
- "ocean_drake_kills": 1,
- "player_ids": [
- 62,
- 229,
- 510,
- 1414,
- 1564
], - "team": {
- "acronym": "CLG",
- "id": 389,
- "location": "US",
- "modified_at": "2020-12-09T10:30:51Z",
- "name": "Counter Logic Gaming",
- "slug": "counter-logic-gaming"
}, - "tower_kills": 11
}
], - "video_url": null,
- "winner": {
- "id": 389,
- "type": "Team"
}, - "winner_type": "Team"
}
]
List items for the latest version
object (filter_over_LoLItems) Example: filter[gold_base]=675,250&filter[is_trinket]=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_LoLItems) Example: range[flat_magic_damage_mod]=50,100 Options to select results within ranges | |
object (search_over_LoLItems) Example: search[name]=Sabre Options to search results | |
sort | Array of any (sort_over_LoLItems) non-empty Items Enum: "flat_armor_mod" "-flat_armor_mod" "flat_crit_chance_mod" "-flat_crit_chance_mod" "flat_hp_pool_mod" "-flat_hp_pool_mod" "flat_hp_regen_mod" "-flat_hp_regen_mod" "flat_magic_damage_mod" "-flat_magic_damage_mod" "flat_movement_speed_mod" "-flat_movement_speed_mod" "flat_mp_pool_mod" "-flat_mp_pool_mod" "flat_mp_regen_mod" "-flat_mp_regen_mod" "flat_physical_damage_mod" "-flat_physical_damage_mod" "flat_spell_block_mod" "-flat_spell_block_mod" "gold_base" "-gold_base" "gold_purchasable" "-gold_purchasable" "gold_sell" "-gold_sell" "gold_total" "-gold_total" "id" "-id" "name" "-name" "percent_attack_speed_mod" "-percent_attack_speed_mod" "percent_life_steal_mod" "-percent_life_steal_mod" "percent_movement_speed_mod" "-percent_movement_speed_mod" Example: sort=-gold_sell&sort=name Options to sort results |
/lol/items?page[size]=1
[- {
- "flat_armor_mod": 0,
- "flat_crit_chance_mod": 0,
- "flat_hp_pool_mod": 100,
- "flat_hp_regen_mod": 0,
- "flat_magic_damage_mod": 50,
- "flat_movement_speed_mod": 0,
- "flat_mp_pool_mod": 0,
- "flat_mp_regen_mod": 0,
- "flat_physical_damage_mod": 0,
- "flat_spell_block_mod": null,
- "gold_base": null,
- "gold_purchasable": false,
- "gold_sell": null,
- "gold_total": null,
- "id": 2441,
- "is_trinket": false,
- "name": "Shard of True Ice",
- "percent_attack_speed_mod": 0,
- "percent_life_steal_mod": 0,
- "percent_movement_speed_mod": 0,
- "videogame_versions": [
- "10.16.1",
- "10.15.1"
]
}
]
Get a single item by ID or by slug
lol_item_id required | integer (LoLItemID) >= 1 An item ID |
/lol/items/2297
{- "flat_armor_mod": 0,
- "flat_crit_chance_mod": 0,
- "flat_hp_pool_mod": 300,
- "flat_hp_regen_mod": 0,
- "flat_magic_damage_mod": 75,
- "flat_movement_speed_mod": 0,
- "flat_mp_pool_mod": 0,
- "flat_mp_regen_mod": 0,
- "flat_physical_damage_mod": 0,
- "flat_spell_block_mod": null,
- "gold_base": 750,
- "gold_purchasable": true,
- "gold_sell": 2170,
- "gold_total": 3100,
- "id": 2297,
- "is_trinket": false,
- "name": "Liandry's Torment",
- "percent_attack_speed_mod": 0,
- "percent_life_steal_mod": 0,
- "percent_movement_speed_mod": 0,
- "videogame_versions": [
- "10.16.1",
- "10.15.1",
- "10.14.1",
- "10.13.1",
- "10.12.1",
- "10.11.1",
- "10.10.3216176",
- "10.10.3208608",
- "10.9.1",
- "10.8.1",
- "10.7.1",
- "10.6.1",
- "10.5.1",
- "10.4.1",
- "10.3.1",
- "10.2.1",
- "10.1.1",
- "9.24.2",
- "9.24.1",
- "9.23.1",
- "9.22.1",
- "9.21.1",
- "9.20.1",
- "9.19.1",
- "9.18.1",
- "9.17.1",
- "9.16.1",
- "9.15.1",
- "9.14.1",
- "9.13.1",
- "9.12.1",
- "9.11.1",
- "9.10.1",
- "9.9.1",
- "9.8.1",
- "9.7.2",
- "9.7.1",
- "9.6.1",
- "9.5.1",
- "9.4.1",
- "9.3.1",
- "9.2.1",
- "9.1.1",
- "8.24.1",
- "8.23.1",
- "8.22.1",
- "8.20.1",
- "8.19.1"
]
}
List items for all versions
object (filter_over_LoLItems) Example: filter[gold_base]=675,250&filter[is_trinket]=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_LoLItems) Example: range[flat_magic_damage_mod]=50,100 Options to select results within ranges | |
object (search_over_LoLItems) Example: search[name]=Sabre Options to search results | |
sort | Array of any (sort_over_LoLItems) non-empty Items Enum: "flat_armor_mod" "-flat_armor_mod" "flat_crit_chance_mod" "-flat_crit_chance_mod" "flat_hp_pool_mod" "-flat_hp_pool_mod" "flat_hp_regen_mod" "-flat_hp_regen_mod" "flat_magic_damage_mod" "-flat_magic_damage_mod" "flat_movement_speed_mod" "-flat_movement_speed_mod" "flat_mp_pool_mod" "-flat_mp_pool_mod" "flat_mp_regen_mod" "-flat_mp_regen_mod" "flat_physical_damage_mod" "-flat_physical_damage_mod" "flat_spell_block_mod" "-flat_spell_block_mod" "gold_base" "-gold_base" "gold_purchasable" "-gold_purchasable" "gold_sell" "-gold_sell" "gold_total" "-gold_total" "id" "-id" "name" "-name" "percent_attack_speed_mod" "-percent_attack_speed_mod" "percent_life_steal_mod" "-percent_life_steal_mod" "percent_movement_speed_mod" "-percent_movement_speed_mod" Example: sort=-gold_sell&sort=name Options to sort results |
/lol/items?page[size]=1
[- {
- "flat_armor_mod": 0,
- "flat_crit_chance_mod": 0,
- "flat_hp_pool_mod": 100,
- "flat_hp_regen_mod": 0,
- "flat_magic_damage_mod": 50,
- "flat_movement_speed_mod": 0,
- "flat_mp_pool_mod": 0,
- "flat_mp_regen_mod": 0,
- "flat_physical_damage_mod": 0,
- "flat_spell_block_mod": null,
- "gold_base": null,
- "gold_purchasable": false,
- "gold_sell": null,
- "gold_total": null,
- "id": 2441,
- "is_trinket": false,
- "name": "Shard of True Ice",
- "percent_attack_speed_mod": 0,
- "percent_life_steal_mod": 0,
- "percent_movement_speed_mod": 0,
- "videogame_versions": [
- "10.16.1",
- "10.15.1"
]
}
]
List items for the given version
lol_version_name required | integer (LoLVersionName) >= 1 A version to select champions on. Can be all if you want to query all the champions over all the versions of league of legends. |
object (filter_over_LoLItems) Example: filter[gold_base]=675,250&filter[is_trinket]=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_LoLItems) Example: range[flat_magic_damage_mod]=50,100 Options to select results within ranges | |
object (search_over_LoLItems) Example: search[name]=Sabre Options to search results | |
sort | Array of any (sort_over_LoLItems) non-empty Items Enum: "flat_armor_mod" "-flat_armor_mod" "flat_crit_chance_mod" "-flat_crit_chance_mod" "flat_hp_pool_mod" "-flat_hp_pool_mod" "flat_hp_regen_mod" "-flat_hp_regen_mod" "flat_magic_damage_mod" "-flat_magic_damage_mod" "flat_movement_speed_mod" "-flat_movement_speed_mod" "flat_mp_pool_mod" "-flat_mp_pool_mod" "flat_mp_regen_mod" "-flat_mp_regen_mod" "flat_physical_damage_mod" "-flat_physical_damage_mod" "flat_spell_block_mod" "-flat_spell_block_mod" "gold_base" "-gold_base" "gold_purchasable" "-gold_purchasable" "gold_sell" "-gold_sell" "gold_total" "-gold_total" "id" "-id" "name" "-name" "percent_attack_speed_mod" "-percent_attack_speed_mod" "percent_life_steal_mod" "-percent_life_steal_mod" "percent_movement_speed_mod" "-percent_movement_speed_mod" Example: sort=-gold_sell&sort=name Options to sort results |
/lol/items?page[size]=1
[- {
- "flat_armor_mod": 0,
- "flat_crit_chance_mod": 0,
- "flat_hp_pool_mod": 100,
- "flat_hp_regen_mod": 0,
- "flat_magic_damage_mod": 50,
- "flat_movement_speed_mod": 0,
- "flat_mp_pool_mod": 0,
- "flat_mp_regen_mod": 0,
- "flat_physical_damage_mod": 0,
- "flat_spell_block_mod": null,
- "gold_base": null,
- "gold_purchasable": false,
- "gold_sell": null,
- "gold_total": null,
- "id": 2441,
- "is_trinket": false,
- "name": "Shard of True Ice",
- "percent_attack_speed_mod": 0,
- "percent_life_steal_mod": 0,
- "percent_movement_speed_mod": 0,
- "videogame_versions": [
- "10.16.1",
- "10.15.1"
]
}
]
List League of Legends leagues
object (filter_over_LoLLeagues) 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_LoLLeagues) Example: range[modified_at]=2019-04-08T17:00:00Z,2019-10-08T22:00:00Z Options to select results within ranges | |
object (search_over_LoLLeagues) Example: search[name]=Contenders Options to search results | |
sort | Array of any (sort_over_LoLLeagues) 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 |
/lol/leagues?page[size]=1
[- {
- "id": 4450,
- "modified_at": "2020-08-08T09:14:04Z",
- "name": "Baltic Masters",
- "series": [
- {
- "begin_at": "2020-08-11T15:00:00Z",
- "description": null,
- "end_at": "2020-08-13T21:00:00Z",
- "full_name": "Season 5 2