1import { ApifyClient } from 'apify-client';
2
3
4
5const client = new ApifyClient({
6 token: '<YOUR_API_TOKEN>',
7});
8
9
10const input = {
11 "profiles": [
12 "@fcbarcelona"
13 ],
14 "threads": [
15 "https://www.threads.com/@scruffy0805/post/DQuPeUSkX6J"
16 ],
17 "user_threads": [
18 "manchesterunited"
19 ],
20 "user_reposts": [
21 "manchesterunited"
22 ],
23 "user_replies": [
24 "nflonfox"
25 ],
26 "user_media": [
27 "nflonfox"
28 ]
29};
30
31
32const run = await client.actor("ivanvs/threads-scraper").call(input);
33
34
35console.log('Results from dataset');
36console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
37const { items } = await client.dataset(run.defaultDatasetId).listItems();
38items.forEach((item) => {
39 console.dir(item);
40});
41
42