Developer Documentation

Everything you need to integrate with HealthCloud — FHIR APIs, AI model deployment, connectors, and SDKs — all HIPAA-compliant and production-ready.

HIPAA CompliantFHIR R4 NativeSOC 2 Type IIFDA-Ready Tooling
healthcloud-sdk-example.ts
// Initialize HealthCloud SDK
import { HealthCloudClient } from '@healthcloud/sdk';

const client = new HealthCloudClient({
  apiKey: process.env.HEALTHCLOUD_API_KEY,
  environment: 'production',
  fhirVersion: 'R4',
});

// Deploy a clinical AI model
const deployment = await client.models.deploy({
  modelId: 'radiology-classifier-v2',
  fhirResources: ['Observation', 'DiagnosticReport'],
  compliance: { hipaa: true, fdaReady: true },
});

// Query FHIR observations
const observations = await client.fhir.search('Observation', {
  patient: 'Patient/123',
  code: '8867-4', // Heart rate LOINC
});

console.log('Endpoint:', deployment.endpoint);
console.log('Records:', observations.total);