/v1/item
Item detail by id
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode 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_..."}
)
Example response
A real response from this endpoint, captured by the latest 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
}