Zum Inhalt springen
GET /v1/weapon

Weapon stats

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

Beispiel-Response

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

{
    "data": {
        "weapon": {
            "name": "Braton",
            "type": "Rifle",
            "wiki": "https://wiki.warframe.com/w/Braton",
            "image": "https://cdn.warframestat.us/img/Braton.png",
            "damage": null,
            "reload": 2,
            "trigger": "Auto",
            "accuracy": 28.571428,
            "category": "Primary",
            "magazine": 45,
            "fire_rate": 8.75,
            "mastery_req": 0,
            "total_damage": 24,
            "status_chance": 0.060000002,
            "critical_chance": 0.12,
            "riven_disposition": 5,
            "critical_multiplier": 1.6
        }
    },
    "meta": {
        "timestamp": "2026-06-01T00:03:50.004Z",
        "request_id": "d44b81a9-a70c-440e-8dae-526aa09df47b"
    },
    "status": "ok",
    "message": "Weapon retrieved",
    "success": true
}