Aller au contenu
GET /v1/stats

Search modifier stats

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/poe-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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_..."}
)

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "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
…