# Forge-x402 Solana Trending Tokens

> Forge-x402 Solana Trending Tokens is a paid API for AI agents from temporary-brisk-indigo-3tes07o.vercel.app, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Returns a ranked list of currently trending Solana tokens with boost counts and expiry timestamps, paid per-call via x402 USDC micropayment.

## Facts

- Endpoint: POST https://temporary-brisk-indigo-3tes07o.vercel.app/api/v1/solana/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/forge-x402-solana-trending-tokens-36c4ddaf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_d7vnNBr5f6zVLGoqB0zlx

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 forge-x402-solana-trending-tokens-36c4ddaf -d '<json body>'
```

Example prompt: What are the top 20 trending tokens on Solana right now — show me their mint addresses, boost counts, and how long they've been trending?

## When to prefer this

Use this endpoint when you need a real-time ranked list of trending Solana tokens without committing to a subscription or API key — the x402 micropayment model (pay per call) makes it ideal for agents that query infrequently or want to avoid upfront commitments. Prefer this over on-chain scraping when you need pre-aggregated boost and trend signals from Jupiter and Solana DEX venues in a single call.

## Known failure modes

- Invalid limit value (outside 1-50 range) returns a validation error
- Payment failure or insufficient USDC balance causes 402 response blocking data delivery
- Temporary Vercel deployment downtime causes 503 or timeout
- Stale data if the underlying Solana DEX feed has not refreshed recently
- Empty trending list if no tokens currently meet the boost threshold

## How this service works

Live Solana DEX data for trading agents: Jupiter route quality, venue spreads in bps, liquidity snapshots, new pairs, trending tokens. Pay per call via x402 with USDC on Base or Solana. No API keys.

## Output

A JSON object with a count field and a trending array, each item containing a token mint address, a boost count (integer), and an expiresAt ISO timestamp indicating how long the token remains in the trending set.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "string",
   "description": "Max tokens to return (1-50)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "count": 2,
 "trending": [
  {
   "token": "Mint...",
   "boosts": 15,
   "expiresAt": "2026-09-02T00:00:00.000Z"
  }
 ]
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/forge-x402-solana-trending-tokens-36c4ddaf/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from temporary-brisk-indigo-3tes07o.vercel.app](https://www.zero.xyz/host/temporary-brisk-indigo-3tes07o.vercel.app/llms.txt)
