API Reference

Developer tools, FHIR schemas, and secure JSON hooks to integrate with Epic EHR and custom hospital dashboards.

REST API Endpoints

GET/api/v1/patients/{id}

Retrieve demographic, emergency contact, and clinical history summary for a patient.

Response Schema (200 OK)
{
  "id": "pat_982a1",
  "name": "Jane Doe",
  "bloodType": "A+",
  "vitals": {
    "systolicBP": 132,
    "diastolicBP": 82,
    "heartRate": 72
  }
}
POST/api/v1/clinical/soap

Trigger the AI SOAP Clinical Note Dictator analysis engine with custom transcriptions.

Response Schema (200 OK)
{
  "status": "PROCESSED",
  "soap": {
    "subjective": "Fatigue and evening headaches reported.",
    "objective": "BP 132/82 mmHg, HR 72 bpm.",
    "assessment": "Stage 1 Hypertension.",
    "plan": "Continue Lisinopril 10mg."
  }
}
GET/api/v1/compliance/audit

Fetch HIPAA compliance logs for a target security scope.

Response Schema (200 OK)
{
  "totalLogs": 240,
  "status": "HIPAA_SECURE",
  "events": [
    { "action": "VIEW_MEDICAL_RECORD", "ip": "192.168.1.10" }
  ]
}

Security Gateway

HIPAA TLS Policy

All requests must be encrypted with TLS v1.3. API requests originating from unverified IP spaces will trigger alerts in the Compliance Log.

Authorization HeadersAuthorization: Bearer sk_live_•••••••