# x402 Data Hub – Crypto Coin Details

> x402 Data Hub – Crypto Coin Details is a paid API for AI agents from data-hub-x402.vercel.app, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Fetches detailed information about a specific cryptocurrency coin by its CoinGecko coin ID

## Facts

- Endpoint: POST https://data-hub-x402.vercel.app/api/crypto/coin
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-data-hub-v2-crypto-coin-details-1fc65900
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qAbXYHEmWrRPbvmokQW4W

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-data-hub-v2-crypto-coin-details-1fc65900 -d '<json body>'
```

Example prompt: Can you pull up the full coin details for bitcoin (CoinGecko ID: bitcoin) from the x402 Data Hub?

## When to prefer this

Use this endpoint when you need structured coin-level detail for a specific cryptocurrency identified by its CoinGecko ID, especially within an x402 payment-enabled agent workflow where per-call micropayments are acceptable. Prefer this over free CoinGecko APIs when operating in a paid, agent-native environment already using the x402 protocol.

## Known failure modes

- Invalid or unknown CoinGecko coin ID returns an error or empty data
- Missing required 'id' field in request body causes a 400-level error
- Payment failure (insufficient USDC) results in 402 Payment Required
- Rate limiting or upstream CoinGecko unavailability may cause 500-level errors

## How this service works

16 paid endpoints - Crypto, Exchange, Yield, Governance, Sentiment

## Output

Returns a data object containing detailed information about the specified cryptocurrency coin, including metadata and market-related fields sourced from CoinGecko.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "id": {
   "type": "string",
   "description": "CoinGecko coin ID (e.g. bitcoin)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object",
   "description": "Coin details"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-data-hub-v2-crypto-coin-details-1fc65900/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from data-hub-x402.vercel.app](https://www.zero.xyz/host/data-hub-x402.vercel.app/llms.txt)
