Facebook Ads Creative Monitor
Pricing
from $4.64 / 1,000 actionable insights
Facebook Ads Creative Monitor
Turn advertiser or creative records into ranked, evidence-backed paid-ad intelligence signals.
Facebook Ads Creative Monitor
Pricing
from $4.64 / 1,000 actionable insights
Turn advertiser or creative records into ranked, evidence-backed paid-ad intelligence signals.
You can access the Facebook Ads Creative Monitor programmatically from your own applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, youโll need an Apify account and your API token, found in Integrations settings in Apify Console.
1import { ApifyClient } from 'apify-client';2
3// Initialize the ApifyClient with your Apify API token4// Replace the '<YOUR_API_TOKEN>' with your token5const client = new ApifyClient({6 token: '<YOUR_API_TOKEN>',7});8
9// Prepare Actor input10const input = {11 "records": [12 {13 "adArchiveId": "ad-demo-001",14 "pageName": "Peak Coffee",15 "headline": "Cold brew subscription โ 30% off",16 "body": "New summer bundle. Shop now.",17 "ctaText": "SHOP_NOW",18 "status": "ACTIVE",19 "impressions": 840000,20 "spend": 12800,21 "reach": 611000,22 "daysActive": 42,23 "creativeCount": 3,24 "observedAt": "2026-08-02T10:00:00Z",25 "productWorkflow": "facebook-ads-creative-monitor"26 }27 ],28 "previousRecords": [29 {30 "adArchiveId": "ad-demo-001",31 "pageName": "Peak Coffee",32 "headline": "Cold brew delivered",33 "body": "Subscribe today.",34 "ctaText": "SHOP_NOW",35 "status": "ACTIVE",36 "impressions": 510000,37 "spend": 8900,38 "reach": 432000,39 "daysActive": 28,40 "creativeCount": 2,41 "observedAt": "2026-07-19T10:00:00Z",42 "productWorkflow": "facebook-ads-creative-monitor"43 }44 ]45};46
47// Run the Actor and wait for it to finish48const run = await client.actor("night111/facebook-ads-creative-monitor").call(input);49
50// Fetch and print Actor results from the run's dataset (if any)51console.log('Results from dataset');52console.log(`๐พ Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);53const { items } = await client.dataset(run.defaultDatasetId).listItems();54items.forEach((item) => {55 console.dir(item);56});57
58// ๐ Want to learn more ๐? Go to โ https://docs.apify.com/api/client/js/docsThe Apify API client for JavaScript is the official library that allows you to use Facebook Ads Creative Monitor API in JavaScript or TypeScript, providing convenience functions and automatic retries on errors.
Install the apify-client
$npm install apify-clientOther API clients include: