Outline
Outline of topics discussed by timestamp, generated end-to-end from a transcription ID.
This endpoint will:
1) Fetch the transcript and word-level timestamps for the given transcription
2) Generate chapter topics (title + starting_phrase) using an LLM from the transcript text
3) Align each topic's starting phrase to timestamps
Authentication
AuthorizationBearer
Bearer authentication of the form Bearer <token>, where token is your auth token.
Request
This endpoint expects an object.
transcription_id
ID of the transcription to process end-to-end
monotone
If true, each topic is searched after the previous topic’s start (with a small backoff)
conclusion_bias
If true and a title includes the word "conclusion", search in the last third of the audio
Response
This endpoint returns a list of objects.
title
Title of the topic
starting_phrase
Starting phrase that was searched for
matched_text
The transcript text segment best matching the starting phrase
score_norm
Normalized alignment score in [0,1]
confidence
Confidence bucket derived from the normalized score
Allowed values:
start_time_sec
Start time in seconds for the best-aligned phrase (if found)
token_span
Optional span of token indices [start, end) for the best match
matched_content
Number of matched content tokens (excludes stopwords/fillers)
content_coverage
Fraction of content tokens in the phrase that were matched
longest_content_run_soft
Longest soft contiguous run of content-token matches
longest_content_run_strict
Longest strict contiguous run of content-token matches
