/v1/meta
Usage notes
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/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/warframe-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/warframe-api/v1/meta");
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/meta",
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": {
"note": "Warframe game data. /v1/worldstate = everything happening now (Cetus/Vallis/Cambion/Zariman day-night cycles, sortie, Nightwave, Baro status, live counts); /v1/fissures (?steel_path=true) = active void fissures; /v1/invasions = invasions with rewards; /v1/sortie = the daily sortie & modifiers; /v1/nightwave = season challenges; /v1/baro = Baro Ki'Teer's location & inventory; /v1/search?q=Excalibur = search any item; /v1/warframe?name=Volt = a warframe's stats & abilities; /v1/weapon?name=Braton = a weapon's stats. Add ?platform=pc|ps4|xb1|swi|mob. Data from warframestat.us.",
"source": "warframestat.us",
"endpoints": [
"/v1/worldstate",
"/v1/fissures",
"/v1/invasions",
"/v1/sortie",
"/v1/nightwave",
"/v1/baro",
"/v1/search",
"/v1/warframe",
"/v1/weapon",
"/v1/meta"
]
},
"meta": {
"timestamp": "2026-06-01T00:03:50.078Z",
"request_id": "85f8b453-db08-459a-8587-6e752f3d79af"
},
"status": "ok",
"message": "Meta retrieved",
"success": true
}