MomentIQ.dev quickstart
Run your first API call in under 60 seconds. Use the API from your backend, not browser JavaScript, so your API key stays private.
- Sign up and get $5 free credits.
- Create an API key in the dashboard.
- Use a public media URL or create an upload.
- Create a job and poll until it completes.
curl https://api.momentiq.dev/v1/jobs \
-H "Authorization: Bearer $MOMENTIQ_API_KEY" \
-H "Content-Type: application/json" \
-d '{"endpoint":"video/clip-window","media_url":"https://example.com/video.mp4","start":60,"end":120}'
For long media, use async jobs. For local files, first call upload presign, PUT the file to storage, then use the returned media_url in your job request.