LLM Reference
OpenAI API

GPT Realtime Whisper on OpenAI API

GPT Realtime 2 · OpenAI

Serverless

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.

Input / 1M
-
Output / 1M
-
Cache
Not sourced
Batch
Not sourced

Setup recipe

Python + curl
Install
pip install openai
Auth
export OPENAI_API_KEY=...
Call
import os
from openai import OpenAI
client = OpenAI()  # reads OPENAI_API_KEY from env
response = client.chat.completions.create(
Model ID
gpt-realtime-whisper

Request 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

Audio

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.

Get Started

Model Specs

Released2026-05-07
ArchitectureAudio / Speech
Knowledge cutoff2024-09

Related Models on OpenAI API