1import { ApifyClient } from 'apify-client';
2
3
4
5const client = new ApifyClient({
6 token: '<YOUR_API_TOKEN>',
7});
8
9
10const input = {
11 "schemaVersion": "1.0",
12 "requestId": "auto",
13 "watchId": "nike-us-demo-bootstrap",
14 "rows": [
15 {
16 "platform": "google",
17 "advertiserId": "AR16735076323512287233",
18 "pageId": null,
19 "adId": null,
20 "creativeId": "CR16854540057166479361",
21 "isActive": true,
22 "format": "IMAGE",
23 "copy": {
24 "primaryText": "Unisex Nike Sportswear Tech Fleece",
25 "headline": "Product Listing Ad Rendering Service",
26 "description": "Nike Sportswear hoodie"
27 },
28 "cta": "Shop now",
29 "landingDomains": [
30 "nike.com"
31 ],
32 "media": [
33 "https://tpc.googlesyndication.com/archive/simgad/3463432638140085355?sig=demo"
34 ],
35 "offer": {
36 "kind": null,
37 "value": null,
38 "currency": null,
39 "code": null
40 },
41 "evidence": {
42 "sourceRef": "https://adstransparency.google.com/advertiser/AR16735076323512287233/creative/CR16854540057166479361",
43 "sourceRowId": "CR16854540057166479361"
44 },
45 "scrapedAt": "2026-08-06T11:03:09Z"
46 }
47 ],
48 "coverage": {
49 "status": "complete",
50 "comparable": true,
51 "closed": true,
52 "evidenceRef": "buyer://public-demo/coverage",
53 "expectedRows": 1
54 },
55 "sourceContract": {
56 "productionActorId": "zinin/brand-evidence-source",
57 "productionActorVersion": "0.1.0",
58 "adapter": "google-ads",
59 "adapterVersion": "1.0.0",
60 "queryScope": {
61 "advertiserId": "AR16735076323512287233",
62 "country": "US"
63 },
64 "entityIdentity": {
65 "advertiserId": "AR16735076323512287233"
66 }
67 }
68};
69
70
71const run = await client.actor("zinin/competitor-ad-change-brief").call(input);
72
73
74console.log('Results from dataset');
75console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
76const { items } = await client.dataset(run.defaultDatasetId).listItems();
77items.forEach((item) => {
78 console.dir(item);
79});
80
81