OpenAI

OpenAI: GPT 4o Mini Transcribe

Audio Transcription
openai/gpt-4o-mini-transcribe

GPT-4o Mini Transcribe is OpenAI's smaller, cost-efficient speech-to-text model, built on GPT-4o Mini audio capabilities and released on 2025-12-15. It takes audio input and returns transcribed text, and is billed per token for both input and output rather than per minute, which makes it a fit for high-volume transcription workflows that want token-level billing transparency at a lower cost point. Audio and text input are priced at $1.25/M tokens with output at $5/M tokens. Accessible via the OpenAI-compatible protocol through Ofox.

Context Window
128K
Max Output Tokens
128K
Released
2025-12-15
Capabilities
Audio Input
Available Providers
AzureAzure
Supported Protocols
OpenAIopenai

Providers

AzureAzure
Input Tokens
$1.25/M
Output Tokens
$5/M
Audio Input
$1.25/M
Web Search
$0.035/R
Protocols
OpenAIopenai/v1/audio/transcriptions

Code Examples

from openai import OpenAI
client = OpenAI(
base_url="https://api.ofox.run/v1",
api_key="YOUR_OFOX_API_KEY",
)
response = client.chat.completions.create(
model="openai/gpt-4o-mini-transcribe",
messages=[
{"role": "user", "content": "Hello!"}
],
)
print(response.choices[0].message.content)

Frequently Asked Questions

OpenAI: GPT 4o Mini Transcribe on Ofox.ai costs $1.25/M per million input tokens and $5/M per million output tokens. Pay-as-you-go, no monthly fees.