Overview
GPT Transcribe converts recorded audio into text. It targets the hard cases rather than clean studio audio: conversational speech, several speakers, background noise, and sentences that switch language mid-way (Vietnamese and English in one pass, for example). On Kyma it is served through the same OpenAI-compatible transcription endpoint as the other speech-to-text SKUs — multipartfile or JSON audio_url, with json and text response formats. Billing is per minute of audio, rounded up, with a one-minute minimum; the exact figure comes back in the response and in the X-Kyma-Cost-USD header.
This is file transcription. It is not the live streaming surface, and it is not audio-scene understanding. It returns a transcript, not segment timestamps, so subtitle work stays on whisper-v3-turbo.
Specs
Pricing
Billed per minute of audio. Every request reports its exact cost in
usage.cost; the full media price list is on Pricing.
Use this when
- Conversational audio transcription — Captures multi-speaker dialogue and natural speech patterns with high accuracy.
- Noisy background dictation — Filters background interference to produce clean text from field recordings or calls.
- Mixed language audio processing — Handles code-switched audio streams like Vietnamese and English in a single pass.
- Migration off the gpt-4o-transcribe family — The id OpenAI names as the replacement for the models it shuts down on 2027-02-26.
Not ideal for
Do not use this model for generating audio, for live bidirectional speech, or when you need segment timestamps — it does not return them, and SRT/VTT output needs a model that does.Pick something else when
- You need segment timestamps, SRT or VTT output, or the cheapest per-minute rate on clear recordings: use
whisper-v3-turbo. - You want a file-transcription SKU from a different creator: use
gemini-3.5-transcribe.
Example
Agent query example
Ask the API which models fit, instead of hardcoding an id:FAQ
Does the transcribe-quality alias point here? Not yet.transcribe-quality still resolves to gpt-4o-mini-transcribe-2025-12-15. Pin gpt-transcribe by id when you want this model.
Can I get SRT or VTT subtitles from this model?
No. It returns a transcript without segment timestamps, so the subtitle formats are not available on this id. Use whisper-v3-turbo for timestamped output.
How is this billed?
Per minute of audio, rounded up, with a one-minute minimum. The Pricing table on this page is the live rate.