POST /v1/transcription/jobs.
Async jobs transcribe the same eight languages as Hear sync/streaming (
en,
es, fr, de, hi, it, pt, nl). The spoken language is auto-detected
per call, and the transcript is returned in the detected language. The API does
not currently return the detected language code. The optional job language
field controls Recap summarization language only; it does not change
transcription language. Hear sync/streaming has a separate explicit language
parameter.Submit a recording
Provide exactly one source:audio_url: PyAI fetches an HTTPS URL transiently and does not write the input bytes to durable input storage. Maximum download size: 512 MiB.- Multipart
audio: upload one file, up to 1 GiB. Uploaded input audio is retained for up to 7 days.
result_url.
audio_url plus
Idempotency-Key when safe automatic retries are required.
The submission returns 202 with status: "queued". Poll
GET /v1/transcription/jobs/{job_id} until the status is completed, failed,
or cancelled.
Send
trace: true to run a deterministic PII scan on the completed transcript.
The organization must be entitled for Trace on transcription (otherwise
402). Do not combine trace with channel or diarize; that combination
returns 400. See Trace.Bias known names and terms
Setvocabulary when a recording contains known names, brands, products, or
other distinctive terms. The list is optional and applies only to that job.
Omitting it preserves the normal transcription path unless your organization
has explicitly enabled stored vocabulary for the batch profile.
PyAI sanitizes the list before saving the job:
- Surrounding whitespace is trimmed and repeated internal whitespace is collapsed.
- Non-string entries and terms shorter than 4 characters are ignored.
- Terms longer than 64 characters are ignored.
- Phrases longer than 5 words are ignored.
- Common-only terms are ignored.
- Matching is case-insensitive for duplicates. The first spelling and order are preserved.
- The first 5 valid terms are used. Extra terms are ignored.
vocabulary were omitted. The field does not choose
the transcription language. Vocabulary biases recognition toward the listed
terms; it does not steer the output script (for Hindi audio the transcript is
Devanagari regardless of how a term is spelled in the list, see
language support). Job responses keep their
existing shape and do not echo the vocabulary.
Current common-word denylist
Current common-word denylist
A phrase is removed only when every normalized word is in this list. A phrase
such as
Acme Support remains eligible because Acme is distinctive.Stored organization vocabulary
UsePUT /v1/hear/vocabulary with the hear:configure scope to save up to five organization-owned terms.
Stored terms remain inactive until enabled_for includes batch. If a job also
sends vocabulary, those request terms come first and stored suggestions fill
remaining slots up to five. The effective list is saved with the job and stays
the same on every chunk, retry, and fallback.
Hear does not read a global glossary. It also does not automatically import
names from a CRM, dialer, or callee record. Automatic ingestion is a separate
follow-up.
Timestamped result
This example shows the response shape and field units. The values are illustrative:start, end, and audio_seconds are decimal seconds. Word and segment
offsets start at 0.0 on the decoded source-media timeline. Leading,
inter-word, and trailing silence are not removed or compacted. Resampling and
internal chunking do not shift later offsets.
words[] carries per-word times for en, es, fr, de, hi, it, and
pt. Hindi is native Devanagari. nl keeps turn-level segments with an
empty words array.
confidence is optional. Punctuation is attached to a word when formatting can
be aligned safely. Punctuation is not a separately timestamped token.
dictation and drop_fillers can change the number of words. If the rewritten
text cannot be safely realigned, the transcript remains available and words
is empty.
Segments are subtitle-ready spans built from the words. A segment starts when
the speaker/channel changes or after a readable pause, so segment boundaries
can change even when word timestamps do not.
Speaker labels
- For stereo audio, use
channel: true. Channel 0 isspeaker_1, channel 1 isspeaker_2. Separation is channel-based and exact, but labels are neutral: PyAI does not infer which channel is the agent or customer. - For mono audio, use
diarize: true. Speaker labels are model-derived and identify turns within that result. Do not use them as stable person IDs across separate jobs. If diarization cannot be produced for a recording, the job still completes with modetranscriptand no speaker labels — check themodefield before relying on labels. - Do not set both options. Prefer
channelwhenever each participant already occupies a separate channel.
Idempotency, cancellation, and failures
Idempotency-Key applies to JSON audio_url submissions. Retrying the same key
and body replays the original 202. Using the key with a different body returns
409 idempotency_conflict. Multipart uploads are not deduplicated.
DELETE /v1/transcription/jobs/{id} cancels queued or running work. It is
idempotent on terminal jobs, but it is not a data-erasure endpoint.
A failed job has status: "failed" and a normalized human-readable error.
That field is not a stable machine-readable failure code. Submission,
authorization, billing, and rate failures use the codes in
Errors and limits.
Signed webhooks
Whenwebhook_url is set, PyAI sends:
transcription.job.failed. Verify the exact request
body with X-PyAI-Signature:
X-PyAI-Event-Id or the
delivery Idempotency-Key. Mint or rotate the organization webhook secret with
POST /v1/webhooks/signing-secret.
Retention and data use
Async jobs are not a zero-retention surface:- URL-fetched input bytes are not persisted.
- Uploaded input audio is retained for up to 7 days.
- Job result artifacts are retained for up to 30 days.
- Signed result links normally expire after 7 days.
- There is no
store: falsejob option and cancellation does not erase data.
Pricing, rate limits, and versioning
Async Hear jobs report their metered usage in the response. For current rates, included usage, and plan availability, see the pricing page. Your key’s request rate, burst, concurrency, and quota posture are returned byGET /v1/me.
There is no published job-completion timeout SLA. Processing time depends on
media length, queue load, diarization, and requested formats.
Every control-plane response includes X-PyAI-Contract-Version, which matches
the live OpenAPI info.version. The transcription result does not currently
echo a model version or a separate result-schema version.
API reference
Exact request and response schemas.
Format Hear transcripts
Punctuation, dictation, fillers, and timestamp realignment.
Security and data
Retention windows, tenancy, and regions.
Errors and limits
Stable request errors and retry guidance.