Introduction
The LinkedIn Scraper API lets you extract structured data from LinkedIn Sales Navigator search results. Send a request with your LinkedIn cookies and a search URL, and receive clean JSON data back — no browser automation, no HTML parsing.What you can scrape
The API supports two data types from LinkedIn Sales Navigator:Key features
- Single JSON endpoint — one
POST /scrapecall returns structured data - Deterministic pagination — fixed 25 items per page, controllable via the
startoffset - Rate-limit aware — built-in delays and backoff to keep your sessions safe
- Typed responses — every field is documented in the API Reference
Typical workflow
- Get an API key — contact your API provider to receive a key
- Get your LinkedIn cookies — extract
li_atandJSESSIONIDfrom your browser session (see Getting Cookies) - Build a Sales Navigator search URL — go to LinkedIn Sales Navigator, apply your filters, and copy the search URL
- Call the API — send the cookies, URL, and your API key to
POST /scrape
Next steps
- Quickstart — make your first request
- Authentication — how API keys work
- Getting Cookies — extract LinkedIn session cookies
- Pagination — page through large result sets