Player Profile Endpoint


This endpoint is used for gathering player profile data. The following attributes are returned.

{
  "blizz_id": blizz_id,
  "battletag": "battletag",
  "region": region,
  "account_level": account_level
  "profile": "profile"
}

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 /Player?battletag=Zemill%231940&region=1 Default

URL Parameters (required)

battletag: (Full battletag) - url encoded

region:  (1 = NA, 2 = EU, 3 = KR, 5 = CN)

Example Return

{
  "blizz_id": 67280,
  "battletag": "Zemill#1940",
  "region": "1",
  "account_level": 1559,
  "profile": "https://www.heroesprofile.com/Profile/?blizz_id=67280&battletag=Zemill&region=1"
}