Skip to main content
POST
/
clips
/
{clipId}
/
specific-moments
Generate clips for specific moments
curl --request POST \
  --url https://app.autoposting.ai/api-proxy/clips/{clipId}/specific-moments \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "moments": [
    {
      "startMs": 60000,
      "endMs": 120000,
      "label": "Opening hook"
    }
  ]
}
'
{
  "success": true,
  "data": {}
}

Authorizations

Authorization
string
header
required

API key as Authorization: Bearer sk-social-...

Path Parameters

clipId
string
required

Body

application/json
moments
object[]
required

Array of timestamp ranges to generate clips for.

Response

Clip generation for specified moments started.

Standard success response envelope.

success
boolean
Example:

true

data
object