API/Get Audio Transcription

Audio Transcriptions

Get Audio Transcription

Gets a single audio transcription based on the ID supplied

GEThttps://api.sully.aihttps://api-testing.sully.ai/v1/audio/transcriptions/{transcriptionId}Try itcURLPythonJavaScriptPHPGoJavaCopy

curl --request GET \
  --url https://api.sully.ai/v1/audio/transcriptions/{transcriptionId} \
  --header 'X-ACCOUNT-ID: <api-key>' \
  --header 'X-API-KEY: <api-key>'

200400Copy

{
  "status": "ok",
  "data": {
    "id": "tr_EXAMPLE123456789",
    "payload": {
      "transcription": "<string>"
    },
    "timestamp": {
      "start": 1731014849730,
      "complete": 1731014853958
    }
  },
  "date": "2024-11-07T21:27:39.000Z"
}

Authorizations

X-API-KEYstringheaderrequiredX-ACCOUNT-IDstringheaderrequired

Path Parameters

transcriptionIdstringrequired

ID of the transcription to retrieve

Response

200200400application/json

Audio transcription response

status string

Status of the response

Example:

"ok"

data object

Find more here: https://docs.sully.ai/api-reference/audio-transcriptions/get#response-data-id

Last updated