Skip to content
Get started

Health check

client.health.check(RequestOptionsoptions?): HealthCheckResponse
GET/health

Returns OK if the service is running

ReturnsExpand Collapse
HealthCheckResponse = string

Health check

import FormbricksHub from '@formbricks/hub';

const client = new FormbricksHub();

const response = await client.health.check();

console.log(response);
Returns Examples