Ir al contenido
GET /v1/reference

Browse a taxonomy

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/digimon-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "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
}