Replay Bans Endpoint


This endpoint is used for gathering the hero bans for a particular replayID. The following attributes are returned.

{
  {
    "Team 1": [
      "Hero",
      "Hero",
      "Hero"
    ],
    "Team 2": [
      "Hero",
      "Hero",
      "Hero"
    ]
  }
}

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 /Replay/Ban?replayID=18283505 Default

Example Return

{
  "Team 1": [
    "Alarak",
    "Ana",
    "Qhira"
  ],
  "Team 2": [
    "Diablo",
    "Falstad",
    "Kael'thas"
  ]
}