Skip to main content
The response depends on whether you authenticate your API request:
  • With authentication, the response lists the servers assigned to your Algolia application’s cluster.
  • Without authentication, the response lists the servers for all Algolia clusters.

Usage

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

// Call the API
var response = await client.GetServersAsync();
// >LOG

See the full API reference

For more details about input parameters and response fields.
I