# CoinGecko Coin Data Lookup

> CoinGecko Coin Data Lookup is a paid API for AI agents from endpointsxrt.vercel.app, paid per call via x402, $0.0674/call, status unknown (last checked 2026-09-15).

Fetches detailed data for a specific cryptocurrency coin by its CoinGecko coin ID

## Facts

- Endpoint: POST https://endpointsxrt.vercel.app/api/coingecko-coin
- Price: $0.0674/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/coingecko-coin-data-lookup-f3c87f98
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rlnRDbCQ-oGHC1PABz-XV

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 coingecko-coin-data-lookup-f3c87f98 -d '<json body>'
```

Example prompt: Can you pull up the full CoinGecko data for bitcoin — I want to see its current price, market cap, and any other details available?

## When to prefer this

Use this endpoint when you need comprehensive coin data for a single cryptocurrency by its CoinGecko coin ID (e.g. 'bitcoin', 'ethereum', 'solana') and want to pay per call via x402 on Base chain without a CoinGecko API subscription. Prefer this over direct CoinGecko API access when operating in an autonomous agent context that uses x402 micropayment flows.

## Known failure modes

- Invalid or unknown coin ID returns an error or empty response
- Coin ID not found on CoinGecko results in a 404 or error payload
- Payment failure due to insufficient USDC balance on Base chain prevents the call
- Network timeout if CoinGecko upstream API is slow or unavailable
- Malformed request body without the 'id' field may return a validation error

## How this service works

All-in-one API hub: Social Media, Jobs, Finance, Crypto, and Tools. Pay-per-call with x402 protocol on Base chain.

## Output

Returns a JSON object containing detailed coin data from CoinGecko for the requested coin ID, likely including current price, market capitalization, trading volume, price changes, and token metadata such as name, symbol, and description.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "id": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/coingecko-coin-data-lookup-f3c87f98/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from endpointsxrt.vercel.app](https://www.zero.xyz/host/endpointsxrt.vercel.app/llms.txt)
