Skip to main content
  • Type: boolean
  • Default: true
  • Scope: search
The synonyms parameter controls whether Algolia uses synonym matching for the current search query. By default, synonyms are enabled and applied during search. Use this parameter to turn them off for specific queries.

Example

Current API clients

index.Search(new Query("query")
{
    Synonyms = true
});
index.Search(new Query("query")
{
    Synonyms = true
});
I