Skip to main content
  • Type: boolean
  • Default: true
  • Scope: search
The analytics parameter controls whether a search query is recorded in Algolia Analytics. This lets you exclude specific queries from analytics reporting.

Usage

  • If true (default), the query is tracked and included in analytics reports.
  • If false, the query is excluded from analytics.

Example

Current API clients

index.Search(new Query("")
{
    Analytics = false
});
index.Search(new Query("")
{
    Analytics = false
});
I