Create Transcript Job
Submit audio or video for transcription. The API responds immediately with a UUID that you can poll for status updates.
Endpoint
POST https://app.resemble.ai/api/v2/speech-to-text
Input Options
Direct Upload
Signed Token
Remote URL
Parameters
Note: One of audio_token, url, or file must be provided. Maximum file size: 500 MB. Maximum duration: 180 minutes. URL download timeout: 30 seconds.
Callback URL validation
Whenever a callback_url is provided (with or without zero retention), it must be a public HTTPS URL. Plain http:// URLs and addresses that resolve to private, loopback, or link-local ranges are rejected with 400:
Response
Note: Processing is asynchronous. The text, words, and answer fields will be populated when transcription completes.
Result Callbacks
If you pass a callback_url, Resemble POSTs the result to it once processing finishes — no polling needed. On success the body contains the full serialized transcript; on failure it contains the error:
Your endpoint must respond with a 2xx status. Non-2xx responses are retried up to 5 times with exponential backoff. Callback requests are sent with Content-Type: application/json and may include an Authorization: Bearer <secret> header for verification — contact support to configure a webhook secret for your account.
Zero Retention
With zero_retention_mode=true, Resemble retains none of your content after processing:
- During processing the audio is transcribed as usual.
- Immediately after transcription (success or failure), the uploaded media and any temporary processing copies are permanently deleted — deletion is confirmed, not best-effort.
- The transcript is delivered once via your
callback_url. After a successful delivery (or once delivery retries are exhausted), the transcript content itself — text, words, speakers, answers — is permanently purged. - What remains is a content-free record (UUID, status, timestamps,
privacy_mode, deletion timestamps) for usage and audit purposes.
Because delivery happens exactly once with no polling fallback, callback_url is mandatory in this mode:
After the purge, GET requests for the transcript return the stub (content fields are no longer present) and Intelligence questions are disabled. See Get Transcript for the purged response shape.
Availability: Zero retention is a plan feature. If it is not included in your plan or subscription, the request is rejected with 402 Payment Required — contact sales (self-serve plans) or your account manager (enterprise) to enable it.
