Back to Models

gpt-audio-mini

openaiopenai/gpt-audio-mini

Cost-efficient version of GPT Audio.

GPT Audio Mini (gpt-audio-mini) is OpenAI's cost-efficient audio-capable model for the Chat Completions API, launched in January 2026 alongside the full gpt-audio. It shares the same upgraded decoder, multi-turn audio conversation, and base64-encoded audio input/output capabilities as its larger sibling, but at approximately 75% lower pricing per token, making it a practical choice for high-volume voice applications where per-call cost matters.

Like gpt-audio, gpt-audio-mini supports mixing text and audio modalities within a single HTTP Chat Completions call. Developers can send audio (WAV/MP3 via base64) alongside text and receive either or both modalities in the response. The mini variant shares the same 128K context window, tool/function calling support, and streaming capabilities β€” the difference is purely in model scale, reflected in lower output quality but significantly reduced cost.

Best for
  • β€’ Cost-sensitive voice chatbot deployments where per-request audio budget matters
  • β€’ High-volume audio content analysis pipelines (voice note summarization, call log processing)
  • β€’ Simple voice-to-text + text-to-voice applications where ultra-low latency is not required
  • β€’ Prototyping and testing audio features before scaling to the full gpt-audio or gpt-audio-1.5
Reach for something else if
  • β€’ Low-latency real-time speech-to-speech (sub-500ms) β€” use gpt-realtime-mini via WebRTC/Realtime API
  • β€’ Applications needing best-in-class audio quality or voice consistency β€” use gpt-audio or gpt-audio-1.5
  • β€’ Pure text-only chat β€” text-only models (gpt-5.5, gpt-5.4-mini) are cheaper
  • β€’ Dedicated transcription workflows β€” gpt-4o-mini-transcribe is purpose-built and cheaper for speech-to-text only
Context Length
--
Max Output
--
Input Priceper 1M tokens
$0.648/ 1M tokens
Output Priceper 1M tokens
$2.59/ 1M tokens

Modalities

textaudio→textaudio

Pricing Breakdown

TypeRate
Input$0.648 / 1M tokens
Output$2.59 / 1M tokens
Audio input$10.80 / 1M tokens
Audio output$21.60 / 1M tokens

Supported Parameters

temperaturemax_tokenstop_ptoolstool_choiceresponse_formatmodalitiesaudio

Specifications

Release dateJanuary 19, 2026Design for Online / OpenRouter β†—verified
Context window128,000 tokensOpenRouter β†—verified
Max output tokens16,384 tokensOpenRouter β†—verified
Supported modalitiesInput: text, audio; Output: text, audiodevelopers.openai.com β†—verified
Supported capabilitiesTools, function calling, response_format, streaming, audioplatform.openai.com β†—verified
LicenseProprietary (OpenAI API Terms)verified

Benchmarks

BenchmarkDistributionScoreSource
Audio quality (upgraded decoder)
gpt-audio-mini uses the same upgraded decoder as gpt-audio for more natural-sounding voices with better voice consistency, but compresses model scale for cost efficiency. No published benchmark scores are available for the mini variant specifically.
Upgraded decoder β€” same gpt-audio base with reduced scaleDesign for Online β†—

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-mini",
    "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 replies with text and/or audio β€” identical API pattern to gpt-audio, just at a lower price tier.

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-mini",
    "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-19

OpenAI launches gpt-audio and gpt-audio-mini

OpenAI released two audio-capable Chat Completions models: gpt-audio (full) and gpt-audio-mini (cost-efficient). Both feature an upgraded decoder for more natural voices compared to the earlier gpt-4o-audio-preview. The mini variant is priced ~75% lower per token, targeting high-volume voice applications.

Frequently asked

How does gpt-audio-mini differ from gpt-audio?

gpt-audio-mini is a smaller, more cost-efficient variant of gpt-audio. Both share the same upgraded decoder, 128K context window, tool calling, and audio input/output modalities. The mini model produces lower-quality audio output but costs approximately 75% less per token ($0.15/M input text + $10/M audio vs $2.50/M input text + $100/M audio for gpt-audio).

re-authored by TheRouter
Can I use gpt-audio-mini for low-latency real-time conversations?

No. gpt-audio-mini uses the HTTP-based Chat Completions API, which is designed for request-response patterns. For sub-500ms real-time speech-to-speech, use gpt-realtime-mini via OpenAI's Realtime API / WebRTC instead.

re-authored by TheRouter
Does gpt-audio-mini support tool/function calling with audio?

Yes. gpt-audio-mini fully supports tool and function calling, including audio in messages alongside tool definitions. You can send audio (e.g. a recording with a booking reference) and instruct the model to extract structured data via function calls β€” the same way you would with a text-only model.

What audio formats does gpt-audio-mini support?

Audio input supports WAV and MP3 formats encoded as base64 in the input_audio content part. Audio output supports WAV format with configurable voice options (alloy, nova, etc.) set via the audio parameter.

Fact ledger β€” every claim on this page traces here
sourceURLretrieved
Release dateDesign for Online / OpenRouter β†—2026-05-29verified
Context windowOpenRouter β†—2026-05-29verified
Max output tokensOpenRouter β†—2026-05-29verified
Supported modalitiesdevelopers.openai.com β†—2026-05-29verified
Supported capabilitiesplatform.openai.com β†—2026-05-29verified
Licenseβ€”β€”verified
Audio quality (upgraded decoder)Design for Online β†—2026-05-29to verify
OpenAI launches gpt-audio and gpt-audio-miniDesign for Online / OpenRouter β†—2026-05-29verified
Help & contact