Naar de inhoud
GET /v1/search

Search & filter Digimon

Probeer het live

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

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

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

Verkrijg een API-sleutel

Codefragmenten

curl "https://api.oanor.com/digimon-api/v1/search" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/digimon-api/v1/search", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/digimon-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/digimon-api/v1/search",
    headers={"x-oanor-key": "oanor_test_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "page": 0,
        "count": 8,
        "total": 8,
        "results": [
            {
                "id": 34,
                "name": "Greymon",
                "image": "https://digi-api.com/images/digimon/w/Greymon.png"
            },
            {
                "id": 396,
                "name": "Greymon (Blue)",
                "image": "https://digi-api.com/images/digimon/w/Greymon_(Blue).png"
            },
            {
                "id": 730,
                "name": "Greymon (X-Antibody)",
                "image": "https://digi-api.com/images/digimon/w/Greymon_(X-Antibody).png"
            },
            {
                "id": 1006,
                "name": "Greymon (2010 Anime Version)",
                "image": "https://digi-api.com/images/digimon/w/Greymon_(2010_Anime_Version).png"
            },
            {
                "id": 1007,
                "name": "Greymon (Ash)",
                "image": "https://digi-api.com/images/digimon/w/Greymon_(Ash).png"
            },
            {
                "id": 1008,
                "name": "Greymon O",
                "image": "https://digi-api.com/images/digimon/w/Greymon_O.png"
            },
            {
                "id": 1009,
                "name": "Greymon (Skull Knightmon)",
                "image": "https://digi-api.com/images/digimon/w/Greymon_(Skull_Knightmon).png"
            },
            {
                "id": 1425,
                "name": "Greymon (Blue) (X-Antibody)",
                "image": "https://digi-api.com/images/digimon/w/Greymon_(Blue)_(X-Antibody).png"
            }
        ],
        "page_size": 8,
        "total_pages": 1
    },
    "meta": {
        "timestamp": "2026-06-01T00:04:25.947Z",
        "request_id": "9434fcdc-f534-4fd3-9cb7-49ac66fff8da"
    },
    "status": "ok",
    "message": "Digimon searched",
    "success": true
}