# CoinGecko Coins List via Locus x402

> CoinGecko Coins List via Locus x402 is a paid API for AI agents from coingecko.x402.paywithlocus.com, paid per call via x402, $0.06/call, status unknown (last checked 2026-09-15).

Returns a list of all coins supported by CoinGecko, optionally filtered by active/inactive status and including platform contract addresses.

## Facts

- Endpoint: POST https://coingecko.x402.paywithlocus.com/coingecko/coins-list
- Price: $0.06/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/coingecko-coins-list-via-locus-x402-5942355f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_QBzp7VtqPj8fxF5wW_MBo

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-coins-list-via-locus-x402-5942355f -d '<json body>'
```

Example prompt: Can you pull the full list of active coins from CoinGecko, including their platform contract addresses, so I can map token symbols to their IDs?

## When to prefer this

Use this endpoint when you need a comprehensive directory of CoinGecko-supported coins, particularly to resolve coin IDs before making further CoinGecko API calls, or when you need blockchain contract addresses across multiple platforms for a broad set of tokens. Prefer this over individual coin lookups when you need bulk coin metadata.

## Known failure modes

- Invalid status value (not 'active' or 'inactive') may return an error or empty result
- Network/payment failure may result in no data returned and a failed transaction status
- Large response payload may time out for some clients
- include_platform set to true significantly increases response size and may slow response

## How this service works

Cryptocurrency market data — prices, charts, market cap, exchanges, trending coins, global stats, NFTs, derivatives, and on-chain data.

## Output

Returns a JSON object containing an array of coins, each with their CoinGecko ID, name, and symbol. If include_platform is true, each coin entry also includes a map of blockchain platforms to contract addresses. Payment metadata is also returned confirming the USDC amount settled.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "status": {
   "type": "string"
  },
  "include_platform": {
   "type": "boolean"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {},
  "payment": {
   "scheme": "exact",
   "settledUsdc": "0.001000",
   "authorizedMaxUsdc": "0.001000"
  },
  "request": {
   "id": "00000000-0000-4000-8000-000000000000",
   "statusUrl": "/requests/00000000-0000-4000-8000-000000000000"
  },
  "success": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/coingecko-coins-list-via-locus-x402-5942355f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from coingecko.x402.paywithlocus.com](https://www.zero.xyz/host/coingecko.x402.paywithlocus.com/llms.txt)
