Vai al contenuto
GET /v1/abilities

A class ability tree

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/wynncraft-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

curl "https://api.oanor.com/wynncraft-api/v1/abilities" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/wynncraft-api/v1/abilities", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/wynncraft-api/v1/abilities");
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/wynncraft-api/v1/abilities",
    headers={"x-oanor-key": "oanor_test_..."}
)

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "data": {
        "class": "archer",
        "pages": 9,
        "ability_ids": [
            "arrowbomb",
            "bowProficiency",
            "arrowBombCost1",
            "directHit",
            "hastyShots",
            "escape",
            "powerShots",
            "arrowstorm",
            "escapeCost1",
            "arrowshield",
            "windyfeet",
            "archerAirPath",
            "archerThunderPath",
            "archerFirePath",
            "archerWaterPath",
            "archerEarthPath",
            "arrowrain",
            "nimbleString",
            "mossyArrowStorm",
            "fireCreep",
            "phantomDarts",
            "hitToRename",
            "tripleShots",
            "guardianAngels",
            "explodingTrap",
            "focus",
            "windstorm",
            "arrowStormCost1",
            "implosion",
            "tripleshield",
            "betterWindyFeet",
            "arsenalSynergy",
            "timeBomb",
            "grapplingHook",
            "moreFocus",
            "murderFlock",
            "arrowBombDamage1",
            "phantomForce",
            "leap",
            "grapeBomb",
            "ivyrootMamba",
            "concentration",
            "shrapnelBomb",
            "fierceStomp",
            "rocketJump",
            "scorchedEarth",
            "moreTraps1",
            "divineIntervention",
            "arrowShieldCost1",
            "betterArrowShield"
        ],
        "ability_count": 97
    },
    "meta": {
        "timestamp": "2026-06-01T00:03:29.979Z",
        "request_id": "190c7b15-b192-4a85-b901-7bcbb62e29c7"
    },
    "status": "ok",
    "message": "Abilities retrieved",
    "success": true
}