Skip to main content
GET
/
v1
/
videos
/
{id}
/
clips
/
{clipId}
/
sources
List sources for a clip
curl --request GET \
  --url https://api.tella.com/v1/videos/{id}/clips/{clipId}/sources \
  --header 'Authorization: Bearer <token>'
{
  "sources": [
    {
      "id": "su_abc",
      "medium": "ScreenMic",
      "dimensions": {
        "height": 1080,
        "width": 1920
      },
      "durationMs": 12450,
      "url": "<string>"
    }
  ]
}

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

Sources of a clip

sources
object[]
required