The OpusClip alternative with an API.
OpusClip is a genuinely good product — if you want to sit in a web editor and click. ClipWisp is for the other workflow: scripts, pipelines, and AI agents that turn long videos into captioned vertical clips without a human at the screen. Every plan ships the full API and the hosted MCP endpoint — no enterprise call, no gated tier. The CLI is sent on request.
An honest comparison.
| ClipWisp | OpusClip | |
|---|---|---|
| AI clip finding + captions + reframing | Yes | Yes |
| REST API | Every plan — one cw_ key | Enterprise / gated |
| CLI | --json, stable exit codes, on request | No |
| MCP server for agents | 9 tools, hosted at mcp.clipwisp.io | No |
| Twitch & Kick VODs | Yes, with section downloads | Limited |
| Editing model | Ask in plain language → whitelisted ops | Timeline editor |
| Publishing | Hand off to your own scheduler | Built-in scheduler |
| How usage is metered | One meter: 1 credit = 1 minute of source video | Upload minutes per month |
| Source video at $29/mo | 400 minutes (Starter) | 300 minutes (Pro) |
| Free tier | No — paid from day one | Yes |
Where OpusClip is stronger: a bigger template library, a built-in social scheduler, a free tier, and years of editor polish. If you clip by hand a few times a month, it may fit you better — this page is for people automating the loop.
400 minutes here, 300 there.
Both products meter the video you put in. At the same $29/month, ClipWisp Starter takes 400 minutes of source video and OpusClip Pro takes 300 — about a third more, on published list prices at the time of writing. Check both before you buy; prices move.
The difference that matters more is what the meter counts. ClipWisp charges once, at import, at one credit per minute — transcription, clip scans, edit plans, renders, captions, and exports are all included, bounded by per-source fair-use limits (5 scans and 20 rendered clips per source). So the cost of a job is ceil(duration_min), computable before you make the call. That is the property an agent needs and a dashboard can't give it.
Clipping is a pipeline, not a session.
A weekly podcast, a Twitch channel, a client roster — the work is identical every time: ingest, find the moments, render, caption, publish. That is a cron job, not an afternoon. The whole ClipWisp pipeline is four calls:
POST /api/v1/sources { "url": "https://youtu.be/..." }
POST /api/v1/creator-clips/candidates { "sourceId": "src_..." }
POST /api/v1/creator-clips/edit-plan { "candidate": { ... } }
POST /api/v1/creator-clips/render { "editPlanId": "...", "sourceUrl": "..." }Renders are idempotent (retry-safe for agents and workflow tools like n8n), errors are typed codes you can branch on, and your credit balance is readable via GET /usage before you spend it. Run out and the API answers HTTP 402 stating required, available, and deficit — an agent can act on that. Full contract in the docs.
Your clips leave in formats everything reads.
Every render comes back as an .mp4 and its captions as .srt. There is no proprietary project file and no viewer you have to keep paying for to open your own work. Fetch both over the API, or let the CLI write them straight to disk and hand them to whatever you already use.
Try the loop on your own footage.
Plans run $29–99/mo for 400–2,000 credits a month — every one includes the studio, the API, and the hosted MCP endpoint (the CLI on request); only the credit allowance and capacity limits differ. Need more in a given month? Top-up packs are one-time and never expire. Or start with the docs and an API key.