CoinMarketCap New Coins Scraper - Latest Crypto Listings
Pricing
$100.00 / 1,000 results
CoinMarketCap New Coins Scraper - Latest Crypto Listings
Scrapes newly listed cryptocurrencies from CoinMarketCap. Extracts token data, prices, social links (Twitter, Telegram, Website), and listing dates. Perfect for crypto traders and researchers.
Pricing
$100.00 / 1,000 results
Rating
0.0
(0)
Developer

George Kioko
Actor stats
0
Bookmarked
8
Total users
0
Monthly active users
7 days ago
Last modified
Categories
Share
CoinMarketCap New Coins Scraper
The only CoinMarketCap scraper with contract addresses. Get newly listed tokens with their smart contract addresses, blockchain platform, and social links - all in one API call.
Why This Scraper?
Other scrapers give you basic coin info. This one gives you everything you need to trade or research new tokens:
| Feature | This Scraper | Other Scrapers |
|---|---|---|
| Contract Address | Yes | No |
| Blockchain Platform | Yes | Some |
| Price Changes (1h/24h/7d/30d) | Yes | Some |
| Social Links | Yes | Some |
| Filter by Platform | Yes | No |
| Filter by Tags | Yes | No |
| Fast Mode (no socials) | Yes | No |
What You Get
30 data fields for each newly listed coin:
Token Identity
- Name, Symbol, Slug
- CMC Rank and ID
- Direct CMC URL
- Logo URL (64x64)
Price & Market Data
- Current Price (USD)
- Market Cap
- Fully Diluted Market Cap
- 24h Trading Volume
Price Changes
- 1 hour change %
- 24 hour change %
- 7 day change %
- 30 day change %
Supply Information
- Circulating Supply
- Total Supply
- Max Supply
Blockchain Info (Unique!)
- Platform Name (Ethereum, Solana, BSC, etc.)
- Platform Symbol
- Contract Address - Copy-paste ready for DEX trades
Categories
- Tags (DeFi, Meme, Gaming, AI, etc.)
Social Links (Optional)
- Website
- Twitter/X
- Telegram
- Discord
- GitHub
Quick Start
1. Basic Run (Fast Mode)
Get 100 new coins with all data except social links:
{"maxCoins": 100}
2. With Social Links
Include website, Twitter, Telegram, Discord, GitHub:
{"maxCoins": 50,"includeSocials": true}
3. Filter by Blockchain
Only Ethereum tokens:
{"maxCoins": 100,"filterByPlatform": "Ethereum"}
4. Filter by Category
Only meme coins or DeFi tokens:
{"maxCoins": 100,"filterByTags": ["meme", "defi"]}
5. High Volume Only
Filter out low-volume coins:
{"maxCoins": 100,"minVolume24h": 10000}
Sample Output
{"id": 28301,"name": "Example Token","symbol": "EXMPL","slug": "example-token","cmcRank": 2847,"cmcUrl": "https://coinmarketcap.com/currencies/example-token/","logoUrl": "https://s2.coinmarketcap.com/static/img/coins/64x64/28301.png","price": 0.00042,"marketCap": 420000,"fullyDilutedMarketCap": 4200000,"volume24h": 85000,"percentChange1h": 2.5,"percentChange24h": 15.3,"percentChange7d": -8.2,"percentChange30d": 125.5,"circulatingSupply": 1000000000,"totalSupply": 10000000000,"maxSupply": 10000000000,"platform": "Ethereum","platformSymbol": "ETH","contractAddress": "0x1234567890abcdef1234567890abcdef12345678","tags": ["meme", "ethereum-ecosystem"],"dateAdded": "2024-01-15T10:30:00.000Z","lastUpdated": "2024-01-16T08:45:00.000Z","scrapedAt": "2024-01-16T09:00:00.000Z","website": "https://example-token.com","twitter": "https://twitter.com/exampletoken","telegram": "https://t.me/exampletoken","discord": "https://discord.gg/exampletoken","github": null}
Input Options
| Option | Type | Default | Description |
|---|---|---|---|
maxCoins | number | 100 | How many coins to scrape (1-200) |
includeSocials | boolean | false | Fetch social links (slower but more complete) |
minMarketCap | number | 0 | Minimum market cap filter |
minVolume24h | number | 0 | Minimum 24h volume filter |
filterByPlatform | string | "" | Filter by blockchain (Ethereum, Solana, BSC, etc.) |
filterByTags | array | [] | Filter by categories (meme, defi, ai, gaming) |
sortBy | string | "dateAdded" | Sort by: dateAdded, marketCap, volume, priceChange |
sortOrder | string | "desc" | Sort direction: desc or asc |
Use Cases
For Traders
- Get contract addresses to trade on DEXs immediately
- Filter by volume to find coins with liquidity
- Track price changes across timeframes
For Bot Developers
- Automated new listing alerts
- Feed contract addresses directly to trading bots
- Filter by platform for chain-specific bots
For Researchers
- Track listing trends by category
- Analyze which platforms get the most new tokens
- Build dashboards with logo URLs included
For Newsletter Writers
- Automate "new coins this week" sections
- Include social links for reader research
- Filter by market cap to feature serious projects
Performance
| Mode | Speed | Data Fields |
|---|---|---|
| Fast (includeSocials: false) | ~10 seconds | 25 fields |
| Full (includeSocials: true) | ~2-5 minutes | 30 fields |
Pricing
$1.50 per 1,000 results - Simple, transparent pricing.
| Coins/Day | Monthly Cost |
|---|---|
| 25 | ~$1.13 |
| 50 | ~$2.25 |
| 100 | ~$4.50 |
Integration Examples
Zapier/Make Webhook
Schedule daily runs and send results to Slack, Discord, or email.
API Call
const { ApifyClient } = require('apify-client');const client = new ApifyClient({ token: 'YOUR_API_TOKEN' });const run = await client.actor('john.haley.81.front.head/coinmarketcap-new-coins-scraper').call({maxCoins: 50,filterByPlatform: 'Ethereum',includeSocials: true});const { items } = await client.dataset(run.defaultDatasetId).listItems();console.log(items);
Python
from apify_client import ApifyClientclient = ApifyClient("YOUR_API_TOKEN")run = client.actor("john.haley.81.front.head/coinmarketcap-new-coins-scraper").call(run_input={"maxCoins": 50,"filterByPlatform": "Solana"})for item in client.dataset(run["defaultDatasetId"]).iterate_items():print(f"{item['name']}: {item['contractAddress']}")
FAQ
Why should I use this instead of the CoinMarketCap API?
CMC API costs $79-499/month and doesn't provide contract addresses in the basic tier. This scraper is ~$5/month for daily use and includes contract addresses.
How often is the data updated?
Data is scraped in real-time from CoinMarketCap. Run it whenever you need fresh data.
Can I filter by multiple platforms?
Currently one platform at a time. Use multiple runs with different filters if needed.
Why are social links optional?
Fetching social links requires visiting each coin's detail page, which is slower. Fast mode skips this for users who only need price/contract data.
Support
Issues? Questions? Open an issue on the Actor page or contact through Apify.
Ready to find the next 100x before everyone else? Try it free