Skip to main content
GET
/
clips
List clips
curl --request GET \
  --url https://app.autoposting.ai/api-proxy/clips \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "clips": [
      {
        "id": "clip_01HXYZ",
        "brandSlug": "acme-corp",
        "fileName": "my-podcast.mp4",
        "status": "ready",
        "duration": 3600,
        "createdAt": "2024-01-01T00:00:00Z"
      }
    ],
    "total": 1,
    "page": 1,
    "limit": 20
  }
}

Authorizations

Authorization
string
header
required

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

Query Parameters

brandSlug
string

Filter clips by brand.

Example:

"acme-corp"

page
number
default:1

Page number (1-indexed). Default: 1.

limit
number
default:20

Items per page. Default: 20, max: 50.

Required range: x <= 50

Response

A page of clips.

success
boolean
Example:

true

data
object