Access data for hero powers and abilities.
Retrieve a list of all powers.
tech, biotic).curl https://overwatch-hero-api.pages.dev/api/powers
const response = await fetch('https://overwatch-hero-api.pages.dev/api/powers');
const data = await response.json();
Returns an array of Power objects.
[
{
"id": "biotic_grenade",
"name": "Biotic Grenade",
"upgrade_type": "biotic",
"stat_changes": { ... }
// ...
}
]
Retrieve detailed information for a specific power.
Returns a single Power object.
{
"id": "biotic_grenade",
"name": "Biotic Grenade",
"description": "Throws a grenade that heals and damages.",
// ...
}