Clipform

List available Remotion compositions

Returns all available video compositions with their IDs, descriptions, and input prop schemas. Use this to discover what can be rendered via POST /creative/render.

GET
/creative/compositions

Authorization

Authorization
Required
Bearer <token>

API key (cf_*) passed as Bearer token

In: header

curl -X GET "https://api.clipform.io/v1/creative/compositions" \
  -H "Authorization: Bearer <token>"

Composition manifest

[
  {
    "id": "string",
    "description": "string",
    "width": 0,
    "height": 0,
    "fps": 0,
    "durationInFrames": 0,
    "props": {}
  }
]