GET
/
v1
/
audio
/
transcriptions
/
{transcriptionId}
curl --request GET \
  --url https://api.sully.ai/v1/audio/transcriptions/{transcriptionId} \
  --header 'X-ACCOUNT-ID: <api-key>' \
  --header 'X-API-KEY: <api-key>'
{
  "status": "ok",
  "data": {
    "id": "tr_EXAMPLE123456789",
    "payload": {
      "transcription": "<string>"
    },
    "timestamp": {
      "start": 1731014849730,
      "complete": 1731014853958
    }
  },
  "date": "2024-11-07T21:27:39.000Z"
}

Authorizations

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

Path Parameters

transcriptionId
string
required

ID of the transcription to retrieve

Response

200
application/json

Audio transcription response

The response is of type object.