Naar de inhoud
GET /v1/search

Search items

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/warframe-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste 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
}