Skip to main content
GET
/
v1
/
videos
/
{id}
/
clips
/
{clipId}
/
zooms
List zooms on a clip
curl --request GET \
  --url https://api.tella.com/v1/videos/{id}/clips/{clipId}/zooms \
  --header 'Authorization: Bearer <token>'
{
  "zooms": [
    {
      "durationMs": 2000,
      "id": "ef_abc123",
      "startTimeMs": 1000,
      "type": "manualZoom",
      "focusPoint": {
        "xPct": 50,
        "yPct": 50
      },
      "scale": 2
    }
  ]
}

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

Zooms on a clip

zooms
object[]
required