VIDEO EDITING API

Edit Video with
Natural Language

Send a plain-English command. Get back edited video. V100's API transcribes, cuts, captions, removes silence, and exports in any format -- no timeline, no UI, no FFmpeg flags. Just one POST request.

terminal
curl -X POST https://api.v100.ai/v1/editor/edit \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "source": "https://storage.example.com/meeting.mp4",
    "instructions": "Remove all ums and ahs, cut to the best 60 seconds, add captions in Spanish",
    "output": { "format": "mp4", "resolution": "1080p" }
  }'