Skip to main content

Documentation Index

Fetch the complete documentation index at: https://algolia.com/llms.txt

Use this file to discover all available pages before exploring further.

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(
  "INDEX_NAME",
  new IndexSettings { PaginationLimitedTo = 1000 }
);
IndexSettings settings = new IndexSettings();
settings.PaginationLimitedTo = 1000;

index.SetSettings(settings);
Last modified on March 23, 2026