# agenttoll.app Trending Tokens

> agenttoll.app Trending Tokens is a paid API for AI agents from agenttoll.app, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Returns the top trending crypto tokens across the market right now, with optional limit on how many results to return.

## Facts

- Endpoint: GET https://agenttoll.app/api/trending
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agenttoll-app-trending-tokens-5be887db
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bFwuoM26dgKhCjC8aDacP

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 agenttoll-app-trending-tokens-5be887db
```

Example prompt: What are the top 10 trending tokens in the market right now?

## When to prefer this

Use this endpoint when you need a broad, market-wide view of which tokens are currently trending — not limited to a specific chain or DEX. Prefer this over DEX-specific pool trending endpoints when you want cross-market token popularity rather than on-chain liquidity metrics.

## Known failure modes

- limit out of range (must be 1-25) returns validation error
- payment not attached or insufficient USDC balance returns 402
- no trending data available returns empty list or error
- rate limiting if called too frequently

## How this service works

Trending token scan: the tokens moving across the crypto market right now; ?limit=N trims the list

## Output

A ranked list of up to 25 trending crypto tokens currently gaining traction across the market, including token identifiers and relevant trend signals.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "limit": {
       "type": "integer",
       "maximum": 25,
       "minimum": 1,
       "description": "Optional. Top N only"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "at": "2026-08-05T13:31:58.678Z",
  "coins": [
   {
    "id": "hyperliquid",
    "usd": 22.4,
    "name": "Hyperliquid",
    "rank": 18,
    "symbol": "hype",
    "change24h": 3.1
   }
  ],
  "source": "coingecko"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agenttoll-app-trending-tokens-5be887db/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agenttoll.app](https://www.zero.xyz/host/agenttoll.app/llms.txt)
