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 advancedSyntax parameter controls whether the advanced syntax features (exact phrase matching and word exclusion) are active or inactive. To control which features to activate, use the advancedSyntaxFeatures parameter.

Example

Current API clients

var response = await client.SetSettingsAsync(
  "INDEX_NAME",
  new IndexSettings { AdvancedSyntax = true }
);
IndexSettings settings = new IndexSettings();
settings.AdvancedSyntax = true;

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