Maps Endpoint


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

[
  {
    "map_id": map_id,
    "name": "name",
    "short_name": "short_name"
  }
]

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 /Maps Default
GET /Maps?map=Dragon Shire Default

Extra Calls for Paid Subscription

Method URI Headers
GET /Maps?mode=csv Default

URL Parameters (as needed)

mode: (json or csv).  Only available with paid subscription

map: (full map name.  e.g. Braxis Holdout)

Example Return

[
  {
    "map_id": 1,
    "name": "Battlefield of Eternity",
    "short_name": "BattlefieldOfEternity"
  },
  {
    "map_id": 2,
    "name": "Blackheart's Bay",
    "short_name": "BlackheartsBay"
  },
  {
    "map_id": 3,
    "name": "Braxis Holdout",
    "short_name": "BraxisHoldout"
  },
  {
    "map_id": 4,
    "name": "Cursed Hollow",
    "short_name": "CursedHollow"
  },
  {
    "map_id": 5,
    "name": "Dragon Shire",
    "short_name": "DragonShire"
  },
  {
    "map_id": 6,
    "name": "Garden of Terror",
    "short_name": "HauntedWoods"
  },
  {
    "map_id": 7,
    "name": "Hanamura Temple",
    "short_name": "Hanamura"
  },
  {
    "map_id": 8,
    "name": "Haunted Mines",
    "short_name": "HauntedMines"
  },
  {
    "map_id": 9,
    "name": "Infernal Shrines",
    "short_name": "Shrines"
  },
  {
    "map_id": 10,
    "name": "Sky Temple",
    "short_name": "ControlPoints"
  },
  {
    "map_id": 11,
    "name": "Tomb of the Spider Queen",
    "short_name": "Crypts"
  },
  {
    "map_id": 12,
    "name": "Towers of Doom",
    "short_name": "TowersOfDoom"
  },
  {
    "map_id": 13,
    "name": "Warhead Junction",
    "short_name": "Warhead Junction"
  },
  {
    "map_id": 14,
    "name": "Volskaya Foundry",
    "short_name": "Volskaya"
  },
  {
    "map_id": 15,
    "name": "Alterac Pass",
    "short_name": "AlteracPass"
  },
  {
    "map_id": 16,
    "name": "Escape From Braxis",
    "short_name": "EscapeFromBraxis"
  },
  {
    "map_id": 17,
    "name": "Industrial District",
    "short_name": "IndustrialDistrict"
  },
  {
    "map_id": 18,
    "name": "Lost Cavern",
    "short_name": "LostCavern"
  },
  {
    "map_id": 19,
    "name": "Pull Party",
    "short_name": "PullParty"
  },
  {
    "map_id": 20,
    "name": "Silver City",
    "short_name": "SilverCity"
  },
  {
    "map_id": 21,
    "name": "Braxis Outpost",
    "short_name": "BraxisOutpost"
  },
  {
    "map_id": 22,
    "name": "Checkpoint: Hanamura",
    "short_name": "HanamuraPayloadPush"
  }
]