Back to Models

gpt-audio

openaiopenai/gpt-audio

API guide

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" } }
        ]
      }
    ]
  }'

Streaming audio chat

Stream text (transcript) tokens in real-time while receiving the full audio in the final message.

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": "nova", "format": "wav" },
    "stream": true,
    "messages": [
      {
        "role": "user",
        "content": [
          { "type": "text", "text": "Tell me a story in 30 seconds." }
        ]
      }
    ]
  }'
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