Back to Models

gpt-audio

openaiopenai/gpt-audio

Audio inputs and outputs with the Chat Completions API.

GPT Audio (gpt-audio) is OpenAI's first generally available audio-capable model for the Chat Completions API. Launched in January 2026, it brings native audio input and output to the familiar text-based chat completions endpoint, allowing developers to build voice-powered applications without switching to a separate Realtime API or stitching together transcription + TTS pipelines.

Unlike the Realtime models (gpt-realtime-*, which use WebRTC for low-latency speech-to-speech), gpt-audio uses the standard HTTP-based Chat Completions REST API. Developers send base64-encoded audio in the message content and receive audio back β€” making it straightforward to integrate into existing chat-based backends. The model features an upgraded decoder for more natural-sounding voices and improved voice consistency compared to the earlier gpt-4o-audio-preview.

Best for
  • β€’ Voice-powered chatbots and assistants that speak and listen via Chat Completions
  • β€’ Audio-first customer support agents that handle natural conversation with context retention
  • β€’ Applications needing both text and audio modalities in a single API call β€” switching between modes mid-conversation
  • β€’ Voice note summarization, meeting recap, and audio-content analysis pipelines
Reach for something else if
  • β€’ Low-latency real-time voice conversations (sub-500ms turn-taking) β€” use gpt-realtime-2 or gpt-realtime-1.5 via the Realtime API / WebRTC instead
  • β€’ Pure text-only chat at scale β€” text-only models (gpt-5.5, gpt-5.5-pro) are more cost-effective
  • β€’ Speech-to-text only (transcription) β€” gpt-4o-transcribe or gpt-4o-mini-transcribe are cheaper and purpose-built
  • β€’ Streaming live translation across languages β€” use gpt-realtime-translate which is purpose-built for multilingual real-time speech translation
Context Length
--
Max Output
--
Input Priceper 1M tokens
$2.70/ 1M tokens
Output Priceper 1M tokens
$10.80/ 1M tokens

Modalities

textaudio→textaudio

Pricing Breakdown

TypeRate
Input$2.70 / 1M tokens
Output$10.80 / 1M tokens
Audio input$34.56 / 1M tokens
Audio output$69.12 / 1M tokens

Supported Parameters

temperaturemax_tokenstop_ptoolstool_choiceresponse_formatmodalitiesaudio

Specifications

Release dateJanuary 2026 (GA)OpenRouter β†—verified
Context window128,000 tokensOpenRouter β†—to verify
Max output tokens16,384 tokensOpenRouter β†—to verify
Supported modalitiesInput: text, audio; Output: text, audiodevelopers.openai.com β†—verified
LicenseProprietary (OpenAI API Terms)verified

Benchmarks

BenchmarkDistributionScoreSource
Audio quality & voice naturalness
OpenAI reports the gpt-audio model uses an upgraded decoder producing more natural-sounding voices with better voice consistency compared to the preview. No published benchmark scores are available.
Upgraded decoder β€” more natural voices vs gpt-4o-audio-previewOpenRouter β†—

API Usage Examples

Use the global api.therouter.ai endpoint shown below for new integrations; the legacy China accelerated endpoint is retired.

cURL
curl https://api.therouter.ai/v1/chat/completions   -H "Content-Type: application/json"   -H "Authorization: Bearer $THE_ROUTER_API_KEY"   -d '{
    "model": "openai/gpt-audio",
    "messages": [
      {"role": "user", "content": "Summarize the key points from this input."}
    ]
  }'

Chat completion with audio

Send base64-encoded WAV/MP3 audio in the message content. The model can reply with both text and audio.

cURL
curl https://api.therouter.ai/v1/chat/completions \
  -H "Authorization: Bearer $THEROUTER_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "openai/gpt-audio",
    "modalities": ["text", "audio"],
    "audio": { "voice": "alloy", "format": "wav" },
    "messages": [
      {
        "role": "user",
        "content": [
          { "type": "text", "text": "What does this audio say?" },
          { "type": "input_audio", "input_audio": { "data": "<BASE64_AUDIO>", "format": "wav" } }
        ]
      }
    ]
  }'

More from openai

Similar models

Cross-provider sibling models

News & changes

2026-01-20

OpenAI launches gpt-audio β€” first GA audio model for Chat Completions

OpenAI released gpt-audio as its first generally available audio model, bringing native audio input/output to the Chat Completions REST API. The model features an upgraded decoder for more natural voices, improved voice consistency, and supports both text and audio modalities in a single API call. Priced at $2.50/M input (text) and $40/M (audio input).

re-authored by TheRouterOpenRouter β†—

Frequently asked

How is gpt-audio different from gpt-4o-audio-preview?

gpt-audio is the GA (generally available) successor to gpt-4o-audio-preview. It uses an upgraded decoder for more natural voices with better consistency. It is also available on Azure and has a broader support ecosystem. Unlike the preview, gpt-audio is a production-grade model intended for commercial deployment.

re-authored by TheRouteropenrouter.ai β†—
Can I use gpt-audio with the TheRouter API?

Yes. gpt-audio is fully listed on TheRouter and available via the standard Chat Completions endpoint at api.therouter.ai/v1/chat/completions. Use model ID "openai/gpt-audio". Audio input is supported via the input_audio content part format with base64-encoded WAV/MP3 data. Set the modalities and audio parameters to request audio output.

re-authored by TheRouterapi.therouter.ai β†—
What audio formats does gpt-audio support for input and output?

For input, gpt-audio accepts base64-encoded audio in WAV or MP3 format. The format is specified in the input_audio content part. For output, you can request WAV format audio by setting audio.format in the request body. Supported voices include alloy, echo, fable, nova, and shimmer.

re-authored by TheRouterdevelopers.openai.com β†—
What is the pricing for gpt-audio on TheRouter?

TheRouter passes through OpenAI's direct pricing with no added markup. Text input: $2.50/M tokens. Text output: $10/M tokens. Audio input: $40/M tokens. Audio output: $80/M tokens. Cache discounts may apply for repeated prompts.

re-authored by TheRouterapi.therouter.ai β†—
Fact ledger β€” every claim on this page traces here
sourceURLretrieved
Release dateOpenRouter β†—2026-05-29verified
Context windowOpenRouter β†—2026-05-29to verify
Max output tokensOpenRouter β†—2026-05-29to verify
Supported modalitiesdevelopers.openai.com β†—2026-05-29verified
Licenseβ€”β€”verified
Audio quality & voice naturalnessOpenRouter β†—2026-05-29to verify
OpenAI launches gpt-audio β€” first GA audio model for Chat CompletionsOpenRouter β†—2026-05-29verified
How is gpt-audio different from gpt-4o-audio-preview?openrouter.ai β†—2026-05-29to verify
Can I use gpt-audio with the TheRouter API?api.therouter.ai β†—2026-05-29to verify
What audio formats does gpt-audio support for input and output?developers.openai.com β†—2026-05-29to verify
What is the pricing for gpt-audio on TheRouter?api.therouter.ai β†—2026-05-29to verify
Help & contact