# Agent402.Tools - Solana Trending Tokens (DexScreener)

> Agent402.Tools - Solana Trending Tokens (DexScreener) is a paid API for AI agents from agent402.tools, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-13).

Returns trending Solana tokens from DexScreener, including boosted tokens and newly-profiled tokens with metadata and links.

## Facts

- Endpoint: POST https://agent402.tools/api/sol-trending
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent402-tools-solana-trending-tokens-dexscreener-e5144e9d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_l6ZsxYC2CFmP9kQDrpy5p

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 agent402-tools-solana-trending-tokens-dexscreener-e5144e9d -d '<json body>'
```

Example prompt: What are the top 20 trending Solana tokens right now — show me both boosted tokens and new profiles from DexScreener?

## When to prefer this

Choose this endpoint when you need real-time Solana token trend data from DexScreener without an API key — especially useful for autonomous agents that pay per call via x402/USDC and need structured boost and profile data for meme coin discovery, trading signals, or trend monitoring. Prefer over direct DexScreener scraping when you want a clean JSON response with no auth setup.

## Known failure modes

- Invalid list value (not 'boosts', 'profiles', or 'both') returns a validation error
- limit out of range (< 1 or > 30) returns a validation error
- DexScreener API unavailable upstream causes a fetch failure
- Payment not received or insufficient USDC causes a 402 response
- Stale data if DexScreener is slow to update

## How this service works

What Solana tokens are being pushed right now: DexScreener's top boosted tokens (paid promotion, ranked by boost amount - a signal of marketing spend, not quality) and the latest token profiles (fresh listings with a filled-in profile), both filtered to Solana. Each row carries the mint, DexScreener URL, description snippet and links. Feed the mints into sol-token-safety to separate the promoted from the sound. Keyless; two small DexScreener reads in parallel.

## Output

Returns a JSON object with two arrays: 'boosts' (tokens sorted by boost amount, each with mint address, DexScreener URL, description, boost amount, and website/social links) and 'profiles' (newly profiled tokens with mint, links, description, and community takeover flag), plus aggregate counts (total boosts, profiles, Solana-specific counts) and a fetchedAt ISO timestamp indicating data freshness. Source is identified as 'dexscreener'.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "list": {
   "type": "string",
   "description": "\"boosts\", \"profiles\", or \"both\" (default both)."
  },
  "limit": {
   "type": "number",
   "description": "Rows per list (1-30, default 10)."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "boosts": [
   {
    "url": "https://dexscreener.com/solana/918p...",
    "mint": "918p...pump",
    "links": [
     {
      "url": "https://example.com",
      "type": "website"
     }
    ],
    "boostAmount": 500,
    "description": "The cats have arrived"
   }
  ],
  "counts": {
   "boostsAll": 30,
   "profilesAll": 30,
   "boostsSolana": 24,
   "profilesSolana": 30
  },
  "source": "dexscreener",
  "profiles": [
   {
    "url": "https://dexscreener.com/solana/airg...",
    "mint": "AiRG...pump",
    "links": [
     {
      "url": "https://x.com/...",
      "type": "twitter"
     }
    ],
    "description": "",
    "communityTakeover": false
   }
  ],
  "fetchedAt": "2026-08-22T12:00:00.000Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent402-tools-solana-trending-tokens-dexscreener-e5144e9d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent402.tools](https://www.zero.xyz/host/agent402.tools/llms.txt)
