Collect and analyze public Linkedin Ad Library data
文档
Scavio Linkedin Ads
试用Search ads running across LinkedIn by keyword and/or advertiser company id, returning each ad's advertiser, ad copy, format, promoted label, thumbnail and a detail link, then open one ad in full with its media, headline, who paid for it and the advertiser's company URL. 2 endpoints, 6 credits each, structured JSON.
它能做什么
Search ads running across LinkedIn by keyword and/or advertiser company id, returning each ad's advertiser, ad copy, format, promoted label, thumbnail and a detail link, then open one ad in full with its media, headline, who paid for it and the advertiser's company URL. 2 endpoints, 6 credits each, structured JSON.
技能文档
LinkedIn Ad Library via Scavio
Search the ads running across LinkedIn by keyword and/or advertiser, then open any ad in full with its creative, headline, format, who paid for it and the advertiser's company URL. Both endpoints return structured JSON.
When to trigger
Use this skill when the user asks to:
- Find LinkedIn ads for a keyword, topic or advertiser
- See what ads a company is running on LinkedIn and pull the creative
- Build a competitor swipe file of B2B / sponsored-content ads
- Get one ad in full: advertiser, ad copy, headline, format, media and who paid for it
- Do paid-social, demand-gen or ad-intelligence research on LinkedIn
Setup
Get a free API key at scavio.dev (50 free credits to get started, no card required):
export SCAVIO_API_KEY=sk_live_your_key
Every request is a POST with a JSON body and:
Authorization: Bearer $SCAVIO_API_KEY
Endpoints
Base URL: https://api.scavio.dev. Every LinkedIn Ads endpoint costs 6 credits.
| Endpoint | Credits | What it returns |
|---|---|---|
POST /api/v1/linkedin/ads/search | 6 | The ads on the page for a keyword and/or advertiser: ad_id, advertiser, ad copy, format, creative type, sponsored flag, headline, thumbnail, advertiser logo, and a detail link |
POST /api/v1/linkedin/ads/detail | 6 | One ad in full: advertiser and company URL, who paid for it, ad copy, headline, format, the media items, and a detail link |
Parameters
ads/search
Provide a keyword or a company_id (or both).
| Parameter | Type | Default | Description |
|---|---|---|---|
keyword | string | -- | Keyword to search ads by |
company_id | string | -- | The advertiser's numeric LinkedIn company id |
countries | string or string[] | -- | One or more 2-letter country codes to restrict results to |
date_option | string | -- | Restrict to ads seen within a recent time window |
ads/detail
Provide an ad_id or a url (one is required).
| Parameter | Type | Default | Description |
|---|---|---|---|
ad_id | string | -- | The ad's numeric id, as carried by every search result |
url | string | -- | A full ad detail URL (linkedin.com/ad-library/detail/...), as an alternative to ad_id |
Scope notes
ads/searchrequires a keyword or a company_id - a bare call with neither is rejected.searchreturns the ads on one page and atotal_seencount; it does not deep-paginate the whole library.company_idis the numeric LinkedIn company id (the digits in a company URL likelinkedin.com/company/1035), not the vanity handle.detailcarriesimpressionsanddemographicsonly where LinkedIn publishes them - for most non-political ads these arenull, andabout.run_datesmay benulltoo.- The
thumbnail,advertiser_logoandmedia[].urlare LinkedIn CDN links - fetch them promptly.
Examples
import requests
BASE = "https://api.scavio.dev"
# Your key from https://scavio.dev. Load it from your environment or secret
# store in real code - keep it out of source control.
API_KEY = "sk_your_key_here"
HEADERS = {"Authorization": f"Bearer {API_KEY}"}
# 1. Search ads by keyword, restricted to the US
search = requests.post(f"{BASE}/api/v1/linkedin/ads/search", headers=HEADERS,
json={"keyword": "ai search", "countries": "US"}).json()
print(search["data"]["total_seen"], "ads seen")
for ad in search["data"]["ads"]:
print(ad["ad_id"], ad["advertiser"], ad["format"])
# 2. Every ad from one advertiser, by numeric company id
by_company = requests.post(f"{BASE}/api/v1/linkedin/ads/search", headers=HEADERS,
json={"company_id": "1035"}).json()
# 3. One ad in full, by an id from search
ad_id = search["data"]["ads"][0]["ad_id"]
detail = requests.post(f"{BASE}/api/v1/linkedin/ads/detail", headers=HEADERS,
json={"ad_id": ad_id}).json()
d = detail["data"]
print(d["advertiser"], d["paid_for_by"], d["headline"])
curl:
curl -s https://api.scavio.dev/api/v1/linkedin/ads/search \
-H "Authorization: Bearer $SCAVIO_API_KEY" \
-H "Content-Type: application/json" \
-d '{"keyword":"ai search","countries":"US"}'
Response shape
Every response uses the envelope { data, response_time, credits_used, credits_remaining }. On search, data carries ads[] plus a total_seen count; on detail, data is the ad object with a media[] array and an about block.
Guardrails
- Every LinkedIn Ads call is 6 credits - more than the other social endpoints, so paginate deliberately.
- Never fabricate advertisers, ad copy, headlines or media. Only return what the API returned.
impressionsanddemographicsare usuallynull- do not invent spend or reach figures when they are not present.- CDN media links expire - fetch them promptly rather than storing the URL.
Failure handling
400means an invalid request - most oftensearchcalled with neitherkeywordnorcompany_id, ordetailwith neitherad_idnorurl. Fix and retry.401means the API key is invalid or missing. CheckSCAVIO_API_KEY.404means the ad id or URL was not found.429means rate or usage limit exceeded. Wait before retrying. See rate limits.502/503mean the source is temporarily unavailable - wait a few seconds and retry.- If
SCAVIO_API_KEYis not set, prompt the user to export it before continuing.
相关技能
Looks up LinkedIn company, product, and showcase pages by ID via the Crawlora API, returning clean JSON. Use when the user wants a company's LinkedIn profile info, a product page, or a showcase page — instead of scraping LinkedIn directly. Covers company/product/showcase pages only, not personal LinkedIn profiles.
Pull LinkedIn person and company profiles, their posts, job listings and post comments as structured JSON. 9 endpoints from 1 to 30 credits, four of them paginated, for prospecting, recruiting, and market research.
Research any brand's live ads for free with the public ad libraries — Meta, Google, TikTok, LinkedIn, Snap — and turn what you find into hooks and angles.
Collect and analyze public LinkedIn data
Search the Meta Ad Library by keyword or Facebook Page id and walk full cursor pagination through every ad, with creative, run dates, platforms and political spend. 3 endpoints, 1 credit per page.