NGS Leaderboard for average stats endpoint


This endpoint is used for getting a leaderboard of NGS players ranked on average stat. The following attributes are returned.

[
  {
    "battletag": "battletag",
    "avg_kills": "avg_kills"
  }
]

Example Usage

{warning} All API calls require an api_token as part of the query string and are prefixed by https://api.heroesprofile.com/api

Method URI Headers
GET NGS/Leaderboard/Highest/Average/Stat?stat=kills Default
GET NGS/Leaderboard/Highest/Average/Stat?stat=kills&season=7 Default

URL Parameters (required)

stat: one of the stats below.
- kills
- assists
- takedowns
- deaths
- highest_kill_streak
- hero_damage
- siege_damage
- structure_damage
- minion_damage
- creep_damage
- summon_damage
- healing
- self_healing
- damage_taken
- experience_contribution
- town_kills
- time_spent_dead
- merc_camp_captures
- watch_tower_captures
- meta_experience
- protection_allies
- silencing_enemies
- rooting_enemies
- stunning_enemies
- clutch_heals
- escapes
- vengeance
- outnumbered_deaths
- teamfight_escapes
- teamfight_healing
- teamfight_damage_taken
- teamfight_hero_damage
- multikill
- physical_damage
- spell_damage
- regen_globes

URL Parameters (as needed)

season: One of the seasons of NGS

Example Return

[
  {
    "battletag": "Zarumag#1691",
    "avg_kills": "6.5000"
  },
  {
    "battletag": "MegaMuffin#11742",
    "avg_kills": "6.3704"
  },
  {
    "battletag": "CTVMet#1610",
    "avg_kills": "5.5294"
  },
  {
    "battletag": "ArduousBow#1893",
    "avg_kills": "5.5000"
  },
  {
    "battletag": "Rexba#1756",
    "avg_kills": "5.2143"
  },
  {
    "battletag": "VuDu#1705",
    "avg_kills": "5.2000"
  },
  {
    "battletag": "Zunicorn#11120",
    "avg_kills": "5.0000"
  },
  {
    "battletag": "Kemordia#1399",
    "avg_kills": "5.0000"
  },
  {
    "battletag": "Crazybezz#1200",
    "avg_kills": "5.0000"
  },
  {
    "battletag": "OlDookieTom#1563",
    "avg_kills": "4.8947"
  }
]