CCL Replay Data Endpoint


This endpoint is used for gathering CCL replay data for a particular replayID. The following attributes are returned.

{
  "replayID": {
    "game_date": "game_date",
    "game_length": game_length,
    "game_map": "game_map",
    "game_version": "game_version",
    "region": region,
    "first_pick": 0,
    "team_0": "team_0",
    "team_1": "team_1",
    "player": {
      "hero": "hero",
      "hero_level": hero_level,
      "mastery_taunt": mastery_taunt,
      "team": team,
      "winner": winner,
      "talents": {
        "1": "1",
        "4": "4",
        "7": "7",
        "10": "10",
        "13": "13",
        "16": "16",
        "20": "20"
      },
      "scores": {
        "level": level,
        "kills": kills,
        "assists": assists,
        "takedowns": takedowns,
        "deaths": deaths,
        "highest_kill_streak": highest_kill_streak,
        "hero_damage": hero_damage,
        "siege_damage": siege_damage,
        "structure_damage": structure_damage,
        "minion_damage": minion_damage,
        "creep_damage": creep_damage,
        "summon_damage": summon_damage,
        "time_cc_enemy_heroes": time_cc_enemy_heroes,
        "healing": healing,
        "self_healing": self_healing,
        "damage_taken": damage_taken,
        "experience_contribution": experience_contribution,
        "town_kills": town_kills,
        "time_spent_dead": time_spent_dead,
        "merc_camp_captures": merc_camp_captures,
        "watch_tower_captures": watch_tower_captures,
        "meta_experience": meta_experience,
        "protection_allies": protection_allies,
        "silencing_enemies": silencing_enemies,
        "rooting_enemies": rooting_enemies,
        "stunning_enemies": stunning_enemies,
        "clutch_heals": clutch_heals,
        "escapes": escapes,
        "vengeance": vengeance,
        "outnumbered_deaths": outnumbered_deaths,
        "teamfight_escapes": teamfight_escapes,
        "teamfight_healing": teamfight_healing,
        "teamfight_damage_taken": teamfight_damage_taken,
        "teamfight_hero_damage": teamfight_hero_damage,
        "multikill": multikill,
        "physical_damage": physical_damage,
        "spell_damage": spell_damage,
        "regen_globes": regen_globes
      }
    }
  }
}

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 /CCL/Replay/Data?replayID=1 Default

Example Return

{
  "1": {
    "game_date": "2020-09-26 20:25:11",
    "game_length": 911,
    "game_map": "Infernal Shrines",
    "game_version": "2.52.0.81700",
    "region": 1,
    "first_pick": 0,
    "team_0": null,
    "team_1": null,
    "Sammy#22162": {
      "hero": "Valla",
      "hero_level": 9,
      "mastery_taunt": 0,
      "team": 0,
      "winner": false,
      "blizz_id": 7685542,
      "talents": {
        "1": "Hot Pursuit",
        "4": "Punishment",
        "7": "Arsenal",
        "10": "Strafe",
        "13": "Gloom",
        "16": "Manticore",
        "20": ""
      },
      "scores": {
        "level": 17,
        "kills": 0,
        "assists": 1,
        "takedowns": 1,
        "deaths": 2,
        "highest_kill_streak": 0,
        "hero_damage": 21865,
        "siege_damage": 90097,
        "structure_damage": 5156,
        "minion_damage": 72027,
        "creep_damage": 10598,
        "summon_damage": 624,
        "time_cc_enemy_heroes": 0,
        "healing": 0,
        "self_healing": 0,
        "damage_taken": 15393,
        "experience_contribution": 8612,
        "town_kills": 0,
        "time_spent_dead": 80,
        "merc_camp_captures": 1,
        "watch_tower_captures": 0,
        "meta_experience": 56022,
        "protection_allies": 0,
        "silencing_enemies": 0,
        "rooting_enemies": 0,
        "stunning_enemies": 0,
        "clutch_heals": 0,
        "escapes": 0,
        "vengeance": 0,
        "outnumbered_deaths": 1,
        "teamfight_escapes": 0,
        "teamfight_healing": 0,
        "teamfight_damage_taken": 5998,
        "teamfight_hero_damage": 13134,
        "multikill": 0,
        "physical_damage": 61971,
        "spell_damage": 66147,
        "regen_globes": 23
      }
    },
  }
}