Skip to Content
Health Ai PlatformAPI ReferenceHealth AI Platform API Reference

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

TopicBest page
Workflow schemaDSL Reference
Luna tool names and categoriesTools Reference
Python ML boundaryML 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