/v1/worldstate
Live worldstate summary
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/warframe-api/v1/worldstate" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/warframe-api/v1/worldstate", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/warframe-api/v1/worldstate");
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/worldstate",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"counts": {
"news": 14,
"alerts": 3,
"events": 1,
"fissures": 30,
"invasions": 4
},
"cycles": {
"cetus": {
"short": null,
"state": "day",
"expiry": "2026-06-01T00:18:00.000Z",
"time_left": "17m 35s"
},
"earth": {
"short": null,
"state": "day",
"expiry": "2026-06-01T04:00:00.227Z",
"time_left": "3h 59m 35s"
},
"duviri": {
"short": null,
"state": "envy",
"expiry": "2026-06-01T00:00:00.000Z",
"time_left": null
},
"vallis": {
"short": null,
"state": "cold",
"expiry": "2026-06-01T00:13:28.000Z",
"time_left": null
},
"cambion": {
"short": null,
"state": "fass",
"expiry": "2026-06-01T00:18:00.000Z",
"time_left": "17m 35s"
},
"zariman": {
"short": null,
"state": "grineer",
"expiry": "2026-06-01T01:08:00.000Z",
"time_left": "1h 7m 30s"
}
},
"sortie": {
"boss": "Mutalist Alad V",
"expiry": "2026-06-01T16:00:00.000Z",
"faction": "Infestation"
},
"platform": "pc",
"nightwave": {
"tag": "Radio Legion Intermission15 Syndicate",
"active_challenges": 10
},
"timestamp": "2026-06-01T00:00:18.000Z",
"void_trader": {
"active": false,
"arrival": "2026-06-12T13:00:00.000Z",
"location": "Kronia Relay (Saturn)",
"departure": "2026-06-14T13:00:00.000Z"
}
},
"meta": {
"timestamp": "2026-06-01T00:03:48.501Z",
"request_id": "03478ff9-40eb-46a0-9a9d-9fdea65099cf"
},
"status": "ok",
"message": "Worldstate retrieved",
"success": true
}