# Cat Breed Database

> Cat Breed Database is a paid API for AI agents from engedi.digi-life17.workers.dev, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-15).

Returns a database of cat breeds with associated information

## Facts

- Endpoint: GET https://engedi.digi-life17.workers.dev/api/catfact/breeds
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cat-breed-database-c4edeea6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_H5bdmJGMmQykiYdKyU_8q

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability cat-breed-database-c4edeea6
```

Example prompt: Can you pull up the full cat breed database so I can see all the breeds and their details?

## When to prefer this

Use this endpoint when you need a quick, low-cost lookup of cat breed reference data without needing to scrape or aggregate from multiple sources yourself. Best suited for agents building pet-related apps, answering breed questions, or enriching cat-related data pipelines.

## Known failure modes

- Payment required or failed (402 error)
- Service temporarily unavailable or Cloudflare Worker error
- Empty or incomplete breed data if upstream source is unavailable
- Stale cached data if the source has not been refreshed recently

## How this service works

Returns a list of cat breed-origin records sourced from Cat Fact data. Includes metadata such as confidence, freshness, and last updated time.

## Output

Returns a data object containing cat breed entries, along with metadata fields indicating whether the response was cached, the data source, a confidence score, and a last-updated timestamp.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {}
  },
  "output": {
   "type": "object",
   "properties": {
    "data": {
     "type": "object"
    },
    "_meta": {
     "type": "object",
     "properties": {
      "cached": {
       "type": "boolean"
      },
      "source": {
       "type": "string"
      },
      "confidence": {
       "type": "number"
      },
      "last_updated": {
       "type": "string"
      }
     }
    },
    "success": {
     "type": "boolean"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cat-breed-database-c4edeea6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from engedi.digi-life17.workers.dev](https://www.zero.xyz/host/engedi.digi-life17.workers.dev/llms.txt)
