/v1/resolve
Batch name->id resolver
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
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_..."}
)
Example response
A real response from this endpoint, captured by the latest 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
}