1import { ApifyClient } from 'apify-client';
2
3
4
5const client = new ApifyClient({
6 token: '<YOUR_API_TOKEN>',
7});
8
9
10const input = {
11 "slugs": [
12 "bitcoin",
13 "ethereum",
14 "https://coinmarketcap.com/currencies/solana/"
15 ],
16 "mode": "market",
17 "newsPerCoin": 10,
18 "convert": "USD",
19 "sortBy": "market_cap",
20 "sortType": "desc",
21 "cryptoType": "all",
22 "includeCoinDetail": false,
23 "maxItems": 100,
24 "includeHistory": false,
25 "historyDays": 30
26};
27
28
29const run = await client.actor("publicmoney/coinmarketcap-scraper").call(input);
30
31
32console.log('Results from dataset');
33console.log(`๐พ Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
34const { items } = await client.dataset(run.defaultDatasetId).listItems();
35items.forEach((item) => {
36 console.dir(item);
37});
38
39