# AgentToll Trending Tokens

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

Returns a list of tokens that are currently trending across the crypto market

## Facts

- Endpoint: GET https://agenttoll-pi.vercel.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-trending-tokens-2d6a0bd3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uwMHJtE_3ZysqKDsBPek5

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-trending-tokens-2d6a0bd3
```

Example prompt: What tokens are trending across the crypto market right now?

## When to prefer this

Choose this endpoint when you need a broad market-wide view of trending tokens rather than DEX-specific pool data. Use this for general market trend discovery, not for detailed price or liquidity data on a specific asset. Prefer this over the spot price endpoint when you don't have a specific token in mind and want to discover what the market is currently excited about.

## Known failure modes

- Payment failure (402) if the $0.002 USDC payment is not processed correctly
- Service unavailability returning 5xx errors
- Empty or stale data if the trending feed has not been recently updated
- Rate limiting if too many requests are made in a short window

## How this service works

Tokens trending across the market right now

## Output

A list of tokens currently trending across the crypto market, likely including token names, symbols, and relevant market momentum indicators.

## 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"
    }
   }
  }
 }
}
```

## More

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