Skip to main content
GET
/
hero
/
list
list all available heroes from the HeroRegistry
curl --request GET \
  --url http://localhost:3917/hero/list
{
  "heroes": [
    {
      "damage": 55,
      "gold": 625,
      "health": 600,
      "mana": 300,
      "name": "Juggernaut"
    }
  ]
}

Response

200 - application/json

All registered heroes sorted by name, each with name, health, mana, gold, and damage.