
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
13
Total users
97
Monthly users
24
Runs succeeded
98%
Issues response
0.75 hours
Last modified
6 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:
const { defaultDatasetId } = await client.actor("louisdeconinck/coinmarketcap-crypto-scraper").call({maxItems: 1000,});const { items } = await client.dataset(defaultDatasetId).listItems();