# CoinGecko Token Detail Lookup

> CoinGecko Token Detail Lookup is a paid API for AI agents from etherealgoodsco.store, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Fetches comprehensive CoinGecko token metadata including all-time high, supply figures, market rank, and official links for a given cryptocurrency.

## Facts

- Endpoint: POST https://etherealgoodsco.store/crypto/token-detail
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/coingecko-token-detail-lookup-4ce0d71d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_twyUYbK3J6xVi56swo13c

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-token-detail-lookup-4ce0d71d -d '<json body>'
```

Example prompt: Pull the full CoinGecko token detail for Solana — I need the all-time high, circulating supply, market cap rank, and official project links.

## When to prefer this

Use this endpoint when you need rich, CoinGecko-sourced token fundamentals — specifically ATH, supply data, market rank, and official links — for a single token. Prefer this over a top-N market cap list when you need deep detail on one specific coin rather than a broad overview. Best suited for research, due-diligence, and dashboard-enrichment workflows where comprehensive metadata matters.

## Known failure modes

- Unknown or misspelled token ID returns a 404 or empty result
- Token not listed on CoinGecko returns an error or null response
- Rate limiting or upstream CoinGecko API downtime causes timeout
- Invalid request body format results in a 400 bad request
- Payment failure (x402) prevents the request from being processed

## How this service works

Full CoinGecko token detail: ATH, supply, rank, links

## Output

Returns a structured object with CoinGecko token data including: all-time high (ATH) price and date, circulating supply, total supply, max supply, market cap rank, and a collection of official links (website, whitepaper, Twitter, GitHub, etc.).

## Request schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/coingecko-token-detail-lookup-4ce0d71d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from etherealgoodsco.store](https://www.zero.xyz/host/etherealgoodsco.store/llms.txt)
