# Status ## Get API health status **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 - `status: "ok"` - `"ok"` ### Example ```http curl https://api-v2.nept.finance/api/v1/status/health ``` #### Response ```json { "status": "ok" } ```