Skip to main content
GET
/
v1
/
videos
/
{id}
/
clips
/
{clipId}
/
transcript
/
uncut
Get uncut transcript
curl --request GET \
  --url https://api.tella.com/v1/videos/{id}/clips/{clipId}/transcript/uncut \
  --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 on the source recording timeline.

words
object[]
required

Words on the original recording timeline (cuts NOT applied).