# DataVault Dog Image Fetcher

> DataVault Dog Image Fetcher is a paid API for AI agents from zetavault.vercel.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Fetches random or breed-specific dog images by breed name and count

## Facts

- Endpoint: POST https://zetavault.vercel.app/api/dog-image
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/datavault-dog-image-fetcher-df5093da
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uC-VGNjMPu7-HlP_rNE7Y

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 datavault-dog-image-fetcher-df5093da -d '<json body>'
```

Example prompt: Can you fetch 3 dog images of golden retrievers for me?

## When to prefer this

Use this endpoint when you need to retrieve one or more dog images by breed on demand, especially in a pay-per-call context using USDC on Base. Prefer this over static image databases when you want a simple, programmatic dog image fetch with breed filtering.

## Known failure modes

- Invalid or unrecognized breed name returns an error or empty result
- Count value of 0 or negative integer may cause a validation error
- Network or upstream image source unavailability may cause failure
- Payment not included or insufficient USDC causes 402 response

## How this service works

54 endpoints spanning local tools, live data feeds, and AI-powered text processing. Pay-per-call with USDC on Base.

## Output

Returns a JSON object with a 'data' field containing dog image data (likely URLs or image metadata) and a 'success' boolean indicating whether the request succeeded.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "breed": {
   "type": "string"
  },
  "count": {
   "type": "integer"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/datavault-dog-image-fetcher-df5093da/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from zetavault.vercel.app](https://www.zero.xyz/host/zetavault.vercel.app/llms.txt)
