Skip to main content
GET
Get audio transcription
Retrieve the transcription data for a specific audio file, including word-level timestamps.

Audio segmentation

Audio transcription can be segmented independently from any video frame or scene segmentation.
  • Use start and end parameters to retrieve a specific time range
  • Use segmenter="word" with length=1 for word-level timestamps
  • SDK helpers return timestamp entries with start, end, and text
  • The raw API response wraps those entries as data.word_timestamps plus data.text
  • The engine parameter selects which transcription engine’s output to retrieve

Raw response shape

Silence ranges may be included with text: "-".

Create Transcription

Generate a new transcription

Get Audio

Retrieve audio file details

Authorizations

x-access-token
string
header
required

API key for authentication (sk-xxx format)

Path Parameters

audio_id
string
required
Pattern: ^a-
Example:

"a-12345"

Query Parameters

engine
string
Example:

"default"

start
number
default:0
Example:

0

end
number
default:-1
Example:

60

Response

Audio transcription data

success
boolean
Example:

true

status
enum<string>
Available options:
completed,
processing,
failed
Example:

"completed"

data
object