1import { ApifyClient } from 'apify-client';
2
3
4
5const client = new ApifyClient({
6 token: '<YOUR_API_TOKEN>',
7});
8
9
10const input = {
11 "startUrls": [
12 {
13 "url": "https://www.facebook.com/ads/library/?active_status=all&ad_type=all&country=US&q=walmart&search_type=keyword_unordered&media_type=all"
14 }
15 ],
16 "pageIds": [
17 "20531316728"
18 ],
19 "keywords": [
20 "walmart"
21 ],
22 "targets": [
23 {
24 "type": "PAGE_ID",
25 "value": "20531316728"
26 }
27 ]
28};
29
30
31const run = await client.actor("bigdotdata/meta-ad-library-facebook-instagram-messenger").call(input);
32
33
34console.log('Results from dataset');
35console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
36const { items } = await client.dataset(run.defaultDatasetId).listItems();
37items.forEach((item) => {
38 console.dir(item);
39});
40
41