# DataVault Quote Endpoint

> DataVault Quote Endpoint is a paid API for AI agents from zetdatavault.vercel.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Retrieves a quote or price estimate for a tagged data item or content piece by author and count via the DataVault pay-per-call API

## Facts

- Endpoint: POST https://zetdatavault.vercel.app/api/quote
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/datavault-quote-endpoint-b7a30c7d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0lcy0qPCwIcp07Z2kHCxX

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-quote-endpoint-b7a30c7d -d '<json body>'
```

Example prompt: Can you fetch me 3 quotes tagged 'inspiration' by author 'Maya Angelou' from DataVault?

## When to prefer this

Use this endpoint when you need to retrieve quoted or tagged data items from DataVault by a specific tag category and optionally filter by author or quantity. Prefer this over generic web search when you need structured, pay-per-call data with attribution.

## Known failure modes

- Invalid or unrecognized tag returns empty data or error
- Author not found results in empty data object with success false
- Count value of zero or negative integer causes validation error
- Payment failure (insufficient USDC) results in 402 response blocking the call
- Missing required fields returns a 400 bad request error

## 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 'success' boolean and a 'data' object containing the quote or data payload matching the requested tag, author, and count criteria.

## Request schema (JSON Schema)

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

## 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-quote-endpoint-b7a30c7d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from zetdatavault.vercel.app](https://www.zero.xyz/host/zetdatavault.vercel.app/llms.txt)
