Skip to main content
POST
/
v1
/
videos
/
{id}
/
duplicate
Duplicate a video
curl --request POST \
  --url https://api.tella.com/v1/videos/{id}/duplicate \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "My Video (Copy)"
}
'
{
  "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"
    ]
  }
}

Authorizations

Authorization
string
header
required

API key obtained from your Tella account settings

Path Parameters

id
string
required

Unique video identifier

Example:

"vid_abc123def456"

Body

application/json

Request body for duplicating a video

name
string

Name for the duplicated video. Defaults to original name with ' (Copy)' suffix.

Required string length: 1 - 255
Example:

"My Video (Copy)"

Response

OK

video
object
required

Detailed information about a video including chapters, transcript, and exports