Skip to main content
GET
/
v1
/
recordings
/
{recordingId}
/
status
Get Recording Status
curl --request GET \
  --url https://api.studio.us.phrase.com/v1/recordings/{recordingId}/status \
  --header 'X-API-Key: <api-key>'
{
"status": "IN_PROGRESS"
}

Authorizations

X-API-Key
string
header
required

Path Parameters

recordingId
string
required

Recording ID

Query Parameters

summary
boolean
default:false

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
string

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)

status
enum<string>
required

Overall recording processing status

Available options:
PENDING,
IN_PROGRESS,
COMPLETED,
FAILED