모델가격엔터프라이즈
500개 이상의 AI 모델 API, 모든 것이 하나의 API로. CometAPI에서
Models API
개발자
빠른 시작문서API 대시보드
회사
회사 소개엔터프라이즈
리소스
AI 모델블로그변경 로그지원
서비스 이용약관개인정보 보호정책
© 2026 CometAPI · All rights reserved
Home/Models/OpenAI/tts-1-hd
O

tts-1-hd

입력:$24/M
출력:$24/M
상업적 사용
개요
기능
가격
API

Technical Specifications of tts-1-hd

SpecificationDetails
Model IDtts-1-hd
ProviderOpenAI
Model typeText-to-speech (TTS)
Primary use caseConverting text into high-quality spoken audio
Optimization focusHigher-quality speech synthesis rather than lowest-latency generation
API endpoint/v1/audio/speech
Supported alongsidetts-1, gpt-4o-mini-tts
InputText
OutputGenerated speech audio
Voice selectionSupported via selectable preset voices
Common controlsVoice, response format, and speed
Integration patternRequest-based audio generation through the Audio API

What is tts-1-hd?

tts-1-hd is OpenAI’s higher-quality text-to-speech model for generating natural-sounding spoken audio from text. It is designed for use cases where output quality matters more than minimizing latency, such as narration, voice assistants, accessibility features, educational content, and media production. OpenAI documents tts-1-hd as a model optimized for high-quality text-to-speech and indicates that it is used through the Speech endpoint in the Audio API.

Compared with lighter or faster TTS options, tts-1-hd is generally positioned as the quality-focused choice in the OpenAI speech stack. Developers typically send input text, choose a voice, optionally configure speed or output format, and receive an audio file or streamable audio response suitable for playback or storage.

Main features of tts-1-hd

  • High-quality speech synthesis: tts-1-hd is specifically optimized for higher-quality audio generation, making it suitable when clarity and naturalness are more important than the fastest response time.
  • Simple text-to-audio workflow: The model accepts text input and returns synthesized speech through OpenAI’s Audio API, which keeps implementation straightforward for developers building narration or voice output features.
  • Preset voice support: Developers can select from supported built-in voices when generating speech, enabling different tones or presentation styles without training a custom voice model.
  • Configurable output behavior: The API supports practical controls such as response format and speech speed, helping teams tailor generated audio for playback, downloads, accessibility tools, or content pipelines.
  • Fits production audio use cases: Because it is exposed through the standard speech endpoint, tts-1-hd can be integrated into apps, backend workflows, automation systems, and multi-step voice pipelines with predictable API-based access.

How to access and integrate tts-1-hd

Step 1: Sign Up for API Key

To start using tts-1-hd, first register on CometAPI and generate your API key from the dashboard. After logging in, create a key for your project and store it securely, since it will be required to authenticate every API request.

Step 2: Send Requests to tts-1-hd API

Once you have your API key, send a POST request to CometAPI’s compatible chat completions endpoint, specifying the model as tts-1-hd in the request body.

curl https://api.cometapi.com/v1/audio/speech \
  -X POST \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $COMETAPI_API_KEY" \
  -d '{
    "model": "tts-1-hd",
    "input": "Hello! This is a sample speech generation request.",
    "voice": "alloy"
  }' \
  --output speech.mp3
from openai import OpenAI

client = OpenAI(
    api_key="YOUR_COMETAPI_API_KEY",
    base_url="https://api.cometapi.com/v1"
)

response = client.audio.speech.create(
    model="tts-1-hd",
    voice="alloy",
    input="Hello! This is a sample speech generation request."
)

response.stream_to_file("speech.mp3")

Step 3: Retrieve and Verify Results

After submitting your request, CometAPI will return the generated audio result for tts-1-hd. Save the output file, play it back, and verify that the speech quality, voice selection, pacing, and pronunciation match your application requirements. If needed, iterate by adjusting the input text, voice, or other supported parameters.

tts-1-hd 가격

[모델명]의 경쟁력 있는 가격을 살펴보세요. 다양한 예산과 사용 요구에 맞게 설계되었습니다. 유연한 요금제로 사용한 만큼만 지불하므로 요구사항이 증가함에 따라 쉽게 확장할 수 있습니다. [모델명]이 비용을 관리 가능한 수준으로 유지하면서 프로젝트를 어떻게 향상시킬 수 있는지 알아보세요.
코멧 가격 (USD / M Tokens)공식 가격 (USD / M Tokens)할인
입력:$24/M
출력:$24/M
입력:$30/M
출력:$30/M
-20%

tts-1-hd의 샘플 코드 및 API

[모델 이름]의 포괄적인 샘플 코드와 API 리소스에 액세스하여 통합 프로세스를 간소화하세요. 자세한 문서는 단계별 가이드를 제공하여 프로젝트에서 [모델 이름]의 모든 잠재력을 활용할 수 있도록 돕습니다.