# x402 Multi-Tool API — Crypto Markets

> x402 Multi-Tool API — Crypto Markets is a paid API for AI agents from x402deploy.vercel.app, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-13).

Returns real-time cryptocurrency market data (price, market cap rank, 24h change) for multiple coins in a specified quote currency

## Facts

- Endpoint: POST https://x402deploy.vercel.app/api/markets
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-multi-tool-api-crypto-markets-70f9d83f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_26Mpex5pY5drLXuXGMp8a

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 x402-multi-tool-api-crypto-markets-70f9d83f -d '<json body>'
```

Example prompt: Pull the top 10 cryptocurrency prices right now quoted in USD, including their 24-hour price change and market cap rank.

## When to prefer this

Choose this endpoint when you need a ranked list of multiple cryptocurrency prices and 24h changes in a single call, especially when operating in a pay-per-request agent context with no API key setup. Prefer over full exchange APIs when you want lightweight market overview data without authentication overhead.

## Known failure modes

- Invalid or unsupported quote currency (vs) returns empty or error response
- Payment not included or insufficient USDC causes 402 Payment Required response
- Limit value too high may return partial results or timeout
- Upstream price feed unavailable causes stale or missing data

## How this service works

Pay-per-request data toolkit for AI agents — 13 no-auth tools, $0.005 USDC each via x402. Web search, read URL, crypto price/markets/trending, Wikipedia, news headlines, weather, FX rates, IP geolocation, DNS lookup, stock quotes, and domain WHOIS.

## Output

Returns a JSON object with the quote currency, total count, and an array of coin objects each containing the coin name, symbol, current price, market cap rank, and 24-hour percentage price change.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "vs": {
   "type": "string",
   "description": "Quote currency"
  },
  "limit": {
   "type": "integer"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "vs": "usd",
 "coins": [
  {
   "name": "Bitcoin",
   "price": 62080,
   "symbol": "BTC",
   "market_cap_rank": 1,
   "change_24h_percent": 1.4
  }
 ],
 "total": 1
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-multi-tool-api-crypto-markets-70f9d83f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402deploy.vercel.app](https://www.zero.xyz/host/x402deploy.vercel.app/llms.txt)
