SDK Documentation

📦 JavaScript SDK

Official JavaScript SDK for HealthCloud Marketplace API

v1.2.0
JavaScript

Easy Installation

One command to get started

Type-Safe

Full type definitions included

Well Documented

Comprehensive examples & guides

Installation

// Install with npm
npm install @healthcloud/sdk

// Or with yarn
yarn add @healthcloud/sdk

Authentication

Initialize the SDK with your credentials

import { HealthCloudClient } from '@healthcloud/sdk';

// Initialize with API key
const client = new HealthCloudClient({
  apiKey: 'your_api_key_here'
});

// Or use JWT token
const client = new HealthCloudClient({
  token: 'your_jwt_token'
});