Hero Talents


This endpoint is used for gathering hero talent metadata. The following attributes are returned.

{
  "id": id,
  "short_name": "short_name",
  "alt_name": alt_name,
  "attribute_id": "attribute_id",
  "role": "role",
  "new_role": "new_role",
  "type": "type",
  "release_date": "release_date",
  "rework_date": rework_date,
  "talent_id": talent_id,
  "title": "title",
  "talent_name": "talent_name",
  "description": "description",
  "status": "status",
  "hotkey": "hotkey",
  "cooldown": "cooldown",
  "mana_cost": "mana_cost",
  "sort": "sort",
  "level": level,
  "icon": "icon"
  }

Example Usage

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

Method URI Headers
GET /Heroes/Talents Default
GET /Heroes/Talents?hero=Abathur Default

URL Parameters (as needed)

mode: (json or csv)

hero: (Full name for a hero.  e.g.  Muradin)

Example Return

{
  "Abathur": [
    {
      "id": 1,
      "short_name": "abathur",
      "alt_name": null,
      "attribute_id": "Abat",
      "role": "Specialist",
      "new_role": "Support",
      "type": "Melee",
      "release_date": "2014-03-13 00:00:00",
      "rework_date": null,
      "talent_id": 2423,
      "title": "Pressurized Glands",
      "talent_name": "AbathurMasteryPressurizedGlands",
      "description": "Increases the range of Symbiote's Spike Burst by 25% and decreases the cooldown by 1 second.",
      "status": "playable",
      "hotkey": "Q1",
      "cooldown": "",
      "mana_cost": "",
      "sort": "1",
      "level": 1,
      "icon": "storm_ui_icon_abathur_spikeburst.png"
    },
    {
      "id": 1,
      "short_name": "abathur",
      "alt_name": null,
      "attribute_id": "Abat",
      "role": "Specialist",
      "new_role": "Support",
      "type": "Melee",
      "release_date": "2014-03-13 00:00:00",
      "rework_date": null,
      "talent_id": 2421,
      "title": "Envenomed Nest",
      "talent_name": "AbathurMasteryEnvenomedNestsToxicNest",
      "description": "Toxic Nests deal 75% more damage over 3 seconds.",
      "status": "playable",
      "hotkey": "W1",
      "cooldown": "",
      "mana_cost": "",
      "sort": "2",
      "level": 1,
      "icon": "storm_ui_icon_abathur_toxicnest.png"
    },
  ]
}