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

  1. Create an account and get $5 free credits.
  2. Create an API key in the dashboard.
  3. Send a Bearer-authenticated request to a /v1/* endpoint or create an async job with POST /v1/jobs.
  4. 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

Important setup pages