
CoinMarketCap Crypto Scraper
Pricing
$1.80 / 1,000 results

CoinMarketCap Crypto Scraper
CoinMarketCap Crypto Scraper is your ultimate tool for comprehensive market analysis. Effortlessly gather detailed data on prices, market caps, volumes, and more for all listed cryptocurrencies. Perfect for portfolio tracking, market research, and price monitoring. Fast, reliable, and easy to use!
5.0 (3)
Pricing
$1.80 / 1,000 results
6
Total users
51
Monthly users
22
Runs succeeded
>99%
Response time
0.75 hours
Last modified
4 months ago
Couldn't limit run result to 1000 results.
Closed
I tried this actor as:
const { defaultDatasetId } = await client
.actor("louisdeconinck/coinmarketcap-crypto-scraper")
.call({
limit: 2,
input: {
limit: 5,
},
maxRequestRetries: 2,
proxyConfigurationOptions: {
useApifyProxy: true,
apifyProxyGroups: ["RESIDENTIAL"],
apifyProxyCountry: "RS",
},
websites: [${url}
],
});
const { items } = await client.dataset(defaultDatasetId).listItems();
And i got 20k+ results and was charged $34!
What I was doing wrong? I want to limit response to 1000 results and $1.8 charge.
Any help?
Louis Deconinck (louisdeconinck)
I'll rework the scraper to make this easier, but currently you can you pass maxItems.
Documentation: https://docs.apify.com/api/client/js/reference/interface/ActorCallOptions#maxItems
Something like this:
1const { defaultDatasetId } = await client 2 .actor("louisdeconinck/coinmarketcap-crypto-scraper") 3 .call({ 4 maxItems: 1000, 5 }); 6 7const { items } = await client.dataset(defaultDatasetId).listItems();