# DataVault Crypto Price Lookup

> DataVault Crypto Price Lookup is a paid API for AI agents from zetavault.vercel.app, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Fetches live cryptocurrency price data for a specified coin against a target currency

## Facts

- Endpoint: POST https://zetavault.vercel.app/api/crypto
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/datavault-crypto-price-lookup-91f6ba1e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__TWskQ18f5A3WEqFpd0NJ

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-crypto-price-lookup-91f6ba1e -d '<json body>'
```

Example prompt: What's the current price of Bitcoin in USD right now?

## When to prefer this

Use this endpoint when you need a simple, pay-per-call live crypto price lookup without managing API keys for CoinGecko or similar services. Best for one-off agent queries needing current coin prices in a specified currency at low cost ($0.02 USDC per call).

## Known failure modes

- Invalid coin identifier returns error or empty data object
- Unsupported vs_currency may return failure or null price
- Downstream price feed unavailable causes success:false
- Missing required fields results in 400-level error
- Payment failure via x402 prevents request from being processed

## 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 market/price information for the requested coin and a 'success' boolean indicating whether the request succeeded.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "coin": {
   "type": "string"
  },
  "vs_currency": {
   "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-crypto-price-lookup-91f6ba1e/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)
