/v1/item
Item detail by id
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/gw2-api/v1/item" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/gw2-api/v1/item", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/gw2-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/gw2-api/v1/item",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"item": {
"id": 19721,
"icon": "https://render.guildwars2.com/file/18CE5D78317265000CF3C23ED76AB3CEE86BA60E/65941.png",
"name": "Glob of Ectoplasm",
"type": "Trophy",
"flags": [],
"level": 0,
"rarity": "Exotic",
"details": null,
"chat_link": "[&AgEJTQAA]",
"description": "Salvage Item",
"vendor_price": {
"gold": 0,
"copper": 256,
"silver": 2,
"formatted": "0g 2s 56c",
"copper_rem": 56
},
"vendor_value": 256
}
},
"meta": {
"timestamp": "2026-06-01T00:03:41.781Z",
"request_id": "0ba3b588-b36d-4a6e-b1af-169baa647612"
},
"status": "ok",
"message": "Item retrieved",
"success": true
}