Dexscreener Tokens Scraper
7 days trial then $10.00/month - No credit card required now
Dexscreener Tokens Scraper
7 days trial then $10.00/month - No credit card required now
Scrape token data from DexScreener.com and uncover the next big crypto gem. Stay ahead with live price changes, liquidity, and market cap across multiple chains. Integrate easily into your workflow and make data-driven investment decisions.
🚀 DexScreener Tokens Scraper
Looking to supercharge your crypto insights? Get a front-row seat to emerging opportunities with our DexScreener Tokens Scraper, now available on the Apify Store. Harness the power of real-time token data across multiple blockchains and give your investment strategy a competitive edge.
Why Choose DexScreener Tokens Scraper?
For ambitious traders, savvy investors, insightful researchers, and forward-thinking developers, this Actor provides a streamlined solution for collecting, organizing, and analyzing crypto token data. Whether you’re scouting for the next breakout token or integrating fresh data into your analytics pipeline, our scraper puts you ahead of the curve.
💎 Key Benefits
- Early Access to Trends: Monitor tokens as soon as they list and catch hot trends before the crowd.
- Multi-Chain Versatility: From Ethereum to Solana, effortlessly explore a diversified crypto ecosystem.
- Data-Driven Decisions: Gain actionable insights from pricing, volume, liquidity, and more.
- Streamlined Integration: Export clean, structured JSON data ready for dashboards, analytics tools, or development projects.
🌐 Multi-Blockchain Coverage
Our Actor supports a broad spectrum of networks, giving you a holistic market view:
- Ethereum (ETH)
- Binance Smart Chain (BSC)
- Solana (SOL)
- Polygon (MATIC)
- Avalanche (AVAX)
- Fantom (FTM)
- ...and more!
📊 Comprehensive Data Fields
When you run the Actor, you’ll receive up-to-the-minute details, including:
- Token Names & Symbols
- Current Prices in USD
- Token Age Since Listing
- Transaction Counts & Unique Makers
- Trading Volume & Market Cap in USD
- Liquidity Data
- Short- and Long-Term Price Changes (5m, 1h, 6h, 24h)
Armed with this data, you can quickly spot promising projects, identify liquidity shifts, and react faster to market changes.
⚙️ Customizable Scraping Options
Control your scraping parameters to focus on what matters most:
- Targeted Chains & Pagination: Drill down into specific blockchains and paginate results.
- Filter Arguments: Customize queries (e.g., sort by liquidity or volume) to refine your analysis.
- Proxy Configuration: Optimize reliability and avoid rate limits with optional proxy settings.
📝 Input Parameters
Parameter | Type | Required | Description |
---|---|---|---|
chainName | string | Yes | Specify the blockchain network (e.g. ethereum ) |
fromPage | number | No | Starting page (default: 1 ) |
toPage | number | No | Ending page (default: 1 ) |
filterArgs | array | No | Add filters to refine results (e.g. sorting criteria) |
To obtain filterArgs:
- Visit dexscreener.com
- Apply your desired filters and sorting options on the website
- Copy the part of the URL after the "?" character
- Paste it into the filterArgs array
Example: If the URL after filtering is "dexscreener.com/solana?rankBy=trendingScoreH24&order=desc", then use:
"filterArgs": ["rankBy=trendingScoreH24&order=desc"]
Example Input
1{ 2 "chainName": "solana", 3 "fromPage": 1, 4 "toPage": 2, 5 "filterArgs": [ 6 "?rankBy=trendingScoreH24&order=desc", 7 ], 8}
📈 Example Output Structure
1{ 2 "tokenName": "Example Token", 3 "tokenSymbol": "EXT", 4 "address": "bqpbjdanrtn6kbok2nhfixfqqj8eyl4l3jlfscn2eozf", 5 "priceUsd": 0.1234, 6 "age": 120, 7 "transactionCount": 5000, 8 "volumeUsd": 150000.0, 9 "makerCount": 250, 10 "priceChange5m": 0.02, 11 "priceChange1h": -0.05, 12 "priceChange6h": 0.10, 13 "priceChange24h": 0.25, 14 "liquidityUsd": 500000.0, 15 "marketCapUsd": 10000000.0 16}
🔍 TypeScript Type
1interface TokenData { 2 tokenName: string; 3 address: string; 4 tokenSymbol?: string; 5 priceUsd?: number; 6 age?: number; 7 transactionCount?: number; 8 volumeUsd?: number; 9 makerCount?: number; 10 priceChange5m?: number; 11 priceChange1h?: number; 12 priceChange6h?: number; 13 priceChange24h?: number; 14 liquidityUsd?: number; 15 marketCapUsd?: number; 16}
🐍 Pydantic Model
1from pydantic import BaseModel 2from typing import Optional 3 4class TokenData(BaseModel): 5 tokenName: str 6 address: str 7 tokenSymbol: Optional[str] 8 priceUsd: Optional[float] 9 age: Optional[int] 10 transactionCount: Optional[int] 11 volumeUsd: Optional[float] 12 makerCount: Optional[int] 13 priceChange5m: Optional[float] 14 priceChange1h: Optional[float] 15 priceChange6h: Optional[float] 16 priceChange24h: Optional[float] 17 liquidityUsd: Optional[float] 18 marketCapUsd: Optional[float]
🚀 Get Started
Install, configure, and run the DexScreener Tokens Scraper today to stay on top of the crypto market. With granular control over output and the ability to zero in on emerging opportunities, this tool is your gateway to smarter, data-driven decision-making in the fast-paced world of digital assets.
Don’t miss a your scrape now and gain the actionable insights you need to thrive in the crypto market.
Actor Metrics
5 monthly users
-
1 star
86% runs succeeded
Created in Nov 2024
Modified 21 hours ago