/v1/fissures
Active void fissures
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/fissures" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/warframe-api/v1/fissures", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/warframe-api/v1/fissures");
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/fissures",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"count": 12,
"fissures": [
{
"node": "Rotuma (Kuva Fortress)",
"tier": "Requiem",
"enemy": "Grineer",
"expiry": "2026-06-01T00:05:32.219Z",
"is_storm": false,
"tier_num": 5,
"mission_type": "Mobile Defense",
"is_steel_path": true
},
{
"node": "Tamu (Kuva Fortress)",
"tier": "Requiem",
"enemy": "Grineer",
"expiry": "2026-06-01T00:00:27.520Z",
"is_storm": false,
"tier_num": 5,
"mission_type": "Disruption",
"is_steel_path": true
},
{
"node": "Ultor (Mars)",
"tier": "Lith",
"enemy": "Crossfire",
"expiry": "2026-06-01T00:23:34.808Z",
"is_storm": false,
"tier_num": 1,
"mission_type": "Extermination",
"is_steel_path": true
},
{
"node": "Circulus (Lua)",
"tier": "Omnia",
"enemy": "Grineer",
"expiry": "2026-06-01T00:02:49.889Z",
"is_storm": false,
"tier_num": 6,
"mission_type": "Survival",
"is_steel_path": true
},
{
"node": "Anthe (Saturn)",
"tier": "Meso",
"enemy": "Grineer",
"expiry": "2026-06-01T00:14:52.395Z",
"is_storm": false,
"tier_num": 2,
"mission_type": "Rescue",
"is_steel_path": true
},
{
"node": "Callisto (Jupiter)",
"tier": "Meso",
"enemy": "Corpus",
"expiry": "2026-06-01T00:29:01.263Z",
"is_storm": false,
"tier_num": 2,
"mission_type": "Interception",
"is_steel_path": true
},
{
"node": "Oxomoco (Void)",
"tier": "Axi",
"enemy": "Orokin",
"expiry": "2026-06-01T01:08:14.136Z",
"is_storm": false,
"tier_num": 4,
"mission_type": "Extermination",
"is_steel_path": true
},
{
"node": "Outer Terminus (Pluto)",
"tier": "Axi",
"enemy": "Corpus",
"expiry": "2026-06-01T00:42:44.066Z",
"is_storm": false,
"tier_num": 4,
"mission_type": "Defense",
"is_steel_path": true
},
{
"node": "Morax (Europa)",
"tier": "Neo",
"enemy": "Corpus",
"expiry": "2026-06-01T01:04:
…