LLM Reference
OpenAI API

TTS-1 HD on OpenAI API

OpenAI Text-to-Speech · OpenAI

Serverless

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

Why use TTS-1 HD on OpenAI API?

OpenAI API offers TTS-1 HD with pay-as-you-go pricing at $30.00/1M input tokens. OpenAI is a leading AI research and deployment company dedicated to developing safe and beneficial artificial general intelligence (AGI) for humanity.

Input / 1M
$30.00
Output / 1M
-
Cache
Not sourced
Batch
Not sourced

Setup recipe

Python + curl
Install
pip install openai
Auth
export OPENAI_API_KEY=...
Call
import os
from openai import OpenAI
client = OpenAI()  # reads OPENAI_API_KEY from env
response = client.chat.completions.create(
Model ID
tts-1-hd

Request example

import os
from openai import OpenAI

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

Gotchas

  • Use the model slug directly, e.g. "gpt-4o" or "gpt-4.1-mini".
  • The examples expect OPENAI_API_KEY; rename it only if your application config maps the new variable.

Pricing

TypePrice (per 1M)
Input tokens$30.00

Capabilities

Audio

About TTS-1 HD

TTS-1 HD is OpenAI's high-quality text-to-speech model, optimized for audio quality over speed, released at DevDay November 2023. Uses the same 6 preset voices as TTS-1 but produces noticeably better audio fidelity at twice the per-character cost. Accepts text up to 4,096 characters. Priced at $30.00/1M characters. API ID: tts-1-hd.

FAQ

What API model ID do I use for TTS-1 HD on OpenAI API?

Use the model ID tts-1-hd when calling OpenAI API's API.

Who created TTS-1 HD?

TTS-1 HD was created by OpenAI as part of the OpenAI Text-to-Speech model family.

Is TTS-1 HD open source?

TTS-1 HD is not open source; the seed data lists it as proprietary.

Get Started

Model Specs

Released2023-11-06
Architectureneural

Related Models on OpenAI API