/v1/nightwave
Nightwave challenges
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
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_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo 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":
…