Skip to main content
GET
/
v1
/
videos
/
{id}
/
clips
/
{clipId}
/
silences
Get silent ranges in a clip
curl --request GET \
  --url https://api.tella.com/v1/videos/{id}/clips/{clipId}/silences \
  --header 'Authorization: Bearer <token>'
{
  "silences": [
    {
      "durationMs": 800,
      "startTimeMs": 4500
    }
  ]
}

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"

Query Parameters

minDurationMs
integer

Minimum silence duration to report, in ms. Defaults to 200.

Required range: x <= 9007199254740991
Example:

500

Response

OK

Silent ranges in a clip

silences
object[]
required