Install
$ agentstack add skill-vo1ganin-crypto-claude-skills-dexscreener ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ● Network access Used
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
DexScreener Skill
Reference files:
references/endpoints.md— full endpoint list with rate limits per groupreferences/examples/— working Python scripts (batch token lookup, search, monitor)
🚨 Key facts (memorize)
- No auth, no key, no paid tier. Public API, free for everyone.
- No history. Only current state. For historical: use Dune or Bitquery.
- No WebSocket. Polling only. For real-time pump.fun: PumpPortal; for others: direct RPC.
- Search max 30 results, no pagination. Don't try to scroll past 30.
- Two rate tiers: 60 rpm (profiles/boosts/metas/orders) vs 300 rpm (
latest/dex/*). - 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) |
Step-by-step workflow
1. Identify input
- User pastes token address →
/tokens/v1/{chain}/{address}or/latest/dex/search?q={address} - User mentions name/symbol →
/latest/dex/search?q={query}(max 30 results) - User asks for trending →
/token-boosts/top/v1or/metas/trending/v1 - User has pair/pool address →
/latest/dex/pairs/{chain}/{pair}
2. Detect chain Chain IDs: solana, ethereum, base, bsc, polygon, arbitrum, optimism, avalanche, ton, sui, tron, hyperliquid, etc. If unknown, use /search first (it returns chainId in results).
3. Call the endpoint
- Plain
curlorhttpx.get()— no headers needed - Honor 60/300 rpm rate limit: if batch-polling,
asyncio.Semaphore(5)keeps safe
4. Extract what's needed Typical fields: priceUsd, volume.h24, liquidity.usd, priceChange.h24, txns.h24.buys/sells, marketCap, fdv, pairCreatedAt.
5. Present
- Format USD with commas
- Shorten addresses (4+4 chars)
- Link to DexScreener UI:
https://dexscreener.com/{chainId}/{pairAddress}
Common patterns
Quick price lookup
curl "https://api.dexscreener.com/latest/dex/search?q=BONK"
Returns up to 30 matching pairs sorted by relevance. Pick the top Raydium/Jupiter pair on Solana for BONK.
Batch 30 tokens at once
curl "https://api.dexscreener.com/tokens/v1/solana/MINT1,MINT2,MINT3,...,MINT30"
Single request covers 30 tokens — way cheaper than 30 individual calls.
Monitor a token's all pairs
curl "https://api.dexscreener.com/token-pairs/v1/solana/{TOKEN}"
Useful when a token trades on multiple DEXes (Raydium, Meteora, Orca) — get liquidity for each.
Trending + boosts combination
# What paid advertisers are pushing
curl https://api.dexscreener.com/token-boosts/top/v1
# Organic trends
curl https://api.dexscreener.com/metas/trending/v1
Compare these — divergence signals pump-or-rug patterns.
Error handling
| Status | Meaning | Action | |--------|---------|--------| | 200 | OK | Parse JSON | | 429 | Rate limited | Back off 30-60s, drop concurrency | | 404 | Token/pair not found | Verify chainId and address | | 500-502 | Upstream error | Retry with backoff |
429 doesn't include Retry-After — just exponentially back off.
Reference files
- [
references/endpoints.md](references/endpoints.md) — all endpoints, rate tiers, response shapes - [
references/examples/search_token.py](references/examples/search_token.py) — quick symbol/name lookup - [
references/examples/batch_prices.py](references/examples/batch_prices.py) — bulk price fetch for N tokens - [
references/examples/trending_monitor.py](references/examples/trending_monitor.py) — periodic trending dump
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: Vo1ganin
- Source: Vo1ganin/crypto-claude-skills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.