Skip to main content
  • Type: integer
  • Default: 1,000
  • Scope: settings
The paginationLimitedTo parameter defines the maximum number of results that can be accessed using pagination. This limit applies to all paginated queries using page and hitsPerPage. For example, if set to 1000, records beyond the 1000th hit won’t be accessible.

Usage

  • Increasing the limit can impact performance. Only raise it if needed.
  • A lower limit can help prevent full data scraping.
  • Sorting beyond the default 1,000th hit isn’t guaranteed.

Example

Current API clients

var response = await client.SetSettingsAsync(
  "ALGOLIA_INDEX_NAME",
  new IndexSettings { PaginationLimitedTo = 1000 }
);
IndexSettings settings = new IndexSettings();
settings.PaginationLimitedTo = 1000;

index.SetSettings(settings);
I