Skip to main content
POST
/
posts
Create a post
curl --request POST \
  --url https://api.cut.pro/api/v1/posts \
  --header 'Content-Type: application/json' \
  --header 'X-Api-Key: <api-key>' \
  --data '
{
  "videos": [
    {
      "editId": "<string>",
      "targets": [
        {
          "connectionId": "<string>",
          "metadata": {}
        }
      ]
    }
  ],
  "scheduled_at": "<string>"
}
'
{
  "post_id": "<string>",
  "item_count": 123,
  "scheduled_at": "<string>"
}

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

videos
object[]
required

List of clips to publish. Each item has an editId plus per-target metadata.

Minimum array length: 1
scheduled_at
string | null

ISO 8601 future timestamp to schedule the post. Omit for immediate publish.

Response

Response for status 201

post_id
string
required
item_count
number
required
scheduled_at
string | null
required
status
enum<string>
required
Available options:
pending,
processing
Last modified on May 27, 2026