LinkedIn Ads Scraper
LinkedIn Ads Scraper is a Goldmine Actor published on Apify.
What it extracts
Every field below comes from the Actor’s published dataset schema.
| Field | Description | Type |
|---|---|---|
advertiserName | advertiserName | text |
adFormat | adFormat | text |
headline | headline | text |
bodyText | bodyText | text |
availabilityDuration | availabilityDuration | text |
totalImpressions | totalImpressions | text |
adUrl | adUrl | text |
Input parameters
Generated from the Actor’s input schema — the same fields the Apify console shows.
| Parameter | Type | Required | Description |
|---|---|---|---|
startUrls | array | Optional | LinkedIn Ad Library search URLs (e.g. https://www.linkedin.com/ad-library/search?keyword=nike or https://www.linkedin.com/ad-library/search?accountOwner=Zalando) |
keyword | string | Optional | Keyword to search ads for (e.g. "marketing"). Used when no startUrls are provided. |
advertiserName | string | Optional | Advertiser / company name to search ads for (e.g. "Zalando"). |
countries | array | Optional | Optional ISO country codes to filter ads by audience country (e.g. US, GB, DE). |
dateOption | string | Optional | Filter ads by when they ran. |
scrapeAdDetails | boolean | Optional | Open each ad's detail page to collect full ad copy, all creative variants, advertiser, paying entity, run dates, impressions and targeting. Disable for a faster, lighter run that only returns the search-card data. |
maxItems | integer | Optional | Maximum number of ads to scrape per search. |
proxyConfiguration | object | Optional | Proxy configuration. LinkedIn rate-limits aggressively, so residential proxies are recommended. |
API access
Run this Actor from your own code over the Apify API.
{}curl -X POST \
"https://api.apify.com/v2/acts/logical_scrapers~linkedin-ads-scraper/run-sync-get-dataset-items?token=YOUR_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{}'import { ApifyClient } from 'apify-client'
const client = new ApifyClient({ token: 'YOUR_API_TOKEN' })
const run = await client.actor('logical_scrapers~linkedin-ads-scraper').call({})
const { items } = await client.dataset(run.defaultDatasetId).listItems()
console.log(items)from apify_client import ApifyClient
client = ApifyClient("YOUR_API_TOKEN")
run = client.actor("logical_scrapers~linkedin-ads-scraper").call(run_input={})
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
print(item)Runs are executed on Apify. Create an API token in your Apify account, then call the Actor over REST or with the official client for your language. The same input object works in the Apify console, so you can test interactively before automating.
Pricing
Data not currently verified. This Actor's pricing model is not declared in our source repository.
Current rates are published on the Apify listing and can change, so they are not duplicated here. See pricing on Apify
Reliability
Measured across all public Goldmine Actors on Apify, 2026-08-24. This is an account-level figure, not a per-Actor benchmark — per-Actor speed and completeness benchmarks are not yet published. Source.