GPT Audio

OpenAI audiochattool_usetts

API ID: openai/gpt-audio

Input Price
$2.50
/1M tokens
Output Price
$10.00
/1M tokens

About GPT Audio

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

๐Ÿ’ฐ
Price Ranking
#42 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
$4.13
/month
50 conversations/day, ~500 tokens each
Customer Service Bot
$127.50
/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 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 2.5 Pro
Input: $1.25
Output: $10.00
Context: 1.0M
Google Gemini 2.5 Pro Preview 06-05
Input: $1.25
Output: $10.00
Context: 1.0M
Google Gemini 2.5 Pro Preview 05-06
Input: $1.25
Output: $10.00
Context: 1.0M
Google Gemini 3 Pro Preview
Input: $2.00
Output: $12.00
Context: 1.0M

๐Ÿš€ Quick Start

Get started with GPT Audio API

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

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