Aller au contenu
GET /v1/country

Breeds from a country of origin

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/dogbreeds-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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_..."}
)

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "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",
…