Everything you need to embed AI documentation, clinical intelligence, and compliance into your healthcare software — from sandbox to production.
RESTful JSON APIs. Consistent auth. Predictable rate limits. Built for production healthcare software from day one.
import { CareScribe } from '@carescribe/sdk'; const client = new CareScribe({ apiKey: process.env.CARESCRIBE_API_KEY, environment: 'production', }); // Generate a SOAP note from a voice transcript const note = await client.notes.createSoap({ residentId: 'res_01HXYZ', transcript: voiceTranscript, noteType: 'progress', outputFormat: 'soap', }); // Analyze for risk signals const risks = await client.intelligence.analyzeRisk({ residentId: 'res_01HXYZ', noteId: note.id, }); console.log(risks.signals); // → [{ type: 'fall_risk', confidence: 0.91 }]
Official libraries for every major language. API keys, project scoping, and RBAC built in from the start.
Subscribe to any CareScribe event and receive instant HTTP callbacks to your endpoint — note approved, risk detected, compliance gap flagged.
{
"event": "risk.detected",
"id": "evt_01HXYZ4567",
"timestamp": "2026-01-15T14:32:00Z",
"data": {
"resident_id": "res_01HXYZ",
"risk_type": "fall_risk",
"confidence": 0.91,
"triggered_by_note": "note_01ABC",
"facility_id": "fac_sunrise"
}
}
Full sandbox environment with synthetic data. HIPAA-compliant production with end-to-end encryption, audit logs, and regional data residency.