Skip to main content
GET
/
clips
/
{clipId}
Get a clip
curl --request GET \
  --url https://app.autoposting.ai/api-proxy/clips/{clipId} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "id": "clip_01HXYZ",
    "brandSlug": "acme-corp",
    "fileName": "my-podcast.mp4",
    "status": "ready",
    "duration": 3600,
    "fileSize": 524288000,
    "transcription": {
      "status": "completed"
    },
    "candidates": [
      {
        "id": "cand_01",
        "startMs": 120000,
        "endMs": 180000,
        "title": "Key insight on growth",
        "score": 92
      }
    ],
    "createdAt": "2024-01-01T00:00:00Z"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

clipId
string
required

Response

The requested clip.

success
boolean
Example:

true

data
object

A video clip with transcription status and AI-generated candidates.