curl --request GET \
--url https://api.tella.com/v1/videos/{id} \
--header 'Authorization: Bearer <token>'{
"video": {
"id": "vid_abc123def456",
"name": "Getting Started with Tella",
"description": "Learn how to create and share your first video",
"views": 1234,
"aspectRatio": "16:9",
"createdAt": "2024-01-15T10:30:00.000Z",
"updatedAt": "2024-01-15T14:45:00.000Z",
"durationSeconds": 125.5,
"chapters": [
{
"id": "ch_abc123",
"title": "Introduction",
"description": "Overview of what we'll cover",
"timestampSeconds": 0
}
],
"transcript": {
"status": "ready",
"language": "en",
"text": "Hello and welcome to this tutorial...",
"sentences": [
{
"text": "Hello and welcome to this tutorial.",
"startSeconds": 0.5,
"endSeconds": 2.3
}
]
},
"thumbnails": {
"xl": {
"jpg": "https://cdn.tella.tv/thumbnails/vid_abc123/1920x1080.jpg",
"webp": "https://cdn.tella.tv/thumbnails/vid_abc123/1920x1080.webp",
"gif": "https://cdn.tella.tv/thumbnails/vid_abc123/640x360.gif",
"mp4": "https://cdn.tella.tv/thumbnails/vid_abc123/640x360.mp4"
},
"large": {
"jpg": "https://cdn.tella.tv/thumbnails/vid_abc123/1920x1080.jpg",
"webp": "https://cdn.tella.tv/thumbnails/vid_abc123/1920x1080.webp",
"gif": "https://cdn.tella.tv/thumbnails/vid_abc123/640x360.gif",
"mp4": "https://cdn.tella.tv/thumbnails/vid_abc123/640x360.mp4"
},
"medium": {
"jpg": "https://cdn.tella.tv/thumbnails/vid_abc123/1920x1080.jpg",
"webp": "https://cdn.tella.tv/thumbnails/vid_abc123/1920x1080.webp",
"gif": "https://cdn.tella.tv/thumbnails/vid_abc123/640x360.gif",
"mp4": "https://cdn.tella.tv/thumbnails/vid_abc123/640x360.mp4"
},
"small": {
"jpg": "https://cdn.tella.tv/thumbnails/vid_abc123/1920x1080.jpg",
"webp": "https://cdn.tella.tv/thumbnails/vid_abc123/1920x1080.webp",
"gif": "https://cdn.tella.tv/thumbnails/vid_abc123/640x360.gif",
"mp4": "https://cdn.tella.tv/thumbnails/vid_abc123/640x360.mp4"
}
},
"exports": [
{
"exportId": "exp_abc123def456",
"status": "completed",
"progress": 100,
"downloadUrl": "https://cdn.tella.tv/exports/vid_abc123/video.mp4",
"updatedAt": "2024-01-15T15:00:00.000Z"
}
],
"settings": {
"defaultPlaybackRate": 1,
"captionsDefaultEnabled": true,
"transcriptsEnabled": true,
"publishDateEnabled": true,
"viewCountEnabled": true,
"commentsEnabled": true,
"commentEmailsEnabled": false,
"downloadsEnabled": true,
"rawDownloadsEnabled": false,
"linkScope": "public",
"searchEngineIndexingEnabled": true,
"allowedEmbedDomains": [
"example.com",
"mysite.org"
],
"customThumbnailURL": "https://example.com/custom-thumbnail.jpg"
},
"links": {
"viewPage": "https://www.tella.tv/video/vid_abc123def456/view",
"embedPage": "https://www.tella.tv/video/vid_abc123def456/embed"
},
"playlistIds": [
"pl_abc123",
"pl_def456"
]
}
}Returns detailed information about a video including chapters, transcript, and thumbnails
curl --request GET \
--url https://api.tella.com/v1/videos/{id} \
--header 'Authorization: Bearer <token>'{
"video": {
"id": "vid_abc123def456",
"name": "Getting Started with Tella",
"description": "Learn how to create and share your first video",
"views": 1234,
"aspectRatio": "16:9",
"createdAt": "2024-01-15T10:30:00.000Z",
"updatedAt": "2024-01-15T14:45:00.000Z",
"durationSeconds": 125.5,
"chapters": [
{
"id": "ch_abc123",
"title": "Introduction",
"description": "Overview of what we'll cover",
"timestampSeconds": 0
}
],
"transcript": {
"status": "ready",
"language": "en",
"text": "Hello and welcome to this tutorial...",
"sentences": [
{
"text": "Hello and welcome to this tutorial.",
"startSeconds": 0.5,
"endSeconds": 2.3
}
]
},
"thumbnails": {
"xl": {
"jpg": "https://cdn.tella.tv/thumbnails/vid_abc123/1920x1080.jpg",
"webp": "https://cdn.tella.tv/thumbnails/vid_abc123/1920x1080.webp",
"gif": "https://cdn.tella.tv/thumbnails/vid_abc123/640x360.gif",
"mp4": "https://cdn.tella.tv/thumbnails/vid_abc123/640x360.mp4"
},
"large": {
"jpg": "https://cdn.tella.tv/thumbnails/vid_abc123/1920x1080.jpg",
"webp": "https://cdn.tella.tv/thumbnails/vid_abc123/1920x1080.webp",
"gif": "https://cdn.tella.tv/thumbnails/vid_abc123/640x360.gif",
"mp4": "https://cdn.tella.tv/thumbnails/vid_abc123/640x360.mp4"
},
"medium": {
"jpg": "https://cdn.tella.tv/thumbnails/vid_abc123/1920x1080.jpg",
"webp": "https://cdn.tella.tv/thumbnails/vid_abc123/1920x1080.webp",
"gif": "https://cdn.tella.tv/thumbnails/vid_abc123/640x360.gif",
"mp4": "https://cdn.tella.tv/thumbnails/vid_abc123/640x360.mp4"
},
"small": {
"jpg": "https://cdn.tella.tv/thumbnails/vid_abc123/1920x1080.jpg",
"webp": "https://cdn.tella.tv/thumbnails/vid_abc123/1920x1080.webp",
"gif": "https://cdn.tella.tv/thumbnails/vid_abc123/640x360.gif",
"mp4": "https://cdn.tella.tv/thumbnails/vid_abc123/640x360.mp4"
}
},
"exports": [
{
"exportId": "exp_abc123def456",
"status": "completed",
"progress": 100,
"downloadUrl": "https://cdn.tella.tv/exports/vid_abc123/video.mp4",
"updatedAt": "2024-01-15T15:00:00.000Z"
}
],
"settings": {
"defaultPlaybackRate": 1,
"captionsDefaultEnabled": true,
"transcriptsEnabled": true,
"publishDateEnabled": true,
"viewCountEnabled": true,
"commentsEnabled": true,
"commentEmailsEnabled": false,
"downloadsEnabled": true,
"rawDownloadsEnabled": false,
"linkScope": "public",
"searchEngineIndexingEnabled": true,
"allowedEmbedDomains": [
"example.com",
"mysite.org"
],
"customThumbnailURL": "https://example.com/custom-thumbnail.jpg"
},
"links": {
"viewPage": "https://www.tella.tv/video/vid_abc123def456/view",
"embedPage": "https://www.tella.tv/video/vid_abc123def456/embed"
},
"playlistIds": [
"pl_abc123",
"pl_def456"
]
}
}API key obtained from your Tella account settings
Unique video identifier
"vid_abc123def456"
OK
Detailed information about a video including chapters, transcript, and exports
Show child attributes
Was this page helpful?