import BlueHive from '@bluehive/sdk';const client = new BlueHive({ apiKey: process.env['BLUEHIVE_API_KEY'], // This is the default and can be omitted});const response = await client.health.check();console.log(response.status);
Copy
{ "status": "ok"}
Health & Status
Health Check
Check the service health and ensure the API is running properly.
GET
/
v1
/
health
JavaScript
Copy
import BlueHive from '@bluehive/sdk';const client = new BlueHive({ apiKey: process.env['BLUEHIVE_API_KEY'], // This is the default and can be omitted});const response = await client.health.check();console.log(response.status);
Copy
{ "status": "ok"}
Assistant
Responses are generated using AI and may contain mistakes.