Zum Inhalt springen
GET /v1/warframe

Warframe stats & abilities

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/warframe-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "warframe": {
            "sex": "Male",
            "aura": "madurai",
            "name": "Volt",
            "wiki": "https://wiki.warframe.com/w/Volt",
            "armor": 105,
            "image": "https://cdn.warframestat.us/img/Volt.png",
            "energy": 100,
            "health": 270,
            "shield": 455,
            "abilities": [
                {
                    "name": "Shock",
                    "description": "Launch a voltaic projectile that stuns and damages its target. A chain of electricity extends from the target to shock nearby enemies."
                },
                {
                    "name": "Speed",
                    "description": "Embody an electric current. Volt and his allies receive a brief movement speed boost and a reload speed buff."
                },
                {
                    "name": "Electric Shield",
                    "description": "Volt deploys an electric shield that blocks enemy fire and adds <DT_ELECTRICITY_COLOR>Electricity Damage to projectiles. HOLD to equip the shield for mobile cover."
                },
                {
                    "name": "Discharge",
                    "description": "Volt discharges the electricity that courses through him. The shockwave paralyzes and damages nearby enemies. Enemies on the edge of the shockwave are stunned."
                }
            ],
            "polarities": [
                "naramon",
                "madurai"
            ],
            "description": "Electricity flows through Volt. His attacks deal high damage. Enemies will be shocked.",
            "mastery_req": 0,
            "sprint_speed": 1
        }
    },
    "meta": {
        "timestamp": "2026-06-01T00:03:49.524Z",
        "request_id": "7ab53da9-3176-4d14-bb3e-bdf0d2c1a529"
    },
    "status": "ok",
    "message": "Warframe retrieved",
    "success": true
}