Ir al contenido
GET /v1/worldstate

Live worldstate summary

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/warframe-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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_..."}
)

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "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
}