MomentIQ.dev API Docs
MomentIQ.dev provides one API key and three endpoint groups for AI-ready media intelligence: video, audio, and timeline. Endpoints return timestamped JSON that can be chained into workflows for clipping, search, summarization, and media understanding.
Quickstart
- Create an account and get $5 free credits.
- Create an API key in the dashboard.
- Send a Bearer-authenticated request to a
/v1/*endpoint or create an async job withPOST /v1/jobs. - Poll
GET /v1/jobs/{job_id}for queued, running, completed, or failed status.
curl https://api.momentiq.dev/v1/jobs \
-H "Authorization: Bearer $MOMENTIQ_API_KEY" \
-H "Content-Type: application/json" \
-d '{"endpoint":"audio/detect-energy","media_url":"https://example.com/video.mp4"}'
Endpoint groups
- Video APIs: best frames, best frame near a timestamp, text frames, cuts, dedupe frames, thumbnail score, clip window, and clip near.
- Audio APIs: silence, laughter, energy, speakers, music, isolate speech, suggest cut points, topic segments, semantic chunks, and find words.
- Timeline APIs: merge, find nearest, and suggest ranges.