Skip to main content
GET
/
v1
/
videos
/
{id}
/
clips
/
{clipId}
/
layouts
List layouts on a clip
curl --request GET \
  --url https://api.tella.com/v1/videos/{id}/clips/{clipId}/layouts \
  --header 'Authorization: Bearer <token>'
{
  "layouts": [
    {
      "id": "<string>",
      "durationMs": 5000,
      "layout": {
        "kind": "fullscreen",
        "screenFit": "cover",
        "style": "regular"
      },
      "media": {
        "height": 123,
        "imageUrl": "<string>",
        "type": "image",
        "width": 123
      },
      "startTimeMs": 0,
      "transitionStyle": "spring"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://tella.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key obtained from your Tella account settings

Path Parameters

id
string
required

Video identifier

Example:

"vid_abc123def456"

clipId
string
required

Clip identifier

Example:

"cl_xyz789ghi012"

Response

OK

Layouts on a clip

layouts
object[]
required