SDKs & Libraries

Official client libraries for popular programming languages

Getting Started

Follow these steps to get started with any of our SDKs:

1. Install the SDK

npm install @healix/sdk

2. Initialize the client

import { Healix } from '@healix/sdk';

const client = new Healix({
  apiKey: 'YOUR_API_KEY',
  environment: 'production'
});

3. Make your first API call

// List supported devices
const devices = await client.devices.list();
console.log(devices);

Community Libraries

Libraries and integrations built by our community

React HooksCommunity

React hooks for integrating Healix into React applications.

View on GitHub
Flutter SDKCommunity

Flutter integration for cross-platform mobile apps.

View on GitHub