Zum Inhalt springen
GET /v1/item

Search the item database

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

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "count": 6,
        "items": [
            {
                "drop": null,
                "name": "Weathered Idol",
                "type": "ingredient",
                "level": 36,
                "rarity": "TIER_3",
                "elements": [],
                "sub_type": null,
                "major_ids": [],
                "average_dps": null,
                "attack_speed": null,
                "powder_slots": null
            },
            {
                "drop": "Aerie of the Recluse",
                "name": "Eidolon",
                "type": "weapon",
                "level": 95,
                "rarity": "rare",
                "elements": [
                    "air"
                ],
                "sub_type": "wand",
                "class_req": "mage",
                "major_ids": [],
                "average_dps": 280,
                "attack_speed": "superSlow",
                "powder_slots": 5
            },
            {
                "drop": "normal",
                "name": "False Idol",
                "type": "armour",
                "level": 37,
                "rarity": "fabled",
                "elements": [
                    "earth",
                    "thunder"
                ],
                "sub_type": "helmet",
                "major_ids": [
                    "Sun Eater"
                ],
                "average_dps": null,
                "attack_speed": null,
                "powder_slots": 2
            },
            {
                "drop": "never",
                "name": "Pareidolia",
                "type": "weapon",
                "level": 102,
                "rarity": "legendary",
                "elements": [
                    "air",
                    "thunder",
                    "water"
                ],
                "sub_type": "relik",
                "class_req": "shaman",
                "major_ids": [],
                "average_dps": 798,
                "attack_speed": "veryFast",
                "powder_slots": 2
            },
            {
                "drop": "normal",
                "name": "Idol",
                "type": "weapon",
                "level": 95,
                "rarity": "mythic",
                "elements": [
                    "water"
                ],
                "sub_type": "spear",
                "class_req": "warrior",
                "major_ids": [
                    "Tidal Drift"
                ],
                "average_dps": 533,
                "attack_speed": "normal",
                "powder_slots": 3
            },
            {
                "drop": null,
                "name": "Illusory Idol",
                "type": "ingredient",
                "level": 84,
                "rarity": "TIER_2",
                "elements": [],
                "sub_type": null,
                "major_ids": [],
                "average_dps": null,
                "attack_speed": null,
                "powd
…