AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Dexscreener

skill-vo1ganin-crypto-claude-skills-dexscreener · by Vo1ganin

|

No reviews yet
0 installs
22 views
0.0% view→install

Install

$ agentstack add skill-vo1ganin-crypto-claude-skills-dexscreener

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No 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.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-vo1ganin-crypto-claude-skills-dexscreener)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
3mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

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 →
Are you the author of Dexscreener? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

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) |


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/v1 or /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 curl or httpx.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.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.