NGS Leaderboard for total stats endpoint


This endpoint is used for getting a leaderboard of NGS players ranked on total 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/Total/Stat?stat=kills Default
GET NGS/Leaderboard/Highest/Total/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": "Zeenarus#1597",
    "total_kills": "315"
  },
  {
    "battletag": "Michaelan#1542",
    "total_kills": "292"
  },
  {
    "battletag": "Rexba#1756",
    "total_kills": "292"
  },
  {
    "battletag": "Yerganderb#1581",
    "total_kills": "291"
  },
  {
    "battletag": "AppleMike#1766",
    "total_kills": "238"
  },
  {
    "battletag": "Cavlor#1282",
    "total_kills": "237"
  },
  {
    "battletag": "befresch#1245",
    "total_kills": "234"
  },
  {
    "battletag": "Cyan#1311",
    "total_kills": "228"
  },
  {
    "battletag": "Dkunleashed#1192",
    "total_kills": "212"
  },
  {
    "battletag": "munkus#1952",
    "total_kills": "210"
  }
]