# Summarize Facebook Ads Creative and Offer Signals for AI Agents

**Use case:** 

Summarize Facebook Ads Creative and Offer Signals for AI Agents. Use this task to analyze facebook ads creative and offer and return decision-ready structured signals; replace the example input with your own target data.

## Input

```json
{
  "currentItems": [
    {
      "id": "ad1",
      "title": "Free trial - AI CRM",
      "impressions": 420000,
      "clicks": 16800,
      "engagementRate": 4.2,
      "activeDays": 8,
      "adsCount": 6,
      "offerStrength": 88,
      "ctaStrength": 82
    },
    {
      "id": "ad2",
      "title": "Save 20% annual plan",
      "impressions": 160000,
      "clicks": 3900,
      "engagementRate": 2.1,
      "activeDays": 31,
      "adsCount": 3,
      "offerStrength": 66,
      "ctaStrength": 58
    }
  ],
  "previousItems": [
    {
      "id": "ad1",
      "title": "AI CRM",
      "impressions": 280000,
      "clicks": 9200,
      "engagementRate": 3.4,
      "activeDays": 5,
      "adsCount": 4,
      "offerStrength": 72,
      "ctaStrength": 70
    }
  ],
  "maxItems": 20000,
  "mcpToolName": "",
  "mcpToolArguments": {},
  "mcpFailOnError": false,
  "mcpActionPreset": "AUTO_SAFE_WRITE"
}
```

## Output

```json
{
  "entityId": {
    "label": "Entity Id",
    "format": "string"
  },
  "signalScore": {
    "label": "Signal Score",
    "format": "number"
  },
  "changeScore": {
    "label": "Change Score",
    "format": "number"
  },
  "agentAction": {
    "label": "Agent Action",
    "format": "string"
  },
  "agentReason": {
    "label": "Agent Reason",
    "format": "string"
  },
  "observedAt": {
    "label": "Observed At",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Facebook Ads Creative & Offer Intelligence](https://apify.com/quanmatrix/facebook-ads-creative-offer-intelligence.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/quanmatrix/facebook-ads-creative-offer-intelligence.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/quanmatrix/facebook-ads-creative-offer-intelligence.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
