InsightSocial API
LinkedIn

Ads › Search

GET
/v1/linkedin/ads/search

Returns ads from the LinkedIn Ad Library matching a company, keyword, country, or date range, with each ad's copy and the advertiser behind it.

Use it to find what a competitor is running, then pass a result's ad URL to ad for the complete record.

100 credits per call.

Re-running the exact same call within 1h is free.

Paginates by cursor — see Pagination.

x-api-key<token>

Your key from the dashboard. It starts with isk_.

In: header

Query Parameters

company?string

The company name to search for. 'Microsoft' for example. Provide at least one of: company, keyword, companyId.

keyword?string

The keyword to search for. Provide at least one of: company, keyword, companyId.

companyId?string

The company id to search for. Provide at least one of: company, keyword, companyId.

countries?string

Comma separated list of countries. Example: US,CA,MX

startDate?string

Start date to search for. Format: YYYY-MM-DD

endDate?string

End date to search for. Format: YYYY-MM-DD

paginationToken?string

Pagination token to paginate through results

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/v1/linkedin/ads/search"
{  "success": true,  "platform": "instagram",  "endpoint": "/v1/instagram/profile/posts",  "data": {    "items": [      "…"    ],    "dropped": 0  },  "pagination": {    "next_cursor": "is2.eyJwIjoyfQ",    "has_more": true,    "page_size": 12  },  "credits_used": 20,  "credits_remaining": 9980,  "request_id": "req_1a2b3c4d5e6f",  "cached": false,  "idempotent_replay": false,  "charge_reason": "miss",  "free_call": false}