Skip to content
GET /v1/nightwave

Nightwave challenges

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/warframe-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

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

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "tag": "Radio Legion Intermission15 Syndicate",
        "phase": 0,
        "expiry": "2026-11-02T00:00:00.000Z",
        "season": 17,
        "platform": "pc",
        "challenges": [
            {
                "title": "Researcher",
                "expiry": "2026-06-02T00:00:00.000Z",
                "is_daily": true,
                "is_elite": false,
                "reputation": 1000,
                "description": "Scan 25 Objects or Enemies"
            },
            {
                "title": "Doppelganger",
                "expiry": "2026-06-03T00:00:00.000Z",
                "is_daily": true,
                "is_elite": false,
                "reputation": 1000,
                "description": "Deploy a Specter"
            },
            {
                "title": "Communicator",
                "expiry": "2026-06-04T00:00:00.000Z",
                "is_daily": true,
                "is_elite": false,
                "reputation": 1000,
                "description": "Mark 5 Mods or Resources"
            },
            {
                "title": "Mission Complete IX",
                "expiry": "2026-06-08T00:00:00.000Z",
                "is_daily": false,
                "is_elite": false,
                "reputation": 4500,
                "description": "Complete any 15 missions"
            },
            {
                "title": "Eximus Eliminator IX",
                "expiry": "2026-06-08T00:00:00.000Z",
                "is_daily": false,
                "is_elite": false,
                "reputation": 4500,
                "description": "Kill 30 Eximus"
            },
            {
                "title": "Not a Warning Shot IX",
                "expiry": "2026-06-08T00:00:00.000Z",
                "is_daily": false,
                "is_elite": false,
                "reputation": 4500,
                "description": "Kill 500 Enemies"
            },
            {
                "title": "Season Weekly Collector",
                "expiry": "2026-06-08T00:00:00.000Z",
                "is_daily": false,
                "is_elite": false,
                "reputation": 4500,
                "description": "[PH] Season Weekly Collector Desc"
            },
            {
                "title": "Venus Fisher",
                "expiry": "2026-06-08T00:00:00.000Z",
                "is_daily": false,
                "is_elite": false,
                "reputation": 4500,
                "description": "Catch 3 Rare Servofish in the Orb Vallis"
            },
            {
                "title": "Sortie Expert",
                "expiry": "2026-06-08T00:00:00.000Z",
                "is_daily": false,
                "is_elite": true,
                "reputation": 7000,
                "description": "Complete 3 Sorties"
            },
            {
                "title": "Unlock Relics",
                "expiry": "2026-06-08T00:00:00.000Z",
                "is_daily": false,
                "is_elite": 
…