← ClaudeAtlas

dexscreenerlisted

Expert assistant for DexScreener API — free, unauthenticated public API for current DEX pair data across 20+ chains (Solana, Ethereum, Base, BSC, TON, etc.). Use when the user wants: current price / volume / liquidity / market cap of any token on any chain, search a token by symbol/name/address, find all trading pairs for a token, check trending tokens, monitor token boosts / profiles / community takeovers, or pull quick pair data for multiple tokens at once. Not for: historical data (no archive — use Dune/Bitquery), real-time streaming (no WebSocket — use PumpPortal WS for pump.fun or direct RPC for others).
Vo1ganin/dexscreener-skill · ★ 0 · AI & Automation · score 75
Install: claude install-skill Vo1ganin/dexscreener-skill
# DexScreener Skill Reference files: - `references/endpoints.md` — full endpoint list with rate limits per group - `references/examples/` — working Python scripts (batch token lookup, search, monitor) --- ## 🚨 Key facts (memorize) 1. **No auth, no key, no paid tier.** Public API, free for everyone. 2. **No history.** Only current state. For historical: use Dune or Bitquery. 3. **No WebSocket.** Polling only. For real-time pump.fun: PumpPortal; for others: direct RPC. 4. **Search max 30 results, no pagination.** Don't try to scroll past 30. 5. **Two rate tiers:** 60 rpm (profiles/boosts/metas/orders) vs 300 rpm (`latest/dex/*`). 6. **Terms prohibit competing products** and aggressive scraping. Fair analytical use is fine. ## Base URL ``` https://api.dexscreener.com ``` --- ## When to use vs alternatives | Need | Best tool | |------|-----------| | Quick current price, any token, any chain | **DexScreener** `/tokens/v1/{chain}/{addr}` | | Discover trending memecoins | DexScreener `/token-boosts/top/v1` + `/token-profiles/latest/v1` | | Batch price for 30 tokens | **DexScreener** `/tokens/v1/{chain}/{addrs}` (one call) | | Full liquidity/volume for a pair | **DexScreener** `/latest/dex/pairs/{chain}/{pair}` | | Historical price | `dune-skill` (`prices.usd`) or Birdeye | | Real-time trade stream | `pumpfun-skill` (PumpPortal WS) or `solana-rpc-skill` (LaserStream) | | Deep wallet analysis | `solscan-skill` or `nansen-skill` | | NFT data | `solana-rpc-skill` (DAS API) | -