Ir al contenido
GET /v1/cat/breeds

Cat breeds with metadata (searchable)

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/animals-api

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

Obtener una clave API

Fragmentos de código

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

Respuesta de ejemplo

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

{
    "data": {
        "count": 1,
        "query": "siamese",
        "total": 1,
        "breeds": [
            {
                "id": "siam",
                "name": "Siamese",
                "indoor": false,
                "origin": "Thailand",
                "weight": "4 - 7 kg",
                "hairless": false,
                "life_span": "12 - 15",
                "description": "While Siamese cats are extremely fond of their people, they will follow you around and supervise your every move, being talkative and opinionated. They are a demanding and social cat, that do not like being left alone for long periods.",
                "temperament": "Active, Agile, Clever, Sociable, Loving, Energetic",
                "dog_friendly": 5,
                "energy_level": 5,
                "intelligence": 5,
                "wikipedia_url": "https://en.wikipedia.org/wiki/Siamese_(cat)",
                "child_friendly": 4,
                "affection_level": 5,
                "reference_image_id": "ai6Jps4sx"
            }
        ]
    },
    "meta": {
        "timestamp": "2026-06-01T00:04:41.604Z",
        "request_id": "479c7681-9c5a-4947-862e-166e95fd9e18"
    },
    "status": "ok",
    "message": "Cat breeds retrieved",
    "success": true
}