Skip to main content

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

The start parameter controls which page of results you get:

Rules

  • start must be a multiple of 25 (0, 25, 50, 75, …)
  • start maximum is 2475
  • Each response always returns 25 items or fewer (the last page may be partial)
If start exceeds the total available results minus one page size, the API returns an empty data array. Always check paging.total to know when to stop.

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 if paging.total reports a large number, you cannot paginate past start=2475:
  • Maximum start offset: 2475
  • Maximum retrievable items: 2500 (100 pages × 25 items)
If 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