Coming Soon
MoveKit API
Integrate premium exercise animations directly into your fitness app or platform. Search, stream, and deliver content at scale.
Search & Discovery
Query exercises by muscle group, equipment, movement pattern, and more. Full-text search with synonyms.
Rich Metadata
Access detailed exercise data: muscles worked, instructions, difficulty, and tags. Structured JSON responses.
Signed Downloads
Generate time-limited signed URLs for secure, on-demand video delivery to your users.
Developer-First
RESTful API with comprehensive documentation, SDKs, and webhook support for your workflow.
example.ts
import { MoveKit } from '@movekit/sdk'
const client = new MoveKit({ apiKey: 'mk_live_...' })
// Search exercisesconst exercises = await client.exercises.search({ muscle: 'chest', equipment: 'cable', limit: 10,})
// Get signed download URLconst url = await client.exercises.getDownloadUrl( exercises[0].id, { resolution: 'hd', format: 'mp4' })
console.log(url)// https://cdn.movekit.com/exercises/cable-fly-hd.mp4?token=...