Zum Inhalt springen
GET /v1/abilities

A class ability tree

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/wynncraft-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten 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
}