Zum Inhalt springen
GET /v1/meta

Usage notes

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/gw2-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

curl "https://api.oanor.com/gw2-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/gw2-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/gw2-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/gw2-api/v1/meta",
    headers={"x-oanor-key": "oanor_test_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "note": "Guild Wars 2 game data. /v1/item?id=19721 (or ?ids=1,2,3) = item detail (type, rarity, level, vendor value); /v1/price?id=19721 (or ?ids=) = live Trading Post buy/sell prices with gold breakdown; /v1/listings?id=19721 = the full order book (buy/sell depth); /v1/recipe?output=46742 (or ?input=, ?id=) = crafting recipes with ingredients & disciplines; /v1/worlds (?region=na|eu) = the server list with population; /v1/wvw = current World-vs-World match scores; /v1/currencies = in-game currencies; /v1/worldbosses = the world boss list. Prices are in copper (100 copper = 1 silver, 100 silver = 1 gold). Official GW2 API.",
        "source": "Guild Wars 2 official API (api.guildwars2.com)",
        "endpoints": [
            "/v1/item",
            "/v1/price",
            "/v1/listings",
            "/v1/recipe",
            "/v1/worlds",
            "/v1/wvw",
            "/v1/currencies",
            "/v1/worldbosses",
            "/v1/meta"
        ]
    },
    "meta": {
        "timestamp": "2026-06-01T00:03:43.184Z",
        "request_id": "2c26e13f-1841-4fa4-af09-b3df25b0d757"
    },
    "status": "ok",
    "message": "Meta retrieved",
    "success": true
}