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.

Controls how filter scores are aggregated when using filter scoring.
Only applies to OR combinations of filters (not AND).

Options

true
The total score is the sum of all matched filter scores.
false
The total score is the maximum score among all matched filters.

Example

Current API clients

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