DexScreener Scraper - Boosted & Trending Tokens API
Pricing
from $2.50 / 1,000 results
DexScreener Scraper - Boosted & Trending Tokens API
DexScreener API alternative, no key: boosted tokens, pair search, honeypot security audit. Export DexScreener data to CSV/JSON across every chain.
Pricing
from $2.50 / 1,000 results
Rating
0.0
(0)
Developer
Logiover
Maintained by CommunityActor stats
0
Bookmarked
3
Total users
1
Monthly active users
2 days ago
Last modified
Categories
Share
DexScreener Scraper — Boosted & Trending Tokens, Pair Search & Security API (No API Key)
Scrape everything on DexScreener — boosted & trending tokens with marketing-spend history, cross-chain pair search, all pairs for any token, live pair snapshots and deep security audits (honeypot, LP locks, holders) — across every chain DexScreener indexes (Solana, Ethereum, BSC, Base, Arbitrum and more). One actor replaces five, behind a single mode switch. Clean, flat, structured JSON pulled from DexScreener's public API. No API key, no login, no browser.
🏆 Why this DexScreener scraper?
5 data modes in one actor · thousands of rows per run · direct HTTP + JSON (no browser) · residential-proxy ready · export to JSON / CSV / Excel. The unofficial DexScreener API alternative for pay-to-pump intelligence, token discovery, portfolio monitoring and pre-trade due diligence.
✨ What this Actor does / Key features
- 🚀 Boosted / trending token radar — every promoted token plus its marketing-spend history (boost amount, orders, payment timestamps), auto-enriched with top-pair price, liquidity, volume and market cap. The pay-to-pump feed.
- 🔎 Cross-chain pair search — find pairs by any free-text query (symbol, name, partial contract or label) across every chain and DEX at once.
- 🪙 All pairs for a token — pull every liquidity pool for one or many token addresses, multi-chain or batched per chain (up to 30 addresses/request).
- 📈 Pair watchlist snapshot — a fast current snapshot (price, liquidity, volume, txns) of specific pairs you track by
chain:pairAddress. - 🛡️ Deep pair security audit — honeypot, mint/burn/blacklist, renounce, LP locks, top holders, supply, plus CoinGecko + CoinMarketCap metadata.
- 🔗 Every chain, every DEX — Solana, Ethereum, BSC, Base, Arbitrum, Polygon and the rest; filter with
onlyChains/onlyDexes. - 🧮 Powerful filters — minimum liquidity, minimum 24h volume, symbol match/exact, min boost amount and per-query/per-token caps.
- ⚡ Direct HTTP + JSON extraction — reads DexScreener's documented public API; no browser, no DOM walking, no GraphQL token.
- 🛡️ Proxy & rate-limit aware — built-in exponential backoff on 429/5xx; the security mode routes through residential proxy for the Cloudflare-protected feed.
- 🧾 Flat, stable schema — USD numbers, ISO timestamps and
urldeep-links, the same shape every run.
🚀 Quick start (3 steps)
- Pick a mode — leave it on the flagship
boostedTokens, or switch tosearchPairs,tokenPairs,pairWatchlistorpairSecurity. Each input field is tagged with the modes it applies to (e.g.[searchPairs],[pairSecurity]) so the form stays clean. - Run — click Start. The Actor pulls the relevant DexScreener feed and streams rows into your dataset.
- Get your data — open the Output tab and export to JSON, CSV, Excel or XML, or pull it via the Apify API. A run
SUMMARY(mode + counts) also lands in the key-value store.
📥 Input
Everything is optional — the default input runs the boostedTokens scanner out of the box. Set mode to switch datasets and fill only the fields for that mode.
Example — track what's being boosted right now (with market data)
{"mode": "boostedTokens","sources": ["top-boosted", "latest-boosted"],"includeOrders": true,"enrichWithPairData": true,"minBoostAmount": 100}
Example — search every chain for a ticker, liquid pairs only
{"mode": "searchPairs","queries": ["bonk", "wif"],"minLiquidityUsd": 50000,"minVolume24hUsd": 100000,"maxPairsPerQuery": 50}
Example — all pairs for a token
{"mode": "tokenPairs","tokenAddresses": ["DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263"],"chainId": "solana","maxPairsPerToken": 20}
Example — deep security audit of a pair (honeypot, locks, holders)
{"mode": "pairSecurity","pairs": ["solana:BrMYU1XWCqMAtBURD8yp3d9gni3uHxomoj5JG9LWr7Mj"],"skipHolders": false,"useProxy": true,"proxyGroups": ["RESIDENTIAL"]}
| Field | Type | Description |
|---|---|---|
mode | string | Which dataset to pull: boostedTokens (default), searchPairs, tokenPairs, pairWatchlist or pairSecurity. |
sources | array | [boostedTokens] Discovery feeds: top-boosted, latest-boosted, latest-profiles. |
minBoostAmount | integer | [boostedTokens] Drop tokens below this total boost amount. 0 = no filter. |
includeOrders | boolean | [boostedTokens] Enrich each token with its marketing-order / boost history. |
enrichWithPairData | boolean | [boostedTokens] Attach the token's top liquidity pair (price, volume, liquidity, market cap). |
queries | array | [searchPairs] Terms to search — symbol, name, partial contract or pair label. |
matchSymbol | string | [searchPairs] Keep only pairs whose base symbol contains this substring. |
exactSymbol | string | [searchPairs] Keep only pairs whose base symbol exactly matches. |
maxPairsPerQuery | integer | [searchPairs] Cap results per query (after ranking by liquidity). 0 = no cap. |
tokenAddresses | array | [tokenPairs] Token contract addresses to look up all pairs for. |
chainId | string | [tokenPairs] Optional chain (e.g. solana, bsc) to enable the batched endpoint. Empty = multi-chain auto lookup. |
maxPairsPerToken | integer | [tokenPairs] Cap pairs per token (after ranking by liquidity). 0 = no cap. |
pairs | array | [pairWatchlist · pairSecurity] Pairs as chain:pairAddress strings, e.g. solana:HXk…. |
useBatch | boolean | [pairWatchlist] Batch up to 30 addresses per request. Off = one request per pair. |
skipHolders | boolean | [pairSecurity] Omit the large top-holder arrays; keep the counts. |
useProxy | boolean | [pairSecurity] Route the Cloudflare-protected pair-details endpoint through Apify Proxy (recommended). |
proxyGroups | array | [pairSecurity] Apify proxy groups. RESIDENTIAL is the most reliable against Cloudflare. |
onlyChains | array | [boostedTokens · searchPairs · tokenPairs] Keep only rows on these chains (e.g. solana, bsc). Empty = all. |
onlyDexes | array | [searchPairs · tokenPairs] Keep only rows on these DEXes (e.g. raydium, uniswap). Empty = all. |
minLiquidityUsd | integer | [searchPairs · tokenPairs · pairWatchlist] Drop pairs below this liquidity. 0 = no filter. |
minVolume24hUsd | integer | [searchPairs · tokenPairs · pairWatchlist] Drop pairs below this 24h volume. 0 = no filter. |
maxConcurrency | integer | [all modes] Parallel API requests (1–30). The security mode is auto-clamped lower. |
How do I pass pairs? As
chain:pairAddressstrings (e.g.solana:BrMYU…) — used by bothpairWatchlistandpairSecurity. Which chains? All chains DexScreener indexes; narrow withonlyChains.
📤 Output
Every mode streams flat rows into the dataset — export to JSON, CSV, Excel, or pull from the API. Here is a trimmed boostedTokens record (one row per token, deduped across the boost/profile feeds and enriched with marketing-order history and the token's top pair):
{"source": "top-boosted,latest-boosted","chainId": "solana","tokenAddress": "Bk8Am...","baseTokenSymbol": "ROACH","boostAmount": 500,"boostTotalAmount": 1500,"ordersCount": 6,"approvedOrdersCount": 5,"firstOrderPaidAt": "2026-06-01T09:12:00.000Z","lastOrderPaidAt": "2026-06-05T08:30:00.000Z","priceUsd": 0.0000415,"liquidityUsd": 14249.9,"volumeH24": 204034,"priceChangeH24": 702.05,"marketCap": 41548.2,"url": "https://dexscreener.com/solana/bk8am...","scrapedAt": "2026-06-05T12:54:16.188Z"}
And a trimmed pairSecurity record — the richest mode, reading the same pair-details feed that powers the dexscreener.com pair page:
{"chainId": "solana","pairAddress": "BrMYU...","tokenSymbol": "BONK","tokenName": "Bonk","isHoneypot": false,"contractRenounced": true,"canMint": false,"canBlacklist": false,"hiddenOwner": false,"lpLockTotalPercentage": 100,"lpLocks": [{ "tag": "UNCX", "percentage": 100 }],"totalSupply": 88800000000000,"circulatingSupply": 70000000000000,"holdersCount": 912345,"lpHoldersCount": 540,"cgId": "bonk","cmcSymbol": "BONK","scrapedAt": "2026-06-05T12:59:13.996Z"}
💡 In
pairSecurity, setskipHolders: trueto omit the (large) top-holder arrays and keep just the counts.
💡 Use cases
- Pay-to-pump & marketing intel — see who's spending to promote tokens, how much, and when, via boost amounts and marketing-order history.
- Token discovery & screeners — feed watchlists, alerts and dashboards with trending, boosted and freshly searched pairs.
- Portfolio / watchlist monitoring — scheduled snapshots of your tracked pairs (price, liquidity, volume, txns).
- Risk & due diligence — honeypot, LP-lock and holder-concentration checks before every entry.
- Cross-chain research — pull pairs across Solana, Ethereum, BSC, Base and more in a single run.
- On-chain datasets — power charts, alpha feeds, ML features and market research.
👥 Who uses it
On-chain traders & memecoin degens · crypto quant / trading desks · DeFi analysts & researchers · alpha-group and Telegram-bot operators · portfolio and risk teams · data journalists tracking pay-to-pump activity · builders of screeners, dashboards and alerting pipelines.
💰 Pricing
This Actor runs on a simple pay-per-result model — you pay for the rows you extract, with no separate Apify platform fees to calculate. Try it on the free tier first, then scale up. See the Pricing tab on this page for the current rate.
❓ Frequently Asked Questions
Is this a DexScreener API alternative?
Yes. It reads DexScreener's public data with no API key and no login, so you can use it as a free DexScreener API alternative for boosted tokens, pair search, token pairs and security checks — all behind one mode switch.
Can I scrape DexScreener without an API key or login?
Yes — the discovery, search and pair modes use DexScreener's documented public API, so you can scrape DexScreener without an API key or login. Only pairSecurity routes through a residential proxy for its Cloudflare-protected endpoint.
How do I export DexScreener data to CSV or JSON? Every mode streams structured rows into the Apify dataset, so you can export DexScreener data to CSV, JSON or Excel — or pull it straight from the Apify API into a Google Sheet, S3 or your data warehouse.
How do I find newly boosted or trending tokens on DexScreener?
Run the default boostedTokens mode. It returns every promoted/trending token with its boost amount and marketing-order history, enriched with live price, liquidity and volume.
Can I check a DexScreener pair for a honeypot?
Yes. The pairSecurity mode runs a DexScreener honeypot check and security audit — honeypot, mint/burn/blacklist, renounce, LP locks and top holders — per chain:pairAddress.
Can I filter DexScreener pairs by minimum liquidity and volume?
Yes. In searchPairs or tokenPairs mode set minLiquidityUsd and minVolume24hUsd to drop illiquid or low-volume pairs and keep only tradable results.
Which chains does it support?
All chains DexScreener indexes — Solana, Ethereum, BSC, Base, Arbitrum, Polygon and the rest. Filter with onlyChains.
How much data can I get?
You can pull thousands of rows per run. Boosted-token feeds return the full current promoted set; searchPairs and tokenPairs return every matching pair (cappable with maxPairsPerQuery / maxPairsPerToken); pairWatchlist and pairSecurity scale with how many chain:pairAddress entries you pass.
Is it legal to scrape DexScreener? The Actor only collects publicly available market data. You are responsible for using it in compliance with DexScreener's terms of service and any applicable local regulations.
🔗 More crypto & Web3 scrapers by logiover
Building a full on-chain dataset? Pair this with the rest of the logiover crypto suite:
| Category | Actor |
|---|---|
| 🔥 DexScreener | Pair Security Scraper · Pair Watchlist Scraper · Search Pairs Scraper · Token Pairs Scraper |
| 🧠 GMGN smart money | Smart-Money Buy Signals · Smart-Money Wallet Leaderboard · Trending Memecoin Scanner |
| 🛡️ Token safety | GMGN Token Rugcheck Analytics · GMGN Token Holders Intelligence · Token Due-Diligence Report |
| 📊 Market data | CoinGecko Coins Market · Binance Spot Market |
| 💼 Extras | GMGN New Token Launch Detector · Web3 Crypto Jobs Scraper |
👉 Browse all logiover scrapers on Apify Store — 180+ actors across real estate, jobs, crypto, social media & B2B data.
⭐ Support & feedback
Found a bug or need an extra field? Open an issue on the Issues tab — response is usually fast. If this Actor saves you time, a ★★★★★ review on the Store page genuinely helps and is hugely appreciated. 🙏
⚖️ Legal
This Actor extracts only publicly available on-chain market data and is intended for legitimate research, analytics and trading-workflow use. You are responsible for complying with DexScreener's terms of service and any applicable local laws and regulations. Nothing here is financial advice.
📝 Changelog
2026-07-06
- ✨ README overhaul: keyword-rich structure, per-mode output samples & full field reference, ready-to-run example scenarios, sharper input table, and cross-linked crypto suite.
2026-07-01
- Maintenance pass: re-verified end-to-end on live data and confirmed successful runs within the 5-minute quality window on the default input.
- Sharpened Store metadata (SEO title & description) and expanded the FAQ with high-intent, long-tail questions for easier discovery in Google and Apify Store search.
- Added ready-to-run example tasks that cover common real-world use cases.
2026-06-15
- Reliability pass: re-verified end-to-end on live data with real-world inputs. Routine maintenance build.
2026-06-07
- Docs: added coverage for using the actor as a DexScreener API alternative, exporting pair/token data to CSV/JSON, and running honeypot security checks without an API key.
DexScreener API alternative · scrape DexScreener without API key · export DexScreener data to CSV/JSON · DexScreener honeypot checker · boosted & trending tokens scraper · DexScreener pair search · DexScreener pair data extraction