# CoinGecko Trending Crypto Coins

> CoinGecko Trending Crypto Coins is a paid API for AI agents from api.kadec0.xyz, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns the most-searched crypto coins on CoinGecko right now, including rank, price, and market-cap rank.

## Facts

- Endpoint: GET https://api.kadec0.xyz/v1/trending-coins
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/coingecko-trending-crypto-coins-8ef8ad0d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_O1BIQNF49IX_kZVyN3pnl

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-trending-crypto-coins-8ef8ad0d
```

Example prompt: What are the top 10 trending crypto coins on CoinGecko right now — show me their prices and market-cap ranks.

## When to prefer this

Use this endpoint when you need a quick snapshot of which coins are capturing the most attention on CoinGecko right now, with price and market-cap context. Prefer over a generic token price lookup when the user hasn't specified which coins they care about but wants to see what's hot. Not suitable for historical trending data or for looking up prices of specific known tokens (use the crypto token price endpoint instead).

## Known failure modes

- CoinGecko upstream unavailable — returns 5xx error
- maxItems exceeds cap of 15 — clamped or rejected
- No trending data available at the moment — empty list returned
- Rate limiting from upstream CoinGecko API — returns 429

## How this service works

Trending crypto coins. The coins most searched on CoinGecko right now, with rank, price, and market-cap rank.

## Output

A ranked list of up to 15 trending cryptocurrencies currently most-searched on CoinGecko, each with coin name, symbol, trending rank, current price, and market-cap rank.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {
      "maxItems": {
       "type": "string",
       "default": "15",
       "description": "cap 15"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/coingecko-trending-crypto-coins-8ef8ad0d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.kadec0.xyz](https://www.zero.xyz/host/api.kadec0.xyz/llms.txt)
