Last refreshed 2026-05-16. Next refresh: weekly.
Why use GPT Realtime Translate on OpenAI API?
OpenAI API offers GPT Realtime Translate with pay-as-you-go pricing at $0.034/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-translateRequest example
import os
from openai import OpenAI
client = OpenAI() # reads OPENAI_API_KEY from env
response = client.chat.completions.create(
model="gpt-realtime-translate",
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 Translate
GPT Realtime Translate is OpenAI's live speech-to-speech translation model, released May 7, 2026. It translates spoken input from 70+ languages into 13 output languages in real time without requiring speakers to pause or complete full sentences. The model is exposed through the /v1/realtime/translations endpoint and is priced per minute at $0.034 rather than per token.
FAQ
What API model ID do I use for GPT Realtime Translate on OpenAI API?
Use the model ID gpt-realtime-translate when calling OpenAI API's API.
Who created GPT Realtime Translate?
GPT Realtime Translate was created by OpenAI as part of the GPT Realtime 2 model family.
Is GPT Realtime Translate open source?
GPT Realtime Translate is not open source; the seed data lists it as proprietary.