Model Health SDK Client
TypeScript/JavaScript client for the Model Health biomechanics SDK. Provides a clean, typed API over the WASM bindings.
import { ModelHealthService } from '@modelhealth/modelhealth';const client = new ModelHealthService({ apiKey: "your-api-key-here" });await client.init();const sessions = await client.sessionList(); Copy
import { ModelHealthService } from '@modelhealth/modelhealth';const client = new ModelHealthService({ apiKey: "your-api-key-here" });await client.init();const sessions = await client.sessionList();
Model Health SDK Client
TypeScript/JavaScript client for the Model Health biomechanics SDK. Provides a clean, typed API over the WASM bindings.
Example: Basic usage