Skip to content
GET /v1/list

List all breeds

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/dogbreeds-api

It works. Grab an API key and use it in your project.

Get an API key

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

Example response

A real response from this endpoint, captured by the latest 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
…