Skip to main content
The percentileComputation parameter controls whether the query’s processing time is included in the ninetieth and ninety-ninth percentiles, as available in the Algolia dashboard.

Example

Current API clients

var response = await client.SearchSingleIndexAsync<Hit>(
  "INDEX_NAME",
  new SearchParams(new SearchParamsObject { Query = "query", PercentileComputation = false })
);
index.Search(new Query("")
{
    PercentileComputation = false;
});
Last modified on March 16, 2026