Cataas · Schema

CountResponse

Total count of cats in the catalog.

AnimalsCatsImageOpen-SourcePublic APIs

Properties

Name Type Description
count integer Total number of cats in the catalog.
View JSON Schema on GitHub

JSON Schema

count-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/cataas/refs/heads/main/json-schema/count-response-schema.json",
  "title": "CountResponse",
  "description": "Total count of cats in the catalog.",
  "type": "object",
  "properties": {
    "count": {
      "type": "integer",
      "description": "Total number of cats in the catalog.",
      "example": 9384
    }
  },
  "required": [
    "count"
  ]
}