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.
Setup recipe
Python + curlpip install openaiexport OPENAI_API_KEY=...import os
from openai import OpenAI
client = OpenAI() # reads OPENAI_API_KEY from env
response = client.chat.completions.create(tts-1-hdRequest 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
| Type | Price (per 1M) |
|---|---|
| Input tokens | $30.00 |
Capabilities
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.