/v1/country
Breeds from a country of origin
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/country" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/dogbreeds-api/v1/country", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/dogbreeds-api/v1/country");
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/country",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"count": 31,
"breeds": [
{
"id": "97",
"url": "https://www.fci.be/en/nomenclature/GERMAN-SPITZ-97.html",
"name": "GERMAN SPITZ",
"group": "Spitz and primitive types",
"image": "https://www.fci.be/Nomenclature/Illustrations/097g05-1.jpg",
"names": {
"de": "DEUTSCHER SPITZ",
"es": "SPITZ ALEMÁN",
"fr": "SPITZ ALLEMAND"
},
"country": "Germany",
"section": "European Spitz",
"provisional": false,
"standard_pdf": "https://www.fci.be/Nomenclature/Standards/097g05-en.pdf"
},
{
"id": "98",
"url": "https://www.fci.be/en/nomenclature/GERMAN-WIRE-HAIRED-POINTING-DOG-98.html",
"name": "GERMAN WIRE- HAIRED POINTING DOG",
"group": "Pointing Dogs",
"image": "https://www.fci.be/Nomenclature/Illustrations/098g07.jpg",
"names": {
"de": "DEUTSCH DRAHTHAAR",
"es": "PERRO DE MUESTRA ALEMÁN DE PELO DURO",
"fr": "CHIEN D'ARRET ALLEMAND A POIL DUR"
},
"country": "Germany",
"section": "Continental Pointing Dogs",
"provisional": false,
"standard_pdf": "https://www.fci.be/Nomenclature/Standards/098g07-en.pdf"
},
{
"id": "99",
"url": "https://www.fci.be/en/nomenclature/WEIMARANER-99.html",
"name": "WEIMARANER",
"group": "Pointing Dogs",
"image": "https://www.fci.be/Nomenclature/Illustrations/099g07-1.jpg",
"names": {
"de": "WEIMARANER",
"es": "WEIMARANER",
"fr": "BRAQUE DE WEIMAR"
},
"country": "Germany",
"section": "Continental Pointing Dogs",
"provisional": false,
"standard_pdf": "https://www.fci.be/Nomenclature/Standards/099g07-en.pdf"
},
{
"id": "100",
"url": "https://www.fci.be/en/nomenclature/WESTPHALIAN-DACHSBRACKE-100.html",
"name": "WESTPHALIAN DACHSBRACKE",
"group": "Scent hounds and related breeds",
"image": null,
"names": {
"de": "WESTFÄLISCHE DACHSBRACKE",
"es": "PERRO TEJONERO DE WESTFALIA",
"fr": "BASSET DE WESTPHALIE"
},
"country": "Germany",
"section": "Scent hounds",
"provisional": false,
"standard_pdf": "https://www.fci.be/Nomenclature/Standards/100g06-en.pdf"
},
{
"id": "102",
…