# CoinGecko Trending Coins Feed

> CoinGecko Trending Coins Feed is a paid API for AI agents from agent402.tools, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-16).

Returns the top ~15 trending cryptocurrencies on CoinGecko in the last 24 hours, ranked by user search activity, including coin ID, symbol, market cap rank, BTC-denominated price, and trend score.

## Facts

- Endpoint: GET https://agent402.tools/api/crypto-trending
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/coingecko-trending-coins-feed-d10db074
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9GaeASh4ugor6J1p0nJJA

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-coins-feed-d10db074
```

Example prompt: What cryptocurrencies are trending right now on CoinGecko — give me the top coins by search activity in the last 24 hours along with their market cap rank and current BTC price.

## When to prefer this

Use this endpoint when you need a real-time, crowd-sourced signal of which cryptocurrencies are capturing retail attention and search interest on CoinGecko, particularly for detecting narrative shifts or emerging hype before price movements. Prefer this over price-based endpoints when you want a leading indicator of retail interest rather than lagging price data.

## Known failure modes

- CoinGecko upstream API unavailable — may return 502 or empty result
- Rate limiting or payment failure (x402) — returns 402 Payment Required
- Network timeout if CoinGecko data source is slow to respond
- Stale data if CoinGecko feed has not refreshed recently

## How this service works

Trending coins on CoinGecko in the last 24 hours, ranked by user search activity on the site (currently ~15 results). Includes coin id, symbol, market cap rank, current price (BTC-denominated), and score. Useful signal for detecting narrative shifts before they hit price charts.

## Output

A list of approximately 15 trending cryptocurrencies ranked by CoinGecko user search activity, each with coin ID, symbol, market cap rank, current BTC-denominated price, and a trend score reflecting search momentum over the past 24 hours.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "coins": [
   {
    "id": "render-token",
    "name": "Render",
    "score": 0,
    "symbol": "RNDR",
    "priceBtc": 0.00012345,
    "marketCapRank": 38
   },
   {
    "id": "sui",
    "name": "Sui",
    "score": 1,
    "symbol": "SUI",
    "priceBtc": 0.00003421,
    "marketCapRank": 22
   }
  ],
  "count": 2
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/coingecko-trending-coins-feed-d10db074/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent402.tools](https://www.zero.xyz/host/agent402.tools/llms.txt)
