/v1/search
Search breeds across languages
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
curl "https://api.oanor.com/dogbreeds-api/v1/search" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/dogbreeds-api/v1/search", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/dogbreeds-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/dogbreeds-api/v1/search",
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": 25,
"query": "terrier",
"total": 39,
"breeds": [
{
"id": "3",
"url": "https://www.fci.be/en/nomenclature/KERRY-BLUE-TERRIER-3.html",
"name": "KERRY BLUE TERRIER",
"group": "Terriers",
"image": null,
"names": {
"de": "KERRY BLUE TERRIER",
"es": "KERRY BLUE TERRIER",
"fr": "TERRIER KERRY BLUE"
},
"country": "Ireland",
"section": "Large and medium sized Terriers",
"provisional": false,
"standard_pdf": "https://www.fci.be/Nomenclature/Standards/003g03-en.pdf"
},
{
"id": "4",
"url": "https://www.fci.be/en/nomenclature/CAIRN-TERRIER-4.html",
"name": "CAIRN TERRIER",
"group": "Terriers",
"image": "https://www.fci.be/Nomenclature/Illustrations/004g03.jpg",
"names": {
"de": "CAIRN TERRIER",
"es": "CAIRN TERRIER",
"fr": "CAIRN TERRIER"
},
"country": "Great Britain",
"section": "Small sized Terriers",
"provisional": false,
"standard_pdf": "https://www.fci.be/Nomenclature/Standards/004g03-en.pdf"
},
{
"id": "7",
"url": "https://www.fci.be/en/nomenclature/AIREDALE-TERRIER-7.html",
"name": "AIREDALE TERRIER",
"group": "Terriers",
"image": "https://www.fci.be/Nomenclature/Illustrations/007g03.jpg",
"names": {
"de": "AIREDALE TERRIER",
"es": "AIREDALE TERRIER",
"fr": "AIREDALE TERRIER"
},
"country": "Great Britain",
"section": "Large and medium sized Terriers",
"provisional": false,
"standard_pdf": "https://www.fci.be/Nomenclature/Standards/007g03-en.pdf"
},
{
"id": "8",
"url": "https://www.fci.be/en/nomenclature/AUSTRALIAN-TERRIER-8.html",
"name": "AUSTRALIAN TERRIER",
"group": "Terriers",
"image": "https://www.fci.be/Nomenclature/Illustrations/008g03.jpg",
"names": {
"de": "AUSTRALIAN TERRIER",
"es": "AUSTRALIAN TERRIER",
"fr": "TERRIER AUSTRALIEN"
},
"country": "Australia",
"section": "Small sized Terriers",
"provisional": false,
"standard_pdf": "https://www.fci.be/Nomenclature/Standards/008g03-en.pdf"
},
{
"id": "9",
"url": "https://www.fc
…