Zum Inhalt springen
GET /v1/alliance

Alliance by name/id

Live testen

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

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

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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

{
    "data": {
        "alliance": {
            "id": 1354830081,
            "name": "Goonswarm Federation",
            "ticker": "CONDI",
            "founded": "2010-06-01T05:36:00Z",
            "creator_id": 240070320,
            "faction_id": null,
            "executor_corporation_id": 1344654522
        }
    },
    "meta": {
        "timestamp": "2026-06-01T00:03:36.543Z",
        "request_id": "ae3aecca-3183-4b73-b024-b5abb8d2ef8e"
    },
    "status": "ok",
    "message": "Alliance retrieved",
    "success": true
}