Skip to main content
This endpoint is intended for infrastructure-level monitoring and availability checks. The returned value reflects latency measured on Algolia’s internal monitoring index and is reported in milliseconds. This metric isn’t intended to represent the indexing performance of an individual application or index. To measure when an indexing operation has completed for your application, use the waitTask method.

Usage

// Initialize the client
var client = new MonitoringClient(
  new MonitoringConfig("ALGOLIA_APPLICATION_ID", "ALGOLIA_API_KEY")
);

// Call the API
var response = await client.GetIndexingTimeAsync("c1-de");

// print the response
Console.WriteLine(response);

See the full API reference

For more details about input parameters and response fields.
Last modified on April 23, 2026