Last refreshed 2026-05-16. Next refresh: weekly.
Why use GPT Realtime Whisper on OpenAI API?
OpenAI API offers GPT Realtime Whisper with pay-as-you-go pricing at $0.017/minute. OpenAI is a leading AI research and deployment company dedicated to developing safe and beneficial artificial general intelligence (AGI) for humanity.
Setup recipe
Python + curlpip install openaiexport OPENAI_API_KEY=...import os
from openai import OpenAI
client = OpenAI() # reads OPENAI_API_KEY from env
response = client.chat.completions.create(gpt-realtime-whisperRequest example
import os
from openai import OpenAI
client = OpenAI() # reads OPENAI_API_KEY from env
response = client.chat.completions.create(
model="gpt-realtime-whisper",
messages=[{"role": "user", "content": "Hello"}]
)
print(response.choices[0].message.content)Gotchas
- Use the model slug directly, e.g. "gpt-4o" or "gpt-4.1-mini".
- The examples expect OPENAI_API_KEY; rename it only if your application config maps the new variable.
Capabilities
About GPT Realtime Whisper
GPT Realtime Whisper is OpenAI's streaming speech-to-text model, released May 7, 2026. It transcribes spoken audio live as a speaker talks rather than waiting for utterance completion, making it suitable for live captions, meeting notes, classroom transcripts, and real-time agent pipelines. The model is exposed through /v1/realtime/transcription_sessions and is priced per minute at $0.017 rather than per token.
FAQ
What API model ID do I use for GPT Realtime Whisper on OpenAI API?
Use the model ID gpt-realtime-whisper when calling OpenAI API's API.
Who created GPT Realtime Whisper?
GPT Realtime Whisper was created by OpenAI as part of the GPT Realtime 2 model family.
Is GPT Realtime Whisper open source?
GPT Realtime Whisper is not open source; the seed data lists it as proprietary.