# Meta Ads Presence Enricher Task

**Use case:** 

Check any list of local businesses for live Facebook and Instagram ads. A name and city are enough. Returns page IDs, landing domains, and phone numbers.

## Input

```json
{
  "leads": [
    {
      "name": "Acme Plumbing",
      "city": "Phoenix",
      "state": "AZ"
    }
  ],
  "searchTerm": "plumber",
  "location": "Phoenix, AZ",
  "maxLeads": 200,
  "confidenceCutoff": 0.7,
  "keywordFallback": false
}
```

## Output

```json
{
  "name": {
    "label": "Business name",
    "format": "string"
  },
  "city": {
    "label": "City",
    "format": "string"
  },
  "state": {
    "label": "State",
    "format": "string"
  },
  "runs_meta_ads": {
    "label": "Runs Meta ads",
    "format": "text"
  },
  "ads_sampled": {
    "label": "Ads sampled",
    "format": "integer"
  },
  "matched_page": {
    "label": "Facebook page name",
    "format": "string"
  },
  "page_id": {
    "label": "Facebook page ID",
    "format": "string"
  },
  "discovered_domain": {
    "label": "Ad landing domain",
    "format": "string"
  },
  "phone": {
    "label": "Phone number",
    "format": "string"
  },
  "match_confidence": {
    "label": "Match confidence",
    "format": "number"
  },
  "resolution_method": {
    "label": "Resolution method",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Meta Ads Presence Enricher](https://apify.com/cranberry_bedrock/meta-ads-presence-enricher) with a specific input configuration. Visit the [Actor detail page](https://apify.com/cranberry_bedrock/meta-ads-presence-enricher) to learn more, explore other use cases, and run it yourself.