/v1/resolve
Batch name->id resolver
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/eve-api/v1/resolve" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/eve-api/v1/resolve", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/eve-api/v1/resolve");
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/resolve",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"resolved": {
"systems": [
{
"id": 30000142,
"name": "Jita"
}
],
"alliances": [
{
"id": 99005382,
"name": "Jita Holding Inc."
}
],
"characters": [
{
"id": 243070982,
"name": "Tritanium"
}
],
"corporations": [
{
"id": 383768304,
"name": "jion ss Corp"
}
],
"inventory_types": [
{
"id": 34,
"name": "Tritanium"
}
]
}
},
"meta": {
"timestamp": "2026-06-01T00:03:35.697Z",
"request_id": "e6509e32-5572-48ae-9c7a-c8a552c136f9"
},
"status": "ok",
"message": "Resolved",
"success": true
}