lol-champion-positions-data
Analyze League of Legends champion performance by position, including winrate, banrate, plays, kills, and KDA. Retrieve tier data to identify powerful and easy-to-play champions for recommendations.
Instructions
Retrieves the analytics of champions by each positions. You can also look up the winrate, banrate, plays, wins, kills, kda and etc. tier_data
is champion tier which tells which champion is powerful (OP) or not, for example tier 1
champion is easy to play and powerful champion. (You can recommend this champion to the user if they want recommandation)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
format | No | Format of the output data. Determines the format of returned data. Default is `csv`. | csv |
lang | Yes | Language code for localized content. Determines the language of returned data. |
Input Schema (JSON Schema)
{
"properties": {
"format": {
"default": "csv",
"description": "Format of the output data. Determines the format of returned data. Default is `csv`.",
"enum": [
"csv",
"json_zip"
],
"type": "string"
},
"lang": {
"description": "Language code for localized content. Determines the language of returned data.",
"enum": [
"ar_AE",
"cs_CZ",
"de_DE",
"el_GR",
"en_US",
"en_AU",
"en_GB",
"en_PH",
"en_SG",
"es_AR",
"es_ES",
"es_MX",
"fr_FR",
"hu_HU",
"it_IT",
"ja_JP",
"ko_KR",
"pl_PL",
"pt_BR",
"ro_RO",
"ru_RU",
"th_TH",
"tr_TR",
"vi_VN",
"zh_CN",
"zh_MY",
"zh_TW"
],
"type": "string"
}
},
"required": [
"lang"
],
"type": "object"
}