/v1/search
Search items
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/warframe-api/v1/search" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/warframe-api/v1/search", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/warframe-api/v1/search");
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/search",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"count": 3,
"items": [
{
"name": "Excalibur",
"type": "Warframe",
"wiki": "https://wiki.warframe.com/w/Excalibur",
"image": "https://cdn.warframestat.us/img/Excalibur.png",
"category": "Warframes",
"description": "Excalibur epitomizes the warrior spirit. His master swordsmanship deals high damage. He is the embodiment of martial excellence."
},
{
"name": "Excalibur Prime",
"type": "Warframe",
"wiki": "https://wiki.warframe.com/w/Excalibur%2FPrime",
"image": "https://cdn.warframestat.us/img/ExcaliburPrime.png",
"category": "Warframes",
"description": "Excalibur Prime is the epitome of mobility and offense, and features the same abilities as Excalibur, but has unique mod polarities installed allowing for greater customization."
},
{
"name": "Excalibur Umbra",
"type": "Warframe",
"wiki": "https://wiki.warframe.com/w/Excalibur_Umbra",
"image": "https://cdn.warframestat.us/img/ExcaliburUmbra.png",
"category": "Warframes",
"description": "From the shadow of the long night emerges a new Excalibur."
}
],
"query": "Excalibur",
"total": 3
},
"meta": {
"timestamp": "2026-06-01T00:03:48.999Z",
"request_id": "d1f77f1f-c5ae-49b5-85fc-31e51096d536"
},
"status": "ok",
"message": "Search completed",
"success": true
}