Skip to main content
GET
/
v1
/
videos
/
{id}
/
clips
/
{clipId}
/
transcript
/
cut
Get cut transcript
curl --request GET \
  --url https://api.tella.com/v1/videos/{id}/clips/{clipId}/transcript/cut \
  --header 'Authorization: Bearer <token>'
{
  "words": [
    {
      "endTimeMs": 1800,
      "hidden": false,
      "index": 12,
      "startTimeMs": 1500,
      "text": "Hello"
    }
  ]
}

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

Clip transcript with cuts applied — what viewers hear.

words
object[]
required

Words on the playback timeline (cuts removed, times relative to the clip's playback start).