Get Dubbing Job Status
curl --request GET \
--url https://dubbing.deepdub.app/dubbing/job/{request_id} \
--header 'x-api-key: <api-key>'import requests
url = "https://dubbing.deepdub.app/dubbing/job/{request_id}"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://dubbing.deepdub.app/dubbing/job/{request_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://dubbing.deepdub.app/dubbing/job/{request_id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://dubbing.deepdub.app/dubbing/job/{request_id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://dubbing.deepdub.app/dubbing/job/{request_id}")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://dubbing.deepdub.app/dubbing/job/{request_id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"requestId": "<string>",
"status": "INTAKE_PREPROCESSING",
"detailedTrace": "<string>",
"exportPath": "<string>",
"additionalProducts": [
{
"product": "SDH",
"assetPath": "<string>",
"state": "PENDING_DELIVERY"
}
],
"metadata": {}
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}API Reference
Get Dubbing Job Status
Return the current status, progress trace, export path, and additional products for a single dubbing job.
GET
/
dubbing
/
job
/
{request_id}
Get Dubbing Job Status
curl --request GET \
--url https://dubbing.deepdub.app/dubbing/job/{request_id} \
--header 'x-api-key: <api-key>'import requests
url = "https://dubbing.deepdub.app/dubbing/job/{request_id}"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://dubbing.deepdub.app/dubbing/job/{request_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://dubbing.deepdub.app/dubbing/job/{request_id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://dubbing.deepdub.app/dubbing/job/{request_id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://dubbing.deepdub.app/dubbing/job/{request_id}")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://dubbing.deepdub.app/dubbing/job/{request_id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"requestId": "<string>",
"status": "INTAKE_PREPROCESSING",
"detailedTrace": "<string>",
"exportPath": "<string>",
"additionalProducts": [
{
"product": "SDH",
"assetPath": "<string>",
"state": "PENDING_DELIVERY"
}
],
"metadata": {}
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Authorizations
API key issued by Deepdub. Contact your account manager to obtain one.
Path Parameters
Response
Successful Response
Lifecycle status of a dubbing job, from initial intake through delivery and optional client re-fixes.
Available options:
INTAKE_PREPROCESSING, INTAKE_VALIDATION, INTAKE_FAILED, INTAKE_APPROVED, CASTING, ADAPTGEN_START, ADAPTGEN_MIDWAY, READY_FOR_QC, QC, QC_IN_REVIEW, ADAPTGEN_QC_FIX, READY_FOR_DMX, DMX_DONE, READY_FOR_MIXING, MIXING_IN_PROGRESS, READY_FOR_MIX_QC, MIX_QC_IN_PROGRESS, DELIVERED_TO_CLIENT, CLIENT_REFIX_PROCESSING, CLIENT_REFIX_REJECTED, CLIENT_REFIX, FAILURE, READY_FOR_REDMX, PARKED_REQUEST, PARKED_REQUEST_RECEIVED, REDMX_DONE, REDELIVERED_TO_CLIENT Show child attributes
Show child attributes
Show child attributes
Show child attributes
