# Crypto Trending Gainers & Losers

> Crypto Trending Gainers & Losers is a paid API for AI agents from crypto.openverbs.com, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-14).

Returns the top 24h price momentum gainers and losers among major cryptocurrencies, with symbol, rank, USD price, 24h change %, and market cap.

## Facts

- Endpoint: POST https://crypto.openverbs.com/v1/trending
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/crypto-trending-gainers-losers-36eb5f71
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1KL4sTbedJOopDy1621R0

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 crypto-trending-gainers-losers-36eb5f71 -d '<json body>'
```

Example prompt: Show me the top 15 crypto gainers and losers from the last 24 hours — I want to see which big-cap coins are moving the most right now.

## When to prefer this

Choose this endpoint when you need a quick, ranked momentum snapshot of which major cryptocurrencies are gaining or losing the most value in the past 24 hours. It is ideal for discovery, trading signal generation, or alerting workflows where you want pre-ranked gainers/losers without needing to query individual coin endpoints. Prefer this over general market cap endpoints when price momentum (not just size) is the primary signal you need.

## Known failure modes

- Invalid limit value (outside 1-50 range) returns a validation error
- Data may be marked stale if CoinLore upstream is delayed or unavailable
- Empty gainers or losers list if market conditions are unusually flat
- Payment failure if USDC balance is insufficient (x402 protocol)
- Network timeout if upstream CoinLore data is slow to respond

## How this service works

Trending crypto by 24h price momentum: the biggest gainers and losers among the top coins by market cap, each with symbol, rank, USD price, 24h change % and market cap. A momentum/discovery signal for agents. Source: CoinLore.

## Output

Returns two ranked lists — gainers and losers — each containing up to 50 coins (default 10 each), with coin name, ticker symbol, market cap rank, current USD price, 24h price change percentage, and market cap in USD. Also includes a stale flag, total coins scanned, and data source attribution (CoinLore).

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "stale": false,
  "losers": [
   {
    "name": "Sample",
    "rank": 77,
    "symbol": "ABC",
    "priceUsd": 0.45,
    "change24hPct": -12.1,
    "marketCapUsd": 98765432
   }
  ],
  "source": "coinlore",
  "gainers": [
   {
    "name": "Example",
    "rank": 42,
    "symbol": "XYZ",
    "priceUsd": 1.23,
    "change24hPct": 18.4,
    "marketCapUsd": 123456789
   }
  ],
  "scanned": 100
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/crypto-trending-gainers-losers-36eb5f71/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from crypto.openverbs.com](https://www.zero.xyz/host/crypto.openverbs.com/llms.txt)
