GET
/
api
/
v1
/
projects
/
{projectId}
/
videos
/
{videoId}
curl -X GET \
  https://studio.dubformer.ai/api/v1/projects/proj_5f83a14b2ec1b/videos/vid_7a92c36d4fe3c \
  -H 'Authorization: Bearer YOUR_API_KEY'
{
  "id": "vid_7a92c36d4fe3c",
  "name": "Marketing Video 1",
  "status": "completed",
  "processingType": "dubbing",
  "srcLang": "en",
  "dstLangs": ["es-ES", "fr-FR"],
  "videoUrl": "https://studio.dubformer.ai/api/v1/projects/proj_5f83a14b2ec1b/videos/vid_7a92c36d4fe3c",
  "videoDuration": 123.45,
  "remark": "Some remark",
  "createdAt": "2023-12-01T10:30:00.000Z",
  "updatedAt": "2023-12-01T15:45:00.000Z"
}
This endpoint returns detailed information about a specific video within a project.

Path Parameters

projectId
string
required
The unique identifier of the project.
videoId
string
required
The unique identifier of the video.

Response

The response is a JSON object with the following fields:
id
string
Unique video identifier.
name
string
Name of the video.
status
string
Current status of the video (e.g., ‘new’, ‘in_progress’, ‘completed’).
processingType
string
Type of video processing (e.g., ‘dubbing’, ‘voiceover’, ‘audio_description’).
srcLang
string
Source language code.
dstLangs
array
Array of target language codes.
videoUrl
string
URL to the video resource.
videoDuration
number
Duration of the video in seconds (if available).
remark
string
Additional remarks about the video (if any).
createdAt
string
ISO timestamp of creation.
updatedAt
string
ISO timestamp of last update.
curl -X GET \
  https://studio.dubformer.ai/api/v1/projects/proj_5f83a14b2ec1b/videos/vid_7a92c36d4fe3c \
  -H 'Authorization: Bearer YOUR_API_KEY'
{
  "id": "vid_7a92c36d4fe3c",
  "name": "Marketing Video 1",
  "status": "completed",
  "processingType": "dubbing",
  "srcLang": "en",
  "dstLangs": ["es-ES", "fr-FR"],
  "videoUrl": "https://studio.dubformer.ai/api/v1/projects/proj_5f83a14b2ec1b/videos/vid_7a92c36d4fe3c",
  "videoDuration": 123.45,
  "remark": "Some remark",
  "createdAt": "2023-12-01T10:30:00.000Z",
  "updatedAt": "2023-12-01T15:45:00.000Z"
}
{
  "error": "Not Found"
}