Start an async job to extract ads from the LinkedIn Ad Library. Returns a `jobId` immediately — poll `GET /linkedin-ad-l…
Authentication
No API key — create one in the dashboard
Body
One or more LinkedIn Ad Library search URLs (max 25). Build these at linkedin.com/ad-library/search using filters like accountOwner, countries, and dateOption.
import requests url = "https://api.coldiq.com/v1/linkedin-ad-library/search" headers = { "Authorization": "Bearer ", "Content-Type": "application/json" } response = requests.post(url, headers=headers) print(response.json())