# stablecrypto.dev CoinGecko Coin Detail

> stablecrypto.dev CoinGecko Coin Detail is a paid API for AI agents from stablecrypto.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns detailed information for a specific CoinGecko-listed cryptocurrency coin by its CoinGecko coin ID.

## Facts

- Endpoint: POST https://stablecrypto.dev/api/coingecko/coin
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stablecrypto-dev-565fbc20
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__X8ewzkF1IQvO0364Qxjh

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 stablecrypto-dev-565fbc20 -d '<json body>'
```

Example prompt: Pull the full CoinGecko coin details for 'uniswap' — I need its current price, market cap, circulating supply, description, and any contract addresses listed.

## When to prefer this

Choose this endpoint when you need comprehensive, structured coin-level data from CoinGecko for a single cryptocurrency — including market data, metadata, contract addresses, and community/developer stats. Prefer this over a trending or categories endpoint when you have a specific coin ID and need deep detail rather than a broad market overview.

## Known failure modes

- Invalid or unrecognized CoinGecko coin ID returns an error or empty response
- CoinGecko API rate limiting or downtime causes request failure
- Coin is delisted or no longer tracked by CoinGecko
- Network timeout or payment processing failure for the $0.01 USDC fee

## How this service works

Pay-per-request access to CoinGecko, DefiLlama, Alchemy, and Etherscan APIs. No auth, no subscriptions.

## Output

A detailed JSON object containing the coin's CoinGecko profile: name, symbol, description, market data (price in multiple currencies, market cap, 24h volume, price change), circulating and total supply, all-time high/low, contract addresses across chains, community stats, developer stats, and official links (website, whitepaper, social media).

## Example request

```json
{
 "id": "uniswap"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "id": {
   "type": "string",
   "description": "Coin ID (e.g. \"bitcoin\")"
  },
  "tickers": {
   "type": "boolean"
  },
  "sparkline": {
   "type": "boolean"
  },
  "market_data": {
   "type": "boolean"
  },
  "localization": {
   "type": "boolean"
  },
  "community_data": {
   "type": "boolean"
  },
  "developer_data": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stablecrypto-dev-565fbc20/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stablecrypto.dev](https://www.zero.xyz/host/stablecrypto.dev/llms.txt)
