/v1/meta
Usage notes
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/eve-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/eve-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/eve-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/eve-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"note": "EVE Online data. Names resolve to ids automatically. /v1/status = Tranquility server status (players online); /v1/type?name=Tritanium = an item type (group, volume, mass, description); /v1/price?type=Tritanium = the market reference price (adjusted & average); /v1/orders?type=Tritanium®ion=The Forge = a regional order book with best buy/sell, spread and top orders (defaults to The Forge / Jita); /v1/system?name=Jita = a solar system (security status, planets, stargates, stations); /v1/region?name=The Forge = a region; /v1/alliance?name=Goonswarm Federation = an alliance (ticker, founded, executor); /v1/resolve?names=Jita,Tritanium = batch name→id lookup. Official CCP ESI data.",
"source": "EVE Online ESI (esi.evetech.net)",
"endpoints": [
"/v1/status",
"/v1/type",
"/v1/price",
"/v1/orders",
"/v1/system",
"/v1/region",
"/v1/alliance",
"/v1/resolve",
"/v1/meta"
]
},
"meta": {
"timestamp": "2026-06-01T00:03:36.588Z",
"request_id": "5319fec4-aef7-4742-8d4f-ec37f4fea8d3"
},
"status": "ok",
"message": "Meta retrieved",
"success": true
}