Skip to main content
Get audio transcript
curl --request GET \
  --url https://{tenantId}.api.nestmed.com/api/v1/audio/{audioId}/transcript \
  --header 'Authorization: Bearer <token>'
{
  "transcriptId": "<string>",
  "audioId": "<string>",
  "status": "<string>",
  "confidence": 123,
  "language": "<string>",
  "duration": 123,
  "segments": [
    {
      "speaker": "<string>",
      "speakerId": "<string>",
      "start": 123,
      "end": 123,
      "text": "<string>",
      "confidence": 123
    }
  ],
  "metadata": {}
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

audioId
string
required

Query Parameters

format
enum<string>
default:structured
Available options:
structured,
plain,
vtt,
srt

Response

200 - application/json

Transcript.

transcriptId
string
audioId
string
status
string
confidence
number
language
string
duration
number
segments
object[]
metadata
object