Skip to main content
POST
/
videos
/
upload
Start an upload
curl --request POST \
  --url https://api.cut.pro/api/v1/videos/upload \
  --header 'Content-Type: application/json' \
  --header 'X-Api-Key: <api-key>' \
  --data '
{
  "file_name": "<string>",
  "file_size": 123,
  "content_type": "<string>"
}
'
{
  "video_id": "<string>",
  "upload_url": "<string>",
  "expires_in": 123
}

Documentation Index

Fetch the complete documentation index at: https://cut.pro/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-Api-Key
string
header
required

Body

file_name
string
required

Original file name. Used to detect the extension and as a fallback title.

file_size
number
required

Size of the file in bytes. Must be <= 2 GB.

content_type
string

MIME type — defaults to video/mp4. Must match the bytes you PUT.

Response

Response for status 200

video_id
string
required

Generated video ID. Pass it to POST /videos/upload/complete after the PUT.

upload_url
string
required

Presigned PUT URL — upload the raw bytes here.

expires_in
number
required

Seconds until upload_url expires.

Last modified on May 27, 2026