Vai al contenuto
GET /v1/meta

Service description & endpoints

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/poe-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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_..."}
)

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo 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
}