/v1/search
Search items
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/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_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"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
}