dexscreener

dexscreener is a skill for Claude Code, Codex from Vo1ganin/crypto-claude-skills. It costs 150 tokens per session (1,377 once invoked), scanned A, original, MIT.

A guide to DexScreener, a free public service for viewing current trading-pair data from decentralised cryptocurrency exchanges across multiple blockchains.

In plain words
What is it for?
Use it to look up tokens, compare trading pairs, find current market data, discover promoted tokens, or poll for updates.
Why use it?
It clarifies which requests provide current prices, liquidity, volume, or pair information and avoids treating the service as a historical or streaming data source.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to look up tokens, compare trading pairs, find current market data, discover promoted tokens, or poll for updates.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/vo1ganin/crypto-claude-skills/dexscreener
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add Vo1ganin/crypto-claude-skills --skill dexscreener
Clone the repo
git clone --depth 1 https://github.com/Vo1ganin/crypto-claude-skills

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for dexscreener

README.md
[![agentmods](https://agentmods.dev/badge/skills/vo1ganin/crypto-claude-skills/dexscreener/github.svg)](https://agentmods.dev/skills/vo1ganin/crypto-claude-skills/dexscreener)
Your own site
<a href="https://agentmods.dev/skills/vo1ganin/crypto-claude-skills/dexscreener"><img src="https://agentmods.dev/badge/skills/vo1ganin/crypto-claude-skills/dexscreener/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for dexscreener

Your own site · 80×15
<a href="https://agentmods.dev/skills/vo1ganin/crypto-claude-skills/dexscreener"><img src="https://agentmods.dev/badge/skills/vo1ganin/crypto-claude-skills/dexscreener.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 150 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,377 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00150 $0.01377
Opus 5 $0.00075 $0.00688
Sonnet 5 $0.00030 $0.00275
Haiku 4.5 $0.00015 $0.00138

Measured 12d ago against content hash c0c422c57c8d, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

dexscreener scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

The scan reads SKILL.md. This mod also ships 3 executable files (references/examples/batch_prices.py, references/examples/search_token.py, references/examples/trending_monitor.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

- Plain `curl` or `httpx.get()` — no headers needed
skills/dexscreener/SKILL.md · 134 lines

How it starts

The opening of the file, as written. The whole thing — 134 lines — stays where its author put it; the contents beside it link to each section on GitHub.

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

Read the full file on GitHub · 134 lines

Files

What ships with it

5 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 134 lines · 150 tokens per session scan A c0c422c57c8d

Subscribe to this mod's changes

dexscreener is a skill published in the GitHub repository Vo1ganin/crypto-claude-skills (2 stars, last pushed 22d ago), licensed MIT. It adds 150 tokens to every session and 1,377 once invoked, about $0.0007 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

agent-wallet

Operate a non-custodial blockchain wallet on-chain (EVM and Bitcoin), no exchange or MetaMask. Create or import a wallet, balances, send native/ERC-20/BTC, swap tokens, compile/deploy/call Solidity. Trigger on wallet, crypto, ETH, BTC, ERC-20, token, send, transfer, swap, trade, Solidity, contract, on-chain, testnet…

hec-ovi/blockchain-skill · 93 tokens

tokenomist-unlock-analysis

Analyze token unlock events — upcoming unlocks, historical events, and allocation breakdowns. Use when checking unlock impact on market cap or reviewing unlock schedules.

tokenomist-ai/tokenomist-cli · 37 tokens

tokenomist-burn-buyback

Check token burn and buyback activity. Use when analyzing deflationary mechanisms — burns, buybacks, and net inflation.

tokenomist-ai/tokenomist-cli · 33 tokens

tokenomist-emission-report

Get daily or weekly token emission data with allocation breakdowns. Use when analyzing token inflation, comparing emission rates, or understanding supply increases.

tokenomist-ai/tokenomist-cli · 34 tokens

tokenomist-fundraising-lookup

Look up fundraising rounds, investors, and valuation data for tokens. Use when finding who invested, at what valuation, or analyzing investor portfolios.

tokenomist-ai/tokenomist-cli · 37 tokens

tokenomist-token-overview

Get a summary list of all tracked tokens with market data and supply info. Use when browsing tokens, comparing market caps, or finding which tokens have fundraising/burn/buyback data.

tokenomist-ai/tokenomist-cli · 44 tokens