# Solana Trending Tokens

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

Returns a list of currently trending tokens on the Solana blockchain

## Facts

- Endpoint: GET https://x402.cambrian.org/solana/trending-tokens
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/solana-trending-tokens-967e8a69
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_59IPHErfdhvP_RQgeqKBz

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 solana-trending-tokens-967e8a69
```

Example prompt: What tokens are trending on Solana right now? Give me the current list so I can see what's hot.

## When to prefer this

Choose this endpoint when you need a real-time snapshot of which Solana tokens are currently gaining traction — ideal for trading dashboards, DeFi research, or automated market-monitoring agents. Prefer this over generic token price endpoints when you want discovery-driven signals rather than price lookups for known tokens.

## Known failure modes

- No trending data available — empty array returned if market data is stale or unavailable
- Rate limiting or payment failure due to missing or invalid x402 payment header
- Invalid query parameters causing a 400 Bad Request
- Upstream data source downtime resulting in 503 or timeout

## How this service works

Pay-per-use blockchain and social data for autonomous agents.

## Output

An array of trending token objects on the Solana network, likely including token identifiers (addresses or symbols), ranking positions, and possibly volume or momentum metrics indicating why each token is trending.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "queryParams": {
     "type": "object",
     "additionalProperties": true
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "example": {
     "type": "array"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "array"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/solana-trending-tokens-967e8a69/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.cambrian.org](https://www.zero.xyz/host/x402.cambrian.org/llms.txt)
