/v1/stats
Search modifier stats
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/poe-api/v1/stats" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/poe-api/v1/stats", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/poe-api/v1/stats");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/poe-api/v1/stats",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"count": 50,
"stats": [
{
"id": "pseudo.pseudo_total_life",
"text": "+# total maximum Life",
"type": "Pseudo"
},
{
"id": "explicit.stat_3299347043",
"text": "+# to maximum Life",
"type": "Explicit"
},
{
"id": "explicit.stat_983749596",
"text": "#% increased maximum Life",
"type": "Explicit"
},
{
"id": "explicit.stat_770672621",
"text": "Minions have #% increased maximum Life",
"type": "Explicit"
},
{
"id": "explicit.stat_3819827377",
"text": "Added Small Passive Skills also grant: +# to Maximum Life",
"type": "Explicit"
},
{
"id": "explicit.stat_2887760183",
"text": "Monsters gain #% of Maximum Life as Extra Maximum Energy Shield",
"type": "Explicit"
},
{
"id": "explicit.stat_1776945532",
"text": "Enemies you Kill have a #% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage",
"type": "Explicit"
},
{
"id": "explicit.stat_2301696196",
"text": "You take #% of your maximum Life as Chaos Damage on use",
"type": "Explicit"
},
{
"id": "explicit.stat_3232201443",
"text": "#% of Maximum Life taken as Chaos Damage per second",
"type": "Explicit"
},
{
"id": "explicit.stat_688802590",
"text": "Your Minions spread Caustic Ground on Death, dealing #% of their maximum Life as Chaos Damage per second",
"type": "Explicit"
},
{
"id": "explicit.stat_67280387",
"text": "Gain #% of Maximum Life as Extra Maximum Energy Shield",
"type": "Explicit"
},
{
"id": "explicit.stat_3899352861",
"text": "#% increased maximum Life, Mana and Global Energy Shield",
"type": "Explicit"
},
{
"id": "explicit.stat_2458962764",
"text": "#% of Maximum Life Converted to Energy Shield",
"type": "Explicit"
},
{
"id": "explicit.stat_1723061251",
"text": "Totems Reflect #% of their maximum Life as Fire Damage to nearby Enemies when Hit",
"type": "Explicit"
},
{
"id": "explicit.stat_2912438397",
"text": "Summoned Skeletons take #% of their Maximum Life per second as Fire Damage",
"type": "Exp
…