BT
v3.4.0 · Latest release

Real-time body tracking, built for developers.

@bodytracker/sdk brings camera-based movement tracking, activity detection, and session analytics to any web app — a few lines of code, no ML expertise required.

quick-start.tsTypeScript
import { BodyTracker } from "@bodytracker/sdk"; const tracker = new BodyTracker({ apiKey: "bt_live_51H8x..." }); await tracker.init(); const session = await tracker.startSession({ activity: "walking" }); tracker.on("movementChanged", (event) => {  console.log("Movement changed:", event);});

Explore the docs