Health AI Platform API Reference
Use this section when you need field-level contracts and concrete request or runtime shapes for the Health AI Platform.
Reference areas
Quick comparison
| Topic | Best page |
|---|---|
| Workflow schema | DSL Reference |
| Luna tool names and categories | Tools Reference |
| Python ML boundary | ML Endpoints |
Example: choosing the right reference
import { WorkflowEngine } from '@loop/workflow-engine';
import { MLClient } from '@loop/ml-client';
WorkflowEngine.load({
id: 'reference-demo',
name: 'Reference Demo',
version: '1.0.0',
steps: [{ id: 'check', type: 'check_biomarker' }],
});
const ml = new MLClient({ baseUrl: 'http://localhost:8000' });
const health = await ml.healthCheck();
console.log(health.status);Next steps
- Return to Health AI Platform
- Review Workflow docs
- Review Platform internals