Skip to content
Dashboard

GPT-4o mini Transcribe

GPT-4o mini Transcribe is a speech-to-text model built on the GPT-4o mini architecture, delivering lower word error rates and better language recognition than the original Whisper models at the cost-efficient end of OpenAI's transcription lineup.

index.ts
import { experimental_transcribe as transcribe } from 'ai';
import { gateway } from '@ai-sdk/gateway';
import { readFile } from 'node:fs/promises';
const result = await transcribe({
model: gateway.transcriptionModel('openai/gpt-4o-mini-transcribe'),
audio: await readFile('audio.mp3'),
});

Playground

Try out GPT-4o mini Transcribe by OpenAI. Usage is billed to your team at API rates. Free users (those who haven't made a payment) get $5 of credits every 30 days.

openai logo

Speech to text

Record a short clip from your microphone and the model transcribes it to text.

Idle
openai logo

Record a clip to see the transcript here.

Providers

Route requests across multiple providers. Copy a provider slug to set your preference. Visit the docs for more info. Using a provider means you agree to their terms, listed under Legal.

Provider
Input
Capabilities
ZDR
No Training
Release Date
OpenAI
Legal:Terms
Privacy
$1.25/M+1 more
03/13/2024

More models by OpenAI

Model
Context
Latency
Throughput
Input
Output
Cache
Web Search
Capabilities
Providers
ZDR
No Training
Release Date
1.1M
3.6s
95tps
$5/M
$30/M
Read:
$0.5/M
Write:
$6.25/M
$10/K
+ input costs
+4
azure logo
openai logo
07/09/2026
1.1M
0.9s
142tps
$1/M
$6/M
Read:
$0.1/M
Write:
$1.25/M
$10/K
+ input costs
+4
azure logo
openai logo
07/09/2026
1M
0.5s
74tps
$5/M
$30/M
Read:
$0.5/M
Write:
$10/K
+ input costs
+4
azure logo
bedrock logo
openai logo
04/24/2026
400K
0.9s
152tps
$0.75/M
$4.50/M
Read:$0.07/M
Write:
$10/K
+ input costs
+4
azure logo
openai logo
03/17/2026
1.1M
2.7s
89tps
$2.50/M
$15/M
Read:
$0.25/M
Write:
$10/K
+ input costs
+4
azure logo
openai logo
03/05/2026
400K
4.2s
167tps
$0.25/M
$2/M
Read:$0.03/M
Write:
$14/K
+ input costs
+4
azure logo
openai logo
08/07/2025

About GPT-4o mini Transcribe

GPT-4o mini Transcribe launched on March 13, 2024 as part of OpenAI's next-generation audio models for the API. The model builds on the GPT-4o mini architecture and was pretrained on specialized audio-centric datasets. OpenAI used enhanced distillation techniques to transfer knowledge from larger audio models into this smaller one.

Compared to the original Whisper models, GPT-4o mini Transcribe improves word error rate and language recognition. OpenAI attributes the gains to reinforcement learning work and midtraining on diverse, high-quality audio data. The improvements show up most in difficult conditions: accents, noisy environments, and varying speech speeds.

Through AI Gateway, GPT-4o mini Transcribe handles transcription jobs behind the same authentication, observability, and spend controls as your text models. Send audio with the AI SDK's transcribe function and get back the transcript, plus segments and language metadata where available.

What To Consider When Choosing a Provider

  • Configuration: Audio support on AI Gateway is in beta. You call GPT-4o mini Transcribe with the AI SDK's transcribe function, passing audio as a file buffer, base64 string, or URL. If accuracy on your hardest recordings is the deciding factor, compare results against gpt-4o-transcribe on your own audio before settling on the mini variant.
  • Zero Data Retention: AI Gateway does not currently support Zero Data Retention for this model. See the documentation for models that support ZDR.
  • Authentication: AI Gateway authenticates requests using an API key or OIDC token. You do not need to manage provider credentials directly.

When to Use GPT-4o mini Transcribe

Best for

  • High-volume transcription pipelines: Per-request cost shapes the architecture and the mini rate keeps unit economics workable
  • Call and meeting transcription: Accuracy improvements over Whisper-generation models reduce cleanup work downstream
  • Difficult audio conditions: Accents, background noise, and varying speech speeds that trip up older models
  • Unified gateway workflows: Adding speech input to apps that already route text models through AI Gateway

Consider alternatives when

  • Maximum transcription accuracy: gpt-4o-transcribe is the stronger variant when difficult audio justifies a higher rate
  • Speech translation needs: whisper-1 handles translation to English and language identification as a multitask model
  • Live voice conversations: The gpt-realtime family serves speech-to-speech agents rather than transcription jobs

Conclusion

GPT-4o mini Transcribe is a practical default for transcription through AI Gateway: more accurate than Whisper-generation models and priced for volume. Start here for most speech-to-text workloads, and step up to gpt-4o-transcribe when your hardest audio demands it.