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
Planned REST API with clear documentation and typed examples for common app workflows.
planned-api-sketch.ts
const movekit = createMoveKitClient({ apiKey: 'mk_live_...' })
// Search exercisesconst exercises = await movekit.exercises.search({ muscle: 'chest', equipment: 'cable', limit: 10,})
// Get signed download URLconst url = await movekit.exercises.createDownloadUrl( exercises[0].id, { format: 'mp4' })
console.log(url)// https://api.movekit.com/downloads/...