LLM Reference
OpenAI API

Using TTS-1 on OpenAI API

Implementation guide · OpenAI Text-to-Speech · OpenAI

Serverless

OpenAI API exposes TTS-1 through model ID tts-1. 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 tts-1 — see the documentation for request format.
  3. 3
    You'll be billed $15.00/1M input. See full pricing.

Code Examples

Install
pip install openai
API key
OPENAI_API_KEY
Model ID
tts-1

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="tts-1",
    messages=[{"role": "user", "content": "Hello"}]
)
print(response.choices[0].message.content)

Pricing on OpenAI API

TypePrice (per 1M)
Input tokens$15.00

Capabilities

Audio

About TTS-1

TTS-1 is OpenAI's text-to-speech model optimized for real-time, low-latency applications, released at DevDay November 2023. Accepts text input up to 4,096 characters and outputs audio in MP3, OPUS, AAC, FLAC, WAV, or PCM. Offers 6 preset voices (alloy, echo, fable, onyx, nova, shimmer). Lower output quality than TTS-1 HD but faster. Priced at $15.00/1M characters. API ID: tts-1.

Model Specs

Released2023-11-06
ArchitectureAudio / Speech

Provider

OpenAI API
OpenAI API

OpenAI

San Francisco, California, United States