How to Scrape LinkedIn Ad Library Search Ads with Python
Search the LinkedIn Ad Library by company or keyword using Python. This comprehensive guide will walk you through the entire process, from setup to implementation.
Overview
What You'll Learn
- Setting up your Python environment
- Installing the required HTTP client
- Authenticating with SociaVault API
- Making requests to LinkedIn Ad Library
- Handling responses and errors
What You'll Get
- Access to search data
- JSON formatted responses
- Real-time data access
- Scalable solution
- Error handling patterns
Prerequisites
1. API Key
First, you'll need a SociaVault API key to authenticate your requests.
2. Development Environment
Make sure you have the following installed:
- Python installed
- A code editor (VS Code, Sublime, etc.)
- Command line interface access
Implementation
Step 1: Install HTTP Client
We'll use requests to make HTTP requests.
pip install requestsStep 2: API Implementation
Now let's make a request to the LinkedIn Ad Library API using Python. Replace YOUR_API_KEY with your actual API key.
import requests
api_key = "YOUR_API_KEY"
url = "https://api.sociavault.com/linkedin-ad-library/search?company=Microsoft"
headers = {
"x-api-key": api_key,
"Content-Type": "application/json"
}
try:
response = requests.get(url, headers=headers)
response.raise_for_status()
data = response.json()
print("Response:", data)
except requests.exceptions.RequestException as e:
print("Error:", e)Testing Your Code
API Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| company | string | Yes | Example: Microsoft |
Expected Response
You should receive a structured JSON response containing the search data.
{
"success": true,
"ads": [
{
"id": "823975056",
"description": "The countdown has begun – grab your discounted tickets now for #FabConEurope in Vienna!\nJoin us for an unforgettable experience filled with deep learning, expert insights, and top-tier networking opportunities.\n\nRegister today and be part of the future of innovation: http://msft.it/6043sMFt3 \n\n#MicrosoftFabric",
"poster": "Microsoft",
"posterTitle": "Promoted",
"targeting": {
"language": "Targeting includes English",
"location": "Targeting includes Netherlands",
"company": "Exclusion targeting applied"
},
"image": "https://media.licdn.com/dms/image/v2/D5610AQH8f223ANJdoQ/image-shrink_1280/B56ZiDa0MFHkAQ-/0/1754551502346?e=2147483647&v=beta&t=ZuZ0zUs1KInS8ysVO7FxzmlzxHP9B_JX2b6kdMU8GT4",
"adType": "Single Image Ad",
"advertiser": "Microsoft",
"advertiserLinkedinPage": "https://www.linkedin.com/company/1035",
"destinationUrl": "http://msft.it/6043sMFt3?trk=ad_library_ad_preview_headline_content",
"adDuration": "Ran from Aug 10, 2025 to Aug 10, 2025",
"startDate": "2025-08-10T05:00:00.000Z",
"endDate": "2025-08-10T05:00:00.000Z",
"totalImpressions": "< 1k"
}
],
"paginationToken": "756412693-1754569518292",
"isLastPage": false
}Best Practices
Error Handling
Implement comprehensive error handling and retry logic for failed requests. Log errors properly for debugging.
Caching
Cache responses when possible to reduce API calls and improve performance. Consider data freshness requirements.
Security
Never expose your API key in client-side code. Use environment variables and secure key management practices.
Troubleshooting
Unauthorized
Check your API key is correct and properly formatted in the x-api-key header.
Payment Required
You ran out of credits and need to buy more.
Not Found
The resource (user, video, etc.) might not exist or be private.
Too Many Requests
You have exceeded your rate limit. Slow down your requests.
Frequently Asked Questions
How much does it cost to scrape LinkedIn Ad Library?
SociaVault offers 50 free API calls to get started. After that, pricing starts at $10 for 5k requests with volume discounts available.
Is it legal to scrape LinkedIn Ad Library data?
Scraping publicly available data is generally considered legal. We only collect public data that is accessible without logging in.
How fast can I scrape LinkedIn Ad Library?
Our API handles the rate limiting for you. You can make requests as fast as your plan allows.
What data format does the API return?
All API responses are returned in JSON format, making it easy to integrate with any programming language or application.
Related Tutorials
Search Ads in Other Languages
Search Ads with Node.jsSearch Ads with JavaScriptSearch Ads with PHPSearch Ads with RubyReady to Start Scraping?
Get started with 50 free API calls. No credit card required. Stop worrying about proxies and captchas.