/v1/meta
Service description & endpoints
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/poe-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/poe-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/poe-api/v1/meta");
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/poe-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"service": "poe-api",
"endpoints": {
"GET /v1/item": "A single item by name (name=).",
"GET /v1/meta": "This document.",
"GET /v1/items": "Search/filter the item catalogue (q=, category=, unique=1, limit=).",
"GET /v1/stats": "Search modifier stats (q=, type=, limit=).",
"GET /v1/leagues": "Current leagues (realm=pc|xbox|sony).",
"GET /v1/categories": "Item categories with counts."
},
"description": "Path of Exile game reference data via Grinding Gear Games' public APIs: the current leagues; the full item catalogue (base types and unique items across Accessories, Armour, Weapons, Gems, Currency, Divination Cards, Maps and more); the item categories; and the trade modifier-stat dictionary. Real data, no key."
},
"meta": {
"timestamp": "2026-06-08T01:18:25.487Z",
"request_id": "02e3e994-e8eb-484a-9058-ad86c08ad3a7"
},
"status": "ok",
"message": "Meta",
"success": true
}