Dog CEO Breeds API

Operations for listing all available dog breeds

Operations 1

GET /breeds/list/all List all breeds #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/dog-ceo-breeds-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

dog-ceo-breeds-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Dog CEO Breed Breeds API
  description: 'Free REST API providing random dog images organized by breed and sub-breed from 120+ breeds. Backed by the Stanford Dogs Dataset and community-contributed photos. No authentication or API key required. All endpoints return JSON with image URLs served via CDN. Open-source under the MIT license.

    '
  version: 1.0.0
  contact:
    name: Dog CEO API
    url: https://dog.ceo/dog-api/
  license:
    name: MIT
    url: https://github.com/ElliottLandsborough/dog-ceo-api/blob/main/LICENSE
servers:
- url: https://dog.ceo/api
  description: Production server
security: []
tags:
- name: Breeds
  description: Operations for listing all available dog breeds
paths:
  /breeds/list/all:
    get:
      operationId: listAllBreeds
      summary: List all breeds
      description: 'Returns a map of all dog breeds and their sub-breeds. The key is the breed name and the value is an array of sub-breed names (empty array if no sub-breeds exist).

        '
      tags:
      - Breeds
      responses:
        '200':
          description: Successful response with all breeds
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BreedsListResponse'
              example:
                message:
                  hound:
                  - afghan
                  - basset
                  - blood
                  - english
                  retriever:
                  - golden
                  - curly
                  terrier: []
                status: success
components:
  schemas:
    BreedsListResponse:
      type: object
      required:
      - message
      - status
      properties:
        message:
          type: object
          additionalProperties:
            type: array
            items:
              type: string
          description: 'Map of breed names to arrays of sub-breed names. Empty array indicates no sub-breeds.

            '
          example:
            hound:
            - afghan
            - basset
            retriever:
            - golden
            terrier: []
        status:
          $ref: '#/components/schemas/ApiStatus'
    ApiStatus:
      type: string
      enum:
      - success
      - error
      description: Indicates whether the API call was successful or encountered an error