1import { ApifyClient } from 'apify-client';
2
3
4
5const client = new ApifyClient({
6 token: '<YOUR_API_TOKEN>',
7});
8
9
10const input = {
11 "ids": [
12 "1uvyZBs4IZYRebHIB1747m"
13 ],
14 "myids": {
15 "input": [
16 {
17 "id": "1uvyZBs4IZYRebHIB1747m",
18 "process": "get",
19 "category": "track"
20 },
21 {
22 "id": "3jXMLVtLsok8PpCWFj8d5l",
23 "process": "get",
24 "category": "playlist"
25 }
26 ]
27 },
28 "proxy": {
29 "useApifyProxy": true
30 }
31};
32
33
34const run = await client.actor("canadesk/spotify").call(input);
35
36
37console.log('Results from dataset');
38console.log(`๐พ Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
39const { items } = await client.dataset(run.defaultDatasetId).listItems();
40items.forEach((item) => {
41 console.dir(item);
42});
43
44