Zum Inhalt springen
GET /v1/baro

Baro Ki\x27Teer (Void Trader)

Live testen

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

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

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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

{
    "data": {
        "name": "Baro Ki'Teer",
        "active": false,
        "arrival": "2026-06-12T13:00:00.000Z",
        "location": "Kronia Relay (Saturn)",
        "platform": "pc",
        "departure": "2026-06-14T13:00:00.000Z",
        "inventory": []
    },
    "meta": {
        "timestamp": "2026-06-01T00:03:44.940Z",
        "request_id": "61c6cfe3-dd08-47e2-8aa3-0c49a931b275"
    },
    "status": "ok",
    "message": "Void Trader retrieved",
    "success": true
}