Μετάβαση στο περιεχόμενο
GET /v1/fissures

Active void fissures

Δοκιμάστε το ζωντανά

10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.

Προσαρμοσμένες κεφαλίδες (προαιρετικά)
api.oanor.com/warframe-api

Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.

Λάβετε ένα κλειδί API

Αποσπάσματα κώδικα

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

Παράδειγμα απόκρισης

Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.

{
    "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:
…