## Check `client.health.check(RequestOptionsoptions?): HealthCheckResponse` **get** `/health` Returns OK if the service is running ### Returns - `HealthCheckResponse = string` ### Example ```typescript import FormbricksHub from '@formbricks/hub'; const client = new FormbricksHub(); const response = await client.health.check(); console.log(response); ```