DEX Screener Scraper avatar

DEX Screener Scraper

Pricing

from $22.87 / 1,000 results

Go to Apify Store
DEX Screener Scraper

DEX Screener Scraper

Scrape live DEX trading pairs from DEX Screener public API. Look up a token address, a chain+pair address, or search by name/symbol. Returns price, volume, liquidity, FDV, transactions, and multi-window price change. No API key required.

Pricing

from $22.87 / 1,000 results

Rating

0.0

(0)

Developer

ParseForge

ParseForge

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

20 hours ago

Last modified

Share

ParseForge Banner

📊 DEX Screener Scraper

🚀 Export live DEX trading pairs in seconds. Look up a token contract, a chain + pair address, or run a free-text search to pull price, liquidity, FDV, volume, transactions, and multi-window price change for any pair on 20+ EVM and non-EVM chains. No API key, no wallet, no manual JSON parsing.

🕒 Last updated: 2026-05-13 · 📊 31 fields per pair · 🌐 20+ chains · 🦄 Every DEX indexed by DEX Screener

The DEX Screener Scraper queries the public DEX Screener API and returns a clean, structured record per trading pair, including base/quote token addresses, USD price, native price, 24h volume across four time windows, USD/base/quote liquidity, FDV, market cap, transaction counts (buys vs sells across m5/h1/h6/h24), and percent price change across four windows. The source feed is the same one that powers the DEX Screener web app, so every chain and DEX it lists is reachable from a single Actor input.

Coverage spans Ethereum, BNB Smart Chain, Solana, Base, Arbitrum, Polygon, Avalanche, Optimism, Fantom, Blast, Linea, Scroll, zkSync, PulseChain, TON, Sui, Aptos, Tron, HyperEVM, and more. Three lookup modes are baked in: full token sweep (every pair for a token contract), single pair lookup (chain + pair address), and search query (DEX Screener's name/symbol search, capped at ~30 pairs per query). Sort by 24h volume, USD liquidity, FDV, or 24h price change before applying maxItems. Download CSV, Excel, JSON, or XML.

🎯 Target Audience💡 Primary Use Cases
Crypto traders, DeFi researchers, on-chain analysts, market-data engineers, quant teams, alpha groups, token treasuriesToken monitoring, new-pair discovery, liquidity tracking, price-change alerts, FDV scans, multi-chain dashboards, market-maker monitoring

📋 What the DEX Screener Scraper does

Three lookup workflows in a single run:

  • 🪙 Token address mode. Drop in any token contract. Returns every pair where that token is one side, on every chain DEX Screener indexes.
  • 🧭 Chain + Pair address mode. Look up one specific pair by chain slug (e.g. solana) and pair contract address.
  • 🔍 Search query mode. Free-text search by token name, symbol, or pair (e.g. USDC, PEPE, wif). DEX Screener's search endpoint caps results at roughly 30 pairs per query.
  • 🔽 Sort. Order by 24h volume, USD liquidity, FDV, or 24h price change before slicing to maxItems.

Each pair record carries the DEX Screener URL, chain ID, DEX ID, pair contract address, base and quote token metadata, USD and native price, 4-window volume (m5/h1/h6/h24), USD + base + quote liquidity, FDV, market cap, percent price change across 4 windows, and buy/sell counts across 4 windows.

💡 Why it matters: DeFi moves in seconds. Manually polling DEX Screener through a browser or rolling your own multi-chain aggregator is fragile and slow. This Actor returns a clean JSON record per pair with every metric the web UI surfaces, ready for dashboards, alerts, or quant pipelines.


🎬 Full Demo

🚧 Coming soon: a 3-minute walkthrough showing how to look up a token, sort by liquidity, and ship the dataset into Google Sheets.


⚙️ Input

InputTypeDefaultBehavior
searchQuerystring"USDC"Free-text DEX Screener search (token name, symbol, or pair). Caps at ~30 pairs per query.
tokenAddressstring""Token contract. Returns every pair where this token is one side.
chainstring (enum)""Chain slug used with Pair Address. 20 supported (ethereum, bsc, solana, base, arbitrum, polygon, avalanche, optimism, fantom, blast, linea, scroll, zksync, pulsechain, ton, sui, aptos, tron, hyperevm).
pairAddressstring""Pair contract address. Requires chain to be set. Returns just that pair.
maxItemsinteger10Records to return. Free plan caps at 10, paid plan at 1,000,000.
sortBystring (enum)""Order before applying maxItems. Options: volume24h, liquidityUsd, fdv, priceChange24h.

Example: every pair for USDC on every chain, sorted by 24h volume.

{
"tokenAddress": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
"maxItems": 50,
"sortBy": "volume24h"
}

Example: single Solana pair by address.

{
"chain": "solana",
"pairAddress": "8sLbNZoA1cfnvMJLPfp98ZLAnFSYCFApfJKMbiXNLwxj",
"maxItems": 1
}

⚠️ Good to Know: the search endpoint caps results at roughly 30 pairs per query regardless of maxItems. For wider coverage on a specific token, use Token Address mode. For exotic pairs, drop the chain + pair address pair directly.


📊 Output

Each pair record contains up to 31 fields. Download the dataset as CSV, Excel, JSON, or XML.

🧾 Schema

FieldTypeExample
🔗 urlstring"https://dexscreener.com/pulsechain/0xc636bfe0..."
🌐 chainIdstring"pulsechain"
🦄 dexIdstring"pulsex"
🏷️ pairAddressstring"0xC636bfE0bAe34824380B4E26Bc34e4614e55e483"
🪙 baseTokenobject{ address, name, symbol }
💱 quoteTokenobject{ address, name, symbol }
💵 priceUsdnumber | null0.0007103
🪙 priceNativenumber | null0.02176
📈 volume24hnumber | null4258.02
⏱️ volumeH6number | null1883.93
⏱️ volumeH1number | null43.16
⏱️ volumeM5number | null0.26
💧 liquidityUsdnumber | null5720878.31
💧 liquidityBasenumber | null4026714275
💧 liquidityQuotenumber | null87659182
🪙 fdvnumber | null20229503
💼 marketCapnumber | null43262129
📊 priceChangeM5number | null0.75
📊 priceChangeH1number | null0.75
📊 priceChangeH6number | null6.65
📊 priceChangeH24number | null1.76
🔁 txnsM5Buysnumber | null0
🔁 txnsM5Sellsnumber | null1
🔁 txnsH1Buysnumber | null0
🔁 txnsH1Sellsnumber | null7
🔁 txnsH6Buysnumber | null2
🔁 txnsH6Sellsnumber | null175
🔁 txnsH24Buysnumber | null18
🔁 txnsH24Sellsnumber | null241
🏷️ labelsstring[] (optional)["v1"]
🕒 pairCreatedAtISO 8601 (optional)"2023-05-29T01:57:25.000Z"
🕒 scrapedAtISO 8601"2026-05-13T22:20:40.453Z"

📦 Sample records


✨ Why choose this Actor

Capability
🌐20+ chains, one Actor. Ethereum, BNB, Solana, Base, Arbitrum, Polygon, Avalanche, Optimism, Fantom, Blast, Linea, Scroll, zkSync, PulseChain, TON, Sui, Aptos, Tron, HyperEVM.
🎯Three lookup modes. Token contract, chain + pair, or free-text search. Same output schema across all three.
Live data. Every run hits the DEX Screener API. No staleness, no caching.
🔁Multi-window metrics. Volume, price change, and buy/sell counts at m5, h1, h6, and h24 in a single record.
💧Liquidity breakdown. USD, base, and quote liquidity for sizing trades and spotting thin books.
🚫No API key. Works against the public DEX Screener API. No wallet, no signing.
🔽Server-side sort. Volume, liquidity, FDV, or 24h price change before the maxItems slice.

📊 Accurate, multi-window DEX pair data is the foundation of every trading dashboard, new-listing alert, and DeFi liquidity model.


📈 How it compares to alternatives

ApproachCostCoverageRefreshFiltersSetup
⭐ DEX Screener Scraper (this Actor)$5 free credit, then pay-per-use20+ chains, all DEXsLive per runtoken, chain+pair, search, sort⚡ 2 min
DEX Screener web appFreeSameLiveManual click-through🐢 Browser only
Subgraph queries (The Graph)Pay per queryPer-subgraphIndexer-dependentGraphQL, per-DEX🛠️ Hours per chain
Roll your own RPC pipelineFree + RPC costWhatever you buildWhatever you buildWhatever you build🐌 Weeks

Pick this Actor when you want broad multi-chain DEX coverage, server-side sorting, and zero pipeline maintenance.


🚀 How to use

  1. 📝 Sign up. Create a free account with $5 credit (takes 2 minutes).
  2. 🌐 Open the Actor. Go to the DEX Screener Scraper page on the Apify Store.
  3. 🎯 Set input. Pick a mode (token, chain+pair, or search), set maxItems, and optionally sortBy.
  4. 🚀 Run it. Click Start.
  5. 📥 Download. Grab CSV, Excel, JSON, or XML from the Dataset tab.

⏱️ Total time from signup to downloaded dataset: 3-5 minutes. No coding required.


💼 Business use cases

📊 Trading & Market Making

  • Live cross-DEX pricing for arbitrage scans
  • Spread and depth comparison across pools
  • Volume share by DEX for routing decisions
  • 24h winners and losers boards

🧠 DeFi Research & Analytics

  • TVL and liquidity tracking per pair
  • New-pair discovery on every chain
  • FDV vs market cap dilution checks
  • Buy/sell pressure across time windows

🪙 Token Teams & Treasuries

  • Monitor your token's pools and prices
  • Detect new pairs that wrap or fork your token
  • Watch liquidity migration across DEXs
  • Track FDV against tokenomics targets

🚨 Alerts & Dashboards

  • Price-change triggers per chain
  • Volume-spike alerts on watched pairs
  • Slack or Telegram bots with live pair data
  • Multi-chain portfolio dashboards

🔌 Automating DEX Screener Scraper

Control the scraper programmatically for scheduled runs and pipeline integrations:

  • 🟢 Node.js. Install the apify-client NPM package.
  • 🐍 Python. Use the apify-client PyPI package.
  • 📚 See the Apify API documentation for full details.

The Apify Schedules feature lets you trigger this Actor on any cron interval. Hourly polling for watched tokens, daily snapshots for analytics warehouses, or minute-by-minute refreshes for trading dashboards.


🌟 Beyond business use cases

DEX pair data powers more than trading desks. The same structured records support research, education, and personal projects.

🎓 Research and academia

  • Quantitative DeFi research on AMM efficiency
  • Empirical liquidity studies across chains
  • Reproducible event studies on token launches
  • Coursework on on-chain market microstructure

🎨 Personal and creative

  • Side projects, indie trading bots, and portfolio dashboards
  • Watchlists for personal holdings across chains
  • Hackathon prototypes with live DEX data
  • Content creation for crypto analysts and YouTubers

🤝 Community and education

  • Transparent liquidity scoreboards for DAOs
  • Open dashboards for community-watched pools
  • Tutorials and learn-to-trade materials
  • Open-source research repositories

🧪 Experimentation

  • Train ML models for token-pair classification
  • Backtest mempool and routing strategies
  • Prototype on-chain anomaly detectors
  • Stress-test indexers against live data

🤖 Ask an AI assistant about this scraper

Open a ready-to-send prompt about this ParseForge actor in the AI of your choice:


❓ Frequently Asked Questions

🧩 How does it work?

Pick a lookup mode (token address, chain + pair address, or search query), click Start, and the Actor calls the DEX Screener public API and emits a structured record per pair with price, liquidity, volume, FDV, transactions, and price-change windows.

🌐 Which chains does it cover?

20 chain slugs are enumerated in the input: ethereum, bsc, solana, base, arbitrum, polygon, avalanche, optimism, fantom, blast, linea, scroll, zksync, pulsechain, ton, sui, aptos, tron, hyperevm, and more. Token Address and Search modes return results across every chain DEX Screener indexes.

🔍 Why does my search return only ~30 results?

The DEX Screener search endpoint caps results at roughly 30 pairs per query, regardless of maxItems. For wider coverage on a single token, use Token Address mode (it returns every pair where that token is one side).

🪙 Do I need an API key or wallet?

No. The Actor uses the public DEX Screener API. No authentication, no wallet, no signing.

⏰ Can I schedule regular runs?

Yes. Use Apify Schedules to trigger this Actor on any cron interval. Run minute-by-minute for live dashboards, hourly for analytics, or daily for snapshots.

🔁 How often is the data refreshed?

Every run hits the DEX Screener API directly. The data reflects current pool state at run time, with no caching.

💧 Are liquidity numbers in USD or native?

All three: liquidityUsd, liquidityBase, and liquidityQuote. Same for price (USD and native side-by-side).

📊 What's the difference between FDV and market cap?

FDV (fully diluted valuation) uses total supply. Market cap uses circulating supply. Both fields are populated when DEX Screener publishes them.

🔁 What happens if a run fails?

Apify retries transient errors automatically. If a run still fails, inspect the log in the Runs tab, adjust the input, and re-run. Partial datasets are preserved.

💳 Do I need a paid Apify plan?

No. The free plan covers testing and small runs (10 pairs per run). A paid plan lifts the limit and unlocks scheduling and larger datasets.

🆘 What if I need help?

Our support team is here to help. Contact us through the Apify platform or use the Tally form linked below.


🔌 Integrate with any app

DEX Screener Scraper connects to any cloud service via Apify integrations:

  • Make - Automate multi-step workflows
  • Zapier - Connect with 5,000+ apps
  • Slack - Pipe price-change alerts into channels
  • Airbyte - Land DEX data in your warehouse
  • GitHub - Trigger runs from commits and releases
  • Google Drive - Export datasets to Sheets

You can also use webhooks to trigger downstream actions when a run finishes. Pipe new pairs into your trading bot, or fire Slack alerts on volume spikes.


💡 Pro Tip: browse the complete ParseForge collection for more crypto and market-data scrapers.


🆘 Need Help? Open our contact form to request a new scraper, propose a custom data project, or report an issue.


⚠️ Disclaimer: this Actor is an independent tool and is not affiliated with, endorsed by, or sponsored by DEX Screener or any DEX referenced in this README. All trademarks mentioned are the property of their respective owners. Only publicly available pair data exposed by DEX Screener's public API is collected. This Actor is for informational use only and does not constitute financial advice.