Universal-3 Pro (Async)
Universal-3 Pro (Async)
Set up and configure Universal-3 Pro (Async) for pre-recorded audio transcription.
Universal-3 Pro is our most powerful Voice AI model, designed to capture the “hard stuff” that traditional ASR models struggle with. It delivers state-of-the-art accuracy for entities, rare words, and domain-specific terminology out of the box, with code switching and optional prompting for more control. It’s also our fastest model, so you get the best accuracy without sacrificing speed.
Quickstart
Get started with Universal-3 Pro using the code below. This example transcribes a pre-recorded audio file and prints the transcript text to your terminal.
Python
Python SDK
JavaScript
JavaScript SDK
Language support
Universal-3 Pro supports English, Spanish, Portuguese, French, German, and Italian. To access all 99 languages, use "speech_models": ["universal-3-pro", "universal-2"] as shown in the code example. Read more here.
Key capabilities
The model out of the box outperforms all ASR models on the market on accuracy, especially as it pertains to entities and rare words. With prompting, you can get an entirely customized transcription output that rivals near-human-level transcription.
- Keyterm Prompting: Improve recognition of domain-specific terminology, rare words, and proper nouns
- Prompting: Guide transcription style, formatting, and output characteristics
To fine-tune to your use case, see the Prompting section. Not sure where to start? Use one of the recommended prompts and tweak from there.
Start with no prompt
We strongly recommend testing with no prompt first. When you omit the prompt parameter, Universal-3 Pro automatically applies a built-in default prompt that is already optimized for accuracy across a wide range of audio types — including verbatim transcription, multilingual code-switching, and challenging audio conditions. For most use cases, the default prompt delivers excellent results out of the box.
If you’re going to build a prompt, start with one of the recommended prompts and then tweak it for your use case. You should not start from scratch with your prompt — use a recommended prompt and then build off of it. Please read the Prompting Guide (Async) if you’d like to build your prompt yourself.
Remember, prompts are primarily instructional, so adding a large amount of context may not make a significant impact on accuracy and could reduce instruction-following coherence. Feel free to layer in additional instructions that you see in the Prompting Guide (Async).
Benchmarking
A note on evaluating modern speech-to-text
Across the industry, we’re seeing that as models improve, they sometimes capture words or phrases that human transcribers originally missed. In WER evaluations, this shows up as insertions, even when the model is technically correct. We’ve also seen substitutions impact scores in cases where formatting differs (e.g., “alright” vs. “all right”), despite no meaningful accuracy difference.
To help address this, we’re actively developing documentation, blog content, and benchmarking tools focused on best practices for evaluating modern speech-to-text systems. We’ll continue sharing these resources as they’re released.
This is increasingly becoming an industry-wide benchmarking challenge as models begin to match, or exceed, human transcription quality in certain scenarios.
For more details on evaluating transcription accuracy, including tips on using semantic WER and handling substitution artifacts, see Evaluating your prompts in the Prompting Guide.
Keyterms prompting
Keyterms prompting allows you to provide up to 1,000 words or phrases (maximum 6 words per phrase) using the keyterms_prompt parameter to improve transcription accuracy for those terms and related variations or contextually similar phrases.
When to use keyterms vs. prompt
If you already know the specific names, brands, drug names, acronyms, or jargon that will appear in your audio, reach for keyterms_prompt — it is optimized for term boosting and produces more reliable results than describing the same terms in a free-form prompt. Use the prompt parameter when you want to control transcription style or behavior (disfluencies, formatting, code switching). The two parameters cannot be used in the same request.
Here is an example showing how you can use keyterms prompting to improve transcription accuracy for a name with distinctive spelling and formatting.
Without keyterms prompting:
With keyterms prompting:
Python
Python SDK
JavaScript
JavaScript SDK
Remove audio tags
Universal-3 Pro generates rich transcripts that can include inline annotations such as audio event markers (e.g., [laughter], [music]) and speaker cues. If your workflow requires clean, undecorated text, set remove_audio_tags to "all" to strip all inline annotations from the transcript output.
This is especially useful for:
- Pipelines that parse transcript text downstream (NLP, search indexing, LLM input)
- Display contexts where annotations would confuse end users
- Any workflow that expects plain text output
Python
Python SDK
JavaScript
JavaScript SDK
This parameter is only supported for Universal-3 Pro.
Prompting
For a comprehensive guide on crafting effective prompts, including best practices, prompt capabilities, and example prompts, see the Prompting guide.
Universal-3 Pro delivers great accuracy out of the box. To fine-tune transcription results to your use case, provide a prompt with up to 1,500 words of context in plain language. This helps the model consistently recognize domain-specific terminology, apply your preferred formatting conventions, handle code switching between languages, and better interpret ambiguous speech.
When to use prompt vs. keyterms
Use prompt to control transcription style or behavior (disfluencies, formatting, code switching). If you already know the specific names, brands, drug names, acronyms, or jargon that will appear in your audio, use keyterms_prompt instead — it is optimized for term boosting and produces more reliable results than describing the same terms in plain language. The two parameters cannot be used in the same request.
The following is our recommended prompt for verbatim multi-lingual transcription:
Python
Python SDK
JavaScript
JavaScript SDK
Default prompt
When no prompt is provided, Universal-3 Pro automatically applies the following default prompt:
You can override the default prompt by providing your own prompt value. See the Prompting guide for detailed examples covering verbatim transcription, output formatting, entity accuracy, code switching, and more.
Prior system prompt (April 15, 2026 – April 21, 2026)
The previous built-in system prompt was:
Prior system prompt (February 25, 2026 – April 15, 2026)
The previous built-in system prompt was:
Prior system prompt (February 20, 2026 – February 25, 2026)
The previous built-in system prompt was:
Prior system prompt (before February 20, 2026)
The previous built-in system prompt was:
Best practices for prompt engineering
See the Prompting guide for recommended prompts, capability “knobs” you can turn, and guidance on evaluating prompts against your own audio.
Support for 99 languages
With the speech_models parameter, you can list multiple speech models in priority order, allowing our system to automatically route your audio based on language support.
Model routing behavior: The system attempts to use the models in priority order falling back to the next model when needed. For example, with ["universal-3-pro", "universal-2"], the system will try to use universal-3-pro for languages it supports (English, Spanish, Portuguese, French, German, and Italian), and automatically fall back to Universal-2 for all other languages. This ensures you get the best performing transcription where available while maintaining the widest language coverage.