Patches Endpoint


This endpoint is used for gathering patch data. This endpoint is mainly used to gather major and minor patch data information for use with the following endpoints. /Heroes/Stats, /Hero/Talents, /Hero/Talents/Details, /Hero/Talents/Builds. The following attributes are returned.

{
  "major patch": [
    "minor patch 1",
    "minor patch 2"
  ]
}

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 /Patches Default

Example Return

{
  "2.44": [
    "2.44.0.73016",
    "2.44.1.73493"
  ],
  "2.45": [
    "2.45.0.73662",
    "2.45.1.74238"
  ],
  "2.46": [
    "2.46.0.74739",
    "2.46.1.75132",
    "2.46.1.75132"
  ],
  "2.47": [
    "2.47.0.75589",
    "2.47.1.75792",
    "2.47.2.76003",
    "2.47.3.76124"
  ]
}