CoinMarketCap New Coins Scraper - Latest Crypto Listings avatar

CoinMarketCap New Coins Scraper - Latest Crypto Listings

Pricing

$100.00 / 1,000 results

Go to Apify Store
CoinMarketCap New Coins Scraper - Latest Crypto Listings

CoinMarketCap New Coins Scraper - Latest Crypto Listings

Track newly listed coins on CoinMarketCap with prices, market cap, volume, and metadata. Stay ahead of new crypto launches.

Pricing

$100.00 / 1,000 results

Rating

0.0

(0)

Developer

George Kioko

George Kioko

Maintained by Community

Actor stats

0

Bookmarked

8

Total users

1

Monthly active users

12 days ago

Last modified

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:

FeatureThis ScraperOther Scrapers
Contract AddressYesNo
Blockchain PlatformYesSome
Price Changes (1h/24h/7d/30d)YesSome
Social LinksYesSome
Filter by PlatformYesNo
Filter by TagsYesNo
Fast Mode (no socials)YesNo

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

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

OptionTypeDefaultDescription
maxCoinsnumber100How many coins to scrape (1-200)
includeSocialsbooleanfalseFetch social links (slower but more complete)
minMarketCapnumber0Minimum market cap filter
minVolume24hnumber0Minimum 24h volume filter
filterByPlatformstring""Filter by blockchain (Ethereum, Solana, BSC, etc.)
filterByTagsarray[]Filter by categories (meme, defi, ai, gaming)
sortBystring"dateAdded"Sort by: dateAdded, marketCap, volume, priceChange
sortOrderstring"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

ModeSpeedData Fields
Fast (includeSocials: false)~10 seconds25 fields
Full (includeSocials: true)~2-5 minutes30 fields

Pricing

$1.50 per 1,000 results - Simple, transparent pricing.

Coins/DayMonthly 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 ApifyClient
client = 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.

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