Health

    GET

    Get health of MeiliSearch server.

    JavaScript

    Python

    Ruby

    Go

    1. -X GET 'http://localhost:7700/health'
    1. client.health()
      1. // health() return an Err() if the server is not healthy, so this example would panic due to the unwrap
      2. client.health().await.unwrap();

      Response:

      1. {
      2. }