# Active Microsoft Ads Audit

**Use case:** 

Focus only on currently active ads across the Bing/Microsoft Advertising network. Identify businesses advertising right now and filter out inactive campaigns for precise outreach.

## Input

```json
{
  "domains": [
    "sephora.com",
    "sephora.fr",
    "sephora.pl",
    "sephora.de",
    "dm.at",
    "notino.it",
    "notino.de",
    "rossmann.dk"
  ],
  "domainColumnName": "domain",
  "dateRange": "any"
}
```

## Output

```json
{
  "domain": {
    "label": "Domain",
    "format": "string"
  },
  "hasAds": {
    "label": "Has Ads (Ever)?",
    "format": "boolean"
  },
  "advertiserName": {
    "label": "Advertiser",
    "format": "string"
  },
  "advertiserId": {
    "label": "Advertiser ID",
    "format": "integer"
  },
  "matchedAdCount": {
    "label": "Matched Ads (All-Time)",
    "format": "integer"
  },
  "totalReportedResults": {
    "label": "Raw Keyword Matches (All-Time)",
    "format": "integer"
  },
  "dateRangePreset": {
    "label": "Date Range",
    "format": "string"
  },
  "startDateUsed": {
    "label": "From",
    "format": "string"
  },
  "endDateUsed": {
    "label": "To",
    "format": "string"
  },
  "adsFoundInDateRange": {
    "label": "Has Ads (In Range)?",
    "format": "boolean"
  },
  "matchedAdCountInDateRange": {
    "label": "Matched Ads (In Range)",
    "format": "integer"
  },
  "duplicateCount": {
    "label": "Duplicates in Input",
    "format": "integer"
  },
  "checkedAt": {
    "label": "Checked At",
    "format": "string"
  },
  "error": {
    "label": "Error",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Microsoft Ads Checker](https://apify.com/m3web/microsoft-ads-checker.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/m3web/microsoft-ads-checker.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/m3web/microsoft-ads-checker.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`).
