Skip to main content
Required ACL: analytics This lets you check how many clicks the first, second, or tenth search results receive. An average of 0 when clickAnalytics is enabled means Algolia didn’t receive any click events for the queries.

Usage

// Initialize the client
var client = new AnalyticsClient(
  new AnalyticsConfig("ALGOLIA_APPLICATION_ID", "ALGOLIA_API_KEY", "ALGOLIA_APPLICATION_REGION")
);

// Call the API
var response = await client.GetClickPositionsAsync("index");
// >LOG

See the full API reference

For more details about input parameters and response fields.
I