ElevenLabs Speech-to-Text
What is ElevenLabs Speech-to-Text?
ElevenLabs Speech-to-Text is a transcription endpoint backed by Scribe v2. Send an audio_url and the job returns the text plus, optionally, the kind of structured output that Whisper users normally bolt on after the fact: speaker diarization for up to 32 voices, word- or character-level timestamps, inline audio event tags like (laughter) and (music), entity detection for PII, PHI, PCI, and offensive language, and keyterm boosting up to 100 terms. Output comes back as a text field plus a words array, where each word carries its start, end, type, and (when diarization is on) speaker_id. The combination is built for transcripts you can use without post-processing.
Key features of ElevenLabs Speech-to-Text
Five features cover what you'll set on a typical job.
Speaker diarization up to 32 voices
Set `diarize` to `true` and each word in the response carries a `speaker_id`. If you know the count, pass `num_speakers`; otherwise `diarization_threshold` (default 0.22) controls how the model groups voices.
Word- or character-level timestamps
`timestamps_granularity` accepts `none`, `word` (default), and `character`. Word timing fits caption exports and scroll highlighting; character timing suits precise lyric and subtitle work where every consonant matters.
Inline audio event tags
With `tag_audio_events` enabled, non-speech sounds appear as inline cues such as `(laughter)`, `(music)`, and `(footsteps)` inside the transcript. The `type` marker on individual word objects lets you filter or render them as needed.
Entity detection for compliance work
`entity_detection` accepts `all`, `pii`, `phi`, `pci`, or `offensive_language`. The result tags spans without a separate redaction pass, which is what makes the endpoint a single drop-in for HIPAA-adjacent and payments workflows.
Keyterm boosting for technical vocabulary
`keyterms` accepts up to 100 terms. The model biases recognition toward those words, which helps with product names, technical vocab, and proper nouns that off-the-shelf models tend to mishear.
Best for
Meeting notes and call recordings
Diarization plus word timestamps gives a who-spoke-when transcript without a separate alignment step. Useful for sales call review, internal notes, and post-meeting summaries.
Podcast transcripts
Word-level timing for scroll highlighting and search inside an episode. Audio event tags surface laughter and music cues that listeners actually search for.
Compliance review
PHI or PCI entity detection flags sensitive spans automatically. Drop a transcript through the endpoint and route flagged content to manual review.
Legal and medical transcription
Entity detection plus keyterm boosting carries domain vocabulary cleanly. Pass case names, drug names, or product codes as keyterms before the call.
Caption and subtitle exports
Word timestamps map directly to SRT/VTT output. Switch to character timestamps when subtitles need precise lyric or musical-score alignment.
Research corpora
Field recordings transcribed with diarization, audio event tags, and domain keyterms produce a structured corpus ready for downstream NLP without an ETL step.
Use cases
Wire a meeting transcription tool that uploads the call audio, requests diarization plus word timestamps, and renders a labelled transcript inside the user's dashboard. Build a compliance scanner that runs every customer-support recording through the endpoint with entity_detection set to pii and routes flagged calls to a manual review queue. Build a podcast site that drops new episodes into the endpoint with audio event tagging on, then renders a click-to-jump transcript next to the player. Localize subtitles by transcribing once with character timestamps, machine-translating the text, and re-aligning the translated lines to the original timing.
API examples
Call ElevenLabs Speech-to-Text from any language by POSTing to /v1/tasks. Full parameter docs live at docs.unifically.com/models/audio/elevenlabs/speech-to-text.
curl -X POST https://api.unifically.com/v1/tasks \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"model": "elevenlabs/speech-to-text",
"input": {
"audio_url": "https://example.com/audio.mp3"
}
}'
Successful submission returns a task_id. Poll GET /v1/tasks/<task_id> or set a callback_url on the request to receive the finished transcript.
FAQs
People also ask
ElevenLabs Speech-to-Text is a transcription endpoint backed by Scribe v2. Send an audio URL and the job returns text with optional diarization, word- or character-level timestamps, audio event tags, entity detection (PII, PHI, PCI, offensive language), and keyterm boosting.
With tag_audio_events enabled (the default), non-speech sounds appear as inline cues such as (laughter), (music), or (footsteps) inside the transcript text and as type markers on individual word objects.
Pass an array of words or short phrases on keyterms (up to 100). The model biases recognition toward those terms, which helps with product names, technical vocabulary, and proper nouns.
Five. all, pii, phi, pci, and offensive_language. Pick phi for HIPAA-adjacent workflows. Pick pci for payment-card spans. Pick all for general redaction. Omit the field when you don't need detection.
Set diarize to true. The model identifies up to 32 speakers and labels each word object with a speaker_id. If you know the count, pass num_speakers; otherwise the model falls back to a diarization_threshold (default 0.22) to decide.
Three. none, word (the default), and character. Word timestamps are right for caption exports and search highlighting; character timestamps suit precise lyric or subtitle work.
Yes. Pass an integer seed (0 to 2,147,483,647) and the same audio, language, and parameters return the same transcript. The temperature field (0 to 2, default 0) controls how much variation the model is allowed.