curl --request GET \
--url https://api.studio.us.phrase.com/v1/recordings/{recordingId}/status \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.studio.us.phrase.com/v1/recordings/{recordingId}/status"
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://api.studio.us.phrase.com/v1/recordings/{recordingId}/status', 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://api.studio.us.phrase.com/v1/recordings/{recordingId}/status",
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://api.studio.us.phrase.com/v1/recordings/{recordingId}/status"
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://api.studio.us.phrase.com/v1/recordings/{recordingId}/status")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.studio.us.phrase.com/v1/recordings/{recordingId}/status")
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{
"status": "IN_PROGRESS"
}Get Recording Status
Retrieve the processing status of a recording. This endpoint supports three modes:
-
Overall Status (
summary=true): Returns a high-level status string indicating the recording’s overall state (PENDING, IN_PROGRESS, COMPLETED, or FAILED). -
All Languages Breakdown (no params): Returns completion status for each processing step (transcription, translation, dubbing, summary) grouped by language code. Only completed steps are included in the response.
-
Single Language Breakdown (
language=<code>): Returns completion status for processing steps of a specific language. Only completed steps are included in the response.
curl --request GET \
--url https://api.studio.us.phrase.com/v1/recordings/{recordingId}/status \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.studio.us.phrase.com/v1/recordings/{recordingId}/status"
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://api.studio.us.phrase.com/v1/recordings/{recordingId}/status', 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://api.studio.us.phrase.com/v1/recordings/{recordingId}/status",
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://api.studio.us.phrase.com/v1/recordings/{recordingId}/status"
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://api.studio.us.phrase.com/v1/recordings/{recordingId}/status")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.studio.us.phrase.com/v1/recordings/{recordingId}/status")
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{
"status": "IN_PROGRESS"
}Authorizations
Path Parameters
Recording ID
Query Parameters
When set to true, returns only the overall recording status as a simple status string (PENDING, IN_PROGRESS, COMPLETED, or FAILED). Cannot be used together with the language parameter.
Language code (e.g., 'en', 'es', 'fr') to retrieve completion status for a specific language's processing steps. When provided, only the steps completed for that language are returned. Cannot be used together with the summary parameter.
Response
Recording status retrieved successfully
- Option 1
- Option 2
- Option 3
Overall status response (when summary=true)
Overall recording processing status
PENDING, IN_PROGRESS, COMPLETED, FAILED Was this page helpful?