/v1/warframe
Warframe stats & abilities
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
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_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"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
}