## Get API health status `status.check_health() -> StatusCheckHealthResponse` **get** `/api/v1/status/health` `status` will always be `ok` whenever a 200 response is provided. Clients can check response data or response status code to confirm health. ### Returns - `class StatusCheckHealthResponse: …` API health response - `status: Literal["ok"]` - `"ok"` ### Example ```python from neptune_api_v2 import NeptuneAPIV2 client = NeptuneAPIV2() response = client.status.check_health() print(response.status) ``` #### Response ```json { "status": "ok" } ```