# Solscan Trending Tokens Snapshot

> Solscan Trending Tokens Snapshot is a paid API for AI agents from x402.dexter.cash, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-13).

Returns a snapshot of currently trending tokens on Solana from Solscan, with optional filters for limit, exclusions, and media.

## Facts

- Endpoint: POST https://x402.dexter.cash/api/tools/solscan/trending
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-dexter-cash-3ee3d048
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_aQGkAOiEFFUrMnUmffO0d

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-dexter-cash-3ee3d048 -d '<json body>'
```

Example prompt: What are the top 20 trending tokens on Solana right now according to Solscan? Exclude any meme tokens and include media.

## When to prefer this

Use this endpoint when you need a real-time snapshot of what tokens are trending on Solana via Solscan specifically. Prefer this over general market data APIs when Solana-native trending signals from Solscan are required. It's especially useful for surfacing emerging or viral tokens that may not yet appear in broader market rankings.

## Known failure modes

- Invalid filter parameters return a 400 error
- Payment failure or insufficient USDC balance returns a 402 error
- Solscan upstream unavailability causes 503 or timeout
- Empty result set if all tokens are excluded by filters
- Rate limiting if called too frequently

## How this service works

Solscan trending tokens snapshot

## Output

A snapshot array of trending Solana tokens from Solscan, including token names, symbols, contract addresses, and associated metadata. May include media/image links and is filterable by count and exclusions.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "integer",
   "description": "How many tokens to return (1-50). Defaults to 25."
  },
  "excludeSymbols": {
   "type": "array",
   "description": "Symbols to exclude (case-insensitive). Defaults to a safe list (SOL/USDC/etc.)."
  },
  "requireDexScreenerMedia": {
   "type": "boolean",
   "description": "true to require Dexscreener images/headers (default), false to return plain Solscan data."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "ok": {
  "type": "boolean"
 },
 "status": {
  "type": [
   "integer",
   "null"
  ],
  "description": "Upstream HTTP status when a warning is returned."
 },
 "tokens": {
  "type": "array",
  "properties": {
   "name": {
    "type": "string",
    "description": "Token name from Solscan."
   },
   "media": {
    "type": [
     "object",
     "null"
    ],
    "description": "Dexscreener media (header/logo URLs and optional pair URL)."
   },
   "symbol": {
    "type": "string",
    "description": "Token symbol."
   },
   "address": {
    "type": "string",
    "description": "Token mint address."
   },
   "decimals": {
    "type": [
     "integer",
     "null"
    ],
    "description": "Decimals when provided by Solscan."
   }
  },
  "description": "Trending tokens enriched with optional Dexscreener media."
 },
 "warning": {
  "type": "string",
  "description": "Optional warning when Solscan quota/rate limits or timeouts are hit."
 },
 "fetchedAt": {
  "type": "string",
  "description": "ISO timestamp when the list was generated."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-dexter-cash-3ee3d048/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.dexter.cash](https://www.zero.xyz/host/x402.dexter.cash/llms.txt)
