# Which of my prospects are running ads right now?

**Use case:** 

Check a list of prospect domains against Google, LinkedIn and Meta ad libraries at once to see which ones are actively running ads right now.

## Input

```json
{
  "domains": [
    "hubspot.com",
    "salesforce.com",
    "stripe.com",
    "notion.com"
  ],
  "testRun": false,
  "onlyFound": false,
  "includeKeywords": [],
  "excludeKeywords": [],
  "checkGoogleAds": true,
  "checkLinkedinAds": true,
  "checkMetaAds": true,
  "columns": [
    "advertiserName",
    "googleAdsFound",
    "googleAdsCount",
    "googleAdsLast30Days",
    "googleAdsReason",
    "linkedinAdsFound",
    "linkedinAdsCount",
    "linkedinAdsReason",
    "metaAdsFound",
    "metaAdsCount",
    "metaAdsReason",
    "anyAds",
    "platformsActive",
    "sampleAdUrls"
  ],
  "maxConcurrency": 5
}
```

## Output

```json
{
  "query": {
    "label": "Company domain or name submitted",
    "format": "string"
  },
  "found": {
    "label": "Found?",
    "format": "boolean"
  },
  "status": {
    "label": "Status",
    "format": "string"
  },
  "message": {
    "label": "Details",
    "format": "string"
  },
  "advertiserName": {
    "label": "Advertiser name",
    "format": "string"
  },
  "googleAdsFound": {
    "label": "Running Google Ads?",
    "format": "boolean"
  },
  "googleAdsCount": {
    "label": "Google Ads in library (est.)",
    "format": "number"
  },
  "googleAdsLast30Days": {
    "label": "Google Ads shown in last 30 days (est.)",
    "format": "number"
  },
  "googleAdsReason": {
    "label": "Google note",
    "format": "string"
  },
  "linkedinAdsFound": {
    "label": "Running LinkedIn Ads?",
    "format": "boolean"
  },
  "linkedinAdsCount": {
    "label": "LinkedIn Ads in library",
    "format": "number"
  },
  "linkedinAdsReason": {
    "label": "LinkedIn note",
    "format": "string"
  },
  "metaAdsFound": {
    "label": "Running Meta Ads?",
    "format": "boolean"
  },
  "metaAdsCount": {
    "label": "Meta active ads (est., up to 50)",
    "format": "number"
  },
  "metaAdsReason": {
    "label": "Meta note",
    "format": "string"
  },
  "anyAds": {
    "label": "Running ads anywhere?",
    "format": "boolean"
  },
  "platformsActive": {
    "label": "Platforms active",
    "format": "array"
  },
  "sampleAdUrls": {
    "label": "Sample ad URLs",
    "format": "array"
  },
  "scrapedAt": {
    "label": "Checked at",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Ads Presence Unified Lookup: Google/LinkedIn/Meta from $16/1k](https://apify.com/accountable_eel/ads-presence-unified-lookup.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/accountable_eel/ads-presence-unified-lookup.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/accountable_eel/ads-presence-unified-lookup.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`).
