GPT Audio Mini

OpenAI audiochattool_usetts

API ID: openai/gpt-audio-mini

Input Price
$0.60
/1M tokens
Output Price
$2.40
/1M tokens

About GPT Audio Mini

GPT Audio Mini is a mid-range general-purpose model from OpenAI with long context (128k), suitable for conversations, content creation, and general AI tasks.

๐Ÿ’ฐ
Price Ranking
#25 lowest price among 47 Audio models

Model Specifications

Context Length
128k
Max Output
16k
Release Date
2026-01-19
Capabilities
audio chat tool_use tts
Input Modalities
textaudio
Output Modalities
textaudio

Best For

  • Conversations, content writing, general assistance

Consider Alternatives For

  • Image understanding (needs vision capability)

๐Ÿ’ฐ Real-World Cost Examples

Estimated monthly costs for common use cases

Personal AI Assistant
$0.99
/month
50 conversations/day, ~500 tokens each
Customer Service Bot
$30.60
/month
1000 tickets/day, ~800 tokens each

OpenAI Model Lineup

Compare all models from OpenAI to find the best fit

Model Input Output Context Capabilities
GPT Audio Mini Current Free Free 128k audio chat tool_use tts
GPT-3.5 Turbo 16k (older v1106) Free Free 16k chat
GPT-3.5 Turbo 16k (older v1106) Free Free 16k chat
GPT-4 32k Free Free 33k chat
GPT-4 32k Free Free 33k chat
GPT-4 32k (older v0314) Free Free 33k chat

Similar Models from Other Providers

Cross-brand alternatives with similar capabilities

Google Gemini 3.5 Flash Lite
Input: $0.33
Output: $2.75
Context: 1.0M
Google Gemini 2.5 Flash
Input: $0.30
Output: $2.50
Context: 1.0M
Google Gemini 2.5 Flash
Input: $0.30
Output: $2.50
Context: 1.0M
Google Gemini 2.5 Flash Preview 09-2025
Input: $0.30
Output: $2.50
Context: 1.0M

๐Ÿš€ Quick Start

Get started with GPT Audio Mini API

OpenAI Python SDK
from openai import OpenAI
client = OpenAI()

response = client.chat.completions.create(
    model="openai/gpt-audio-mini",
    messages=[
        {"role": "user", "content": "Hello!"}
    ]
)
print(response.choices[0].message.content)