BlueHive Developer Documentation

Build powerful occupational health integrations with the BlueHive API. Our platform provides RESTful endpoints and multi-language SDKs for employers, providers, and health tech platforms.

Multiple SDKsRESTful APIComprehensive Guides

Quick Start

Get up and running in minutes.

1

Get your API key

Sign up for a BlueHive account and generate an API key from the developer settings in your dashboard.

2

Install an SDK

Install the BlueHive SDK for your preferred programming language.

Terminal
npm install @bluehive/sdk
3

Make your first request

Initialize the client and make an API call.

TypeScript
import BlueHive from '@bluehive/sdk';

const client = new BlueHive({
  apiKey: process.env.BLUEHIVE_API_KEY,
});

const health = await client.health.check();
console.log(health.status); // "ok"
Chat with Bea