Skip to main content
The CutPro API lets you automate the entire AI clipping flow: you send a video link, the AI finds the best moments, and you receive clips ready to render and publish, all over HTTP requests.

In a hurry? Go straight to the Quickstart and generate your first clip via the API in just a few minutes.

Base URL

Every route uses the prefix:
https://api.cut.pro/api/v1

The typical flow

The API follows the same path as the studio, in steps you control per request:
1

Analyze (no cost)

Preview the metadata and credit cost of a public link, without being charged.POST /clips/info
2

Send for clipping

Submit the video. Credits are debited immediately.POST /clips
3

Track the submission

Poll until status becomes completed or failed.GET /clips/{videoId}/submissions/{submissionId}
4

Fetch the generated clips

Get the clips the AI produced, with timestamps, rating, and URLs.GET /clips/{videoId}/submissions/{submissionId}/clips
5

Apply a template (optional)

Apply one of your templates in bulk to the clips.POST /clips/{videoId}/submissions/{submissionId}/apply_template
6

Render each clip

Generate the final MP4 of each clip and poll until done.POST /clips/{videoId}/submissions/{submissionId}/clips/{clipId}/renderGET /renders/{renderId}
7

Download and publish

Download the rendered video and, if you want, publish it to your social accounts.GET /renders/{renderId}/download · POST /posts

Next steps

Authentication

How to generate your key and send it in requests, including workspaces.

Quickstart

A complete example, from link to rendered MP4.

Workspace and credits

How credit consumption works on each submission.

Publishing

How to publish rendered clips to social networks.
Last modified on June 2, 2026