/v1/cat/breeds
Cat breeds with metadata (searchable)
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
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_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"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
}