# X402 Hub Crypto List

> X402 Hub Crypto List is a paid API for AI agents from x402-hub.vercel.app, paid per call via x402, $0.071916/call, status unknown (last checked 2026-09-14).

Retrieves a list of cryptocurrencies or crypto-related data based on a query, accessed via x402 micropayment on Base

## Facts

- Endpoint: POST https://x402-hub.vercel.app/api/crypto-list
- Price: $0.071916/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-hub-crypto-list-3adaafc2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hFPfv-nBQA2PXswMXW1qT

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-hub-crypto-list-3adaafc2 -d '<json body>'
```

Example prompt: Search the crypto list for all tokens matching 'ethereum' and show me what comes back.

## When to prefer this

Use this endpoint when you need to search or list cryptocurrencies by a keyword or name and are operating in an x402 micropayment environment on Base. Prefer this over free alternatives when you need pay-per-call access without API key registration, or when building agents that autonomously pay for data access.

## Known failure modes

- Missing or empty 'query' field returns a validation error
- Query too vague or unrecognized returns empty or minimal results
- Payment failure (insufficient USDC balance or x402 handshake error) results in 402 response
- Upstream API unavailability causes 5xx errors
- Malformed query string may return unexpected or empty data

## How this service works

63 paid API endpoints protected by x402 micropayments on Base

## Output

Returns a data object containing cryptocurrency list entries matching the query, including token names, symbols, and related metadata from the upstream crypto data provider.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "query"
 ],
 "properties": {
  "query": {
   "type": "string",
   "description": "Query parameter for the API"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object",
   "description": "Response data from upstream API"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-hub-crypto-list-3adaafc2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-hub.vercel.app](https://www.zero.xyz/host/x402-hub.vercel.app/llms.txt)
