Naar de inhoud
GET /v1/reference

Browse a taxonomy

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

Voorbeeldrespons

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

{
    "data": {
        "type": "levels",
        "count": 5,
        "results": [
            {
                "id": 1,
                "name": "Baby II"
            },
            {
                "id": 2,
                "name": "Adult"
            },
            {
                "id": 3,
                "name": "Perfect"
            },
            {
                "id": 4,
                "name": "Child"
            },
            {
                "id": 5,
                "name": "Baby I"
            }
        ],
        "description": "An Evolution Stage, also referred to as Level and Generation, is the level of development a Digimon is at."
    },
    "meta": {
        "timestamp": "2026-06-01T00:04:26.035Z",
        "request_id": "6f8a0130-e79d-47aa-9f72-ef3e5c0d1965"
    },
    "status": "ok",
    "message": "Reference retrieved",
    "success": true
}