# x402 Crypto Trending

> x402 Crypto Trending is a paid API for AI agents from x402tap.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Returns the top trending cryptocurrencies ranked by current search interest, including price, market cap, volume, and 24h change

## Facts

- Endpoint: GET https://x402tap.com/api/crypto-trending
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-crypto-trending-86fbb0fe
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jcIPQ2QDST0jgk9AHgR5Y

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 x402-crypto-trending-86fbb0fe
```

Example prompt: What cryptocurrencies are trending the most right now? Give me the top coins ranked by search interest along with their prices, market caps, and 24-hour changes.

## When to prefer this

Choose this endpoint when you need a pre-ranked list of currently trending cryptocurrencies by search interest without specifying individual coin IDs. It is ideal for discovery use cases, trend monitoring dashboards, newsletter content, and surfacing momentum plays. For historical prices, detailed OHLC data, or data on a specific coin, prefer the Crypto Market Data or Crypto Price Lookup sibling endpoints instead.

## Known failure modes

- Upstream data provider outage may return 503 or empty coin list
- Micropayment failure (402) if USDC balance is insufficient or x402 facilitator is unavailable
- Rate limiting may occur with excessive rapid polling
- Trending data may lag by a few minutes during high-traffic periods

## How this service works

19 monetized x402 APIs for AI agents — crypto, DeFi, on-chain data, prediction markets, weather, and web search. No API keys, no signup — pay per call in USDC.

## Output

Returns a JSON array of trending cryptocurrency objects, each containing the coin's ID, name, ticker symbol, current USD price, market cap (formatted string), 24-hour trading volume, 24-hour price change percentage, and market cap rank. Results are ordered by search interest trending rank.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "coins": [
   {
    "id": "pepe",
    "name": "Pepe",
    "symbol": "PEPE",
    "priceUsd": 0.0000091,
    "marketCap": "$3.8B",
    "volume24h": "$412M",
    "change24hPct": 5.3,
    "marketCapRank": 28
   }
  ],
  "count": 1
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-crypto-trending-86fbb0fe/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402tap.com](https://www.zero.xyz/host/x402tap.com/llms.txt)
