GET
/
v2
/
audio
/
transcriptions
/
{id}
Get transcription
curl --request GET \
  --url https://api.sully.ai/v2/audio/transcriptions/{id} \
  --header 'X-ACCOUNT-ID: <api-key>' \
  --header 'X-API-KEY: <api-key>'
{
"data": {
"id": "tr_abc123def456",
"status": "processing",
"created_at": "2024-01-15T10:30:00Z",
"updated_at": "2024-01-15T10:30:15Z"
}
}

Authorizations

X-API-KEY
string
header
required
X-ACCOUNT-ID
string
header
required

Path Parameters

id
string
required

Transcription ID

Example:

"tr_abc123def456"

Response

Transcription retrieved successfully

The response is of type object.