Skip to content

Search is only available in production builds. Try building and previewing the site to test it out locally.

GET /transcriptions/:id

Summary

Get the status and result of a transcription job

Intent

Poll this endpoint after creating a transcription to check completion and retrieve text

Parameters

NameTypeRequiredDescription
idstringYesThe id parameter

Request example

Terminal window
curl -X GET https://api.example.com/transcriptions/:id \
-H "Authorization: Bearer {token}"

Response example

{
"id": "obj_123",
"status": "ok"
}

Error cases

  • 401 — Missing or invalid authentication token
  • 400 — Request validation failed

Gotchas

  • Get operations require a valid bearer token