scrapecreators_facebook_ads

Pack: scrapecreators · Endpoint: https://gateway.pipeworx.io/scrapecreators/mcp

Search the Facebook / Meta Ad Library by keyword or advertiser and return active ad creatives:

Parameters

NameTypeRequiredDescription
querystringyesKeyword or advertiser/page name to search for, e.g. “running shoes” or “Nike”
countrystringno2-letter country code to scope the search, e.g. “US” (default ALL)
statusstringnoAd status filter: “ACTIVE”, “INACTIVE”, or “ALL” (default ACTIVE)
media_typestringnoMedia type filter, e.g. “IMAGE”, “VIDEO”, “ALL” (default ALL)
ad_typestringnoAd type filter, e.g. “ALL”, “POLITICAL_AND_ISSUE_ADS” (optional)
search_typestringnoMatch mode, e.g. “keyword_unordered” or “keyword_exact_phrase” (optional)
cursorstringnoPagination cursor returned in a previous response (optional)
_apiKeystringyesScrapeCreators API key (sign up at https://app.scrapecreators.com)

Example call

Arguments

{
  "query": "running shoes",
  "country": "US",
  "_apiKey": "your-scrapecreators-api-key"
}

curl

curl -X POST https://gateway.pipeworx.io/scrapecreators/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"scrapecreators_facebook_ads","arguments":{"query":"running shoes","country":"US","_apiKey":"your-scrapecreators-api-key"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('scrapecreators_facebook_ads', {
  "query": "running shoes",
  "country": "US",
  "_apiKey": "your-scrapecreators-api-key"
});

More examples

{
  "query": "Nike",
  "country": "US",
  "status": "ACTIVE",
  "media_type": "VIDEO",
  "_apiKey": "your-scrapecreators-api-key"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "scrapecreators": {
      "url": "https://gateway.pipeworx.io/scrapecreators/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 24, 2026