/v1/meta
Usage notes
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
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_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"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
}