LLM Reference
OpenAI API

Using GPT-4o Mini TTS on OpenAI API

Implementation guide · OpenAI Text-to-Speech · OpenAI

Serverless

OpenAI API exposes GPT-4o Mini TTS through model ID gpt-4o-mini-tts. Use the setup steps, sourced pricing, capabilities, and official provider links below to validate this route before deployment.

Last refreshed 2026-06-07. Next refresh: weekly.

Quick Start

  1. 1
    Create an account at OpenAI API and generate an API key.
  2. 2
    Use the OpenAI API SDK or REST API to call gpt-4o-mini-tts — see the documentation for request format.
  3. 3
    You'll be billed $0.60/1M input. See full pricing.

Code Examples

Install
pip install openai
API key
OPENAI_API_KEY
Model ID
gpt-4o-mini-tts

Use the model slug directly, e.g. "gpt-4o" or "gpt-4.1-mini".

import os
from openai import OpenAI

client = OpenAI()  # reads OPENAI_API_KEY from env
response = client.chat.completions.create(
    model="gpt-4o-mini-tts",
    messages=[{"role": "user", "content": "Hello"}]
)
print(response.choices[0].message.content)

Pricing on OpenAI API

TypePrice (per 1M)
Input tokens$0.60

Capabilities

MultimodalAudio

About GPT-4o Mini TTS

GPT-4o Mini TTS is OpenAI's instructable text-to-speech model built on GPT-4o mini, released March 20, 2025. Supports natural language instructions to control tone, style, pacing, and emotion (instructable TTS) — the model follows conversational prompts to adjust delivery rather than relying on static voice presets. OpenAI's recommended cost-efficient TTS for production. Input: text tokens + instructions at $0.60/1M tokens. Output: audio tokens at $12.00/1M tokens. Accepts up to 2,000 input tokens. API ID: gpt-4o-mini-tts.

Model Specs

Released2025-03-20
Context2k
ArchitectureDecoder Only
Knowledge cutoff2024-09

Provider

OpenAI API
OpenAI API

OpenAI

San Francisco, California, United States