/v1/list
List all breeds
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/dogbreeds-api/v1/list" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/dogbreeds-api/v1/list", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/dogbreeds-api/v1/list");
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/list",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"count": 50,
"total": 360,
"breeds": [
{
"id": "1",
"url": "https://www.fci.be/en/nomenclature/ENGLISH-POINTER-1.html",
"name": "ENGLISH POINTER",
"group": "Pointing Dogs",
"image": "https://www.fci.be/Nomenclature/Illustrations/001g07.jpg",
"names": {
"de": "ENGLISCHER POINTER",
"es": "POINTER INGLÉS",
"fr": "POINTER ANGLAIS"
},
"country": "Great Britain",
"section": "British and Irish Pointers and Setters",
"provisional": false,
"standard_pdf": "https://www.fci.be/Nomenclature/Standards/001g07-en.pdf"
},
{
"id": "2",
"url": "https://www.fci.be/en/nomenclature/ENGLISH-SETTER-2.html",
"name": "ENGLISH SETTER",
"group": "Pointing Dogs",
"image": "https://www.fci.be/Nomenclature/Illustrations/002g07.jpg",
"names": {
"de": "ENGLISCHER SETTER",
"es": "SETTER INGLÉS",
"fr": "SETTER ANGLAIS"
},
"country": "Great Britain",
"section": "British and Irish Pointers and Setters",
"provisional": false,
"standard_pdf": "https://www.fci.be/Nomenclature/Standards/002g07-en.pdf"
},
{
"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": "5",
"url": "https://www.fci.be/en/n
…