import BlueHive from '@bluehive/sdk';const client = new BlueHive({ apiKey: process.env['BLUEHIVE_API_KEY'], // This is the default and can be omitted});const version = await client.version.retrieve();console.log(version.version);
Copy
{ "version": "<string>"}
Health & Status
API Version
Retrieve the current version of the BlueHive API.
GET
/
v1
/
version
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 version = await client.version.retrieve();console.log(version.version);
Copy
{ "version": "<string>"}
Assistant
Responses are generated using AI and may contain mistakes.