Pagination
Each/scrape call returns a single page of 25 items. To retrieve more results, increment the start offset and call again.
How it works
Thestart parameter controls which page of results you get:
Rules
startmust be a multiple of 25 (0, 25, 50, 75, …)startmaximum is 2475- Each response always returns 25 items or fewer (the last page may be partial)
The paging response object
Every successful response includes a paging object telling you the total available results:
Example: paginate through all results
Here’s a Python example that loops through every page until all results are collected:The example above adds a 6-second delay between pages. This keeps you safely under the default rate limit. See Rate Limiting for details.
Pagination limits
LinkedIn Sales Navigator caps search results. Even ifpaging.total reports a large number, you cannot paginate past start=2475:
- Maximum start offset:
2475 - Maximum retrievable items:
2500(100 pages × 25 items)
paging.total exceeds 2500, you can only access the first 2500 results. To reach the rest, narrow your search filters in Sales Navigator to split results into smaller sets.
Next steps
- Scrape API Reference — full request/response schema
- Rate Limiting — pace your pagination requests
- Getting Cookies — refresh expired session cookies