/v1/item
Search the item database
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
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_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste 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
…