



const axios = require('axios').default;
const api = axios.create({
baseURL: 'https://api.ai.cc/v1',
headers: { Authorization: 'Bearer ' },
});
const main = async () => {
const response = await api.post('/tts', {
model: 'openai/tts-1-hd',
text: 'OpenAI TTS are fast and powerful language models. Use it to convert text to natural sounding spoken text.',
voice: 'coral',
});
console.log('Audio URL:', response.data.audio.url);
console.log('Characters:', response.data.usage.characters);
};
main();
import requests
def main():
url = "https://api.ai.cc/v1/tts"
headers = {
"Authorization": "Bearer ",
}
payload = {
"model": "openai/tts-1-hd",
"text": "OpenAI TTS are fast and powerful language models. Use it to convert text to natural sounding spoken text.",
"voice": "coral"
}
response = requests.post(url, headers=headers, json=payload)
data = response.json()
print("Audio URL:", data["audio"]["url"])
print("Characters:", data["usage"]["characters"])
main()
-
AI Playground

Test all API models in the sandbox environment before you integrate.
We provide more than 300 models to integrate into your app.


Product Detail
🌟 Elevate Your Audio: Discover TTS-1 HD
Experience unparalleled clarity and naturalness with TTS-1 HD, OpenAI's advanced Text-to-Speech (TTS) model. Designed for professional-grade applications, it transforms written text into high-fidelity, human-like speech, perfect for everything from interactive platforms to broadcast media.
🚀 Key Features & Benefits
-
✨
Unmatched Audio Quality: Produces crystal-clear, natural-sounding speech with precise articulation and human-like intonation.
-
⚡
Real-time & Batch Processing: Optimized for low-latency streaming and efficient offline batch processing, adapting to your workflow needs.
-
🗣️
Multilingual Support: Seamlessly converts text into speech across major global languages, maintaining authenticity and clarity.
-
📚
Versatile Content Handling: Robustly processes diverse text types, including blogs, articles, conversational content, and more.
-
🌐
Broad Platform Compatibility: Easily integrates into various web and application environments.
⚙️ Technical Specifications
-
🧠
Model Architecture: Deep learning-based Text-to-Speech system.
-
🌍
Language Support: Extensive multilingual capabilities, covering major global languages.
-
🔊
Output Fidelity: High-definition, noise-free speech output optimized for human-like intonation.
-
⏱️
Low Latency: Engineered for real-time streaming applications.
-
💻
Compatibility: Web, mobile applications, and various other integrations.
📈 Performance & Quality Benchmarks
-
⭐
Achieves near-human Mean Opinion Score (MOS) in voice quality evaluations, reflecting superior naturalness.
-
📊
Demonstrates robust clarity and naturalness across diverse languages and accents.
-
🚀
Maintains efficient runtime, suitable for both cloud and edge device deployments, ensuring scalability.
💰 TTS-1 HD API Pricing & Integration
-
💵
Pricing: $0.0315 per 1K characters, offering premium quality for your investment.
Code Sample (Placeholder)
# Example Python code for TTS-1 HD API
from openai import OpenAI
client = OpenAI()
response = client.audio.speech.create(
model="tts-1-hd",
voice="alloy", # or 'nova', 'shimmer', 'fable', 'onyx', 'echo', 'breeze'
input="The quick brown fox jumps over the lazy dog in high definition audio."
)
response.stream_to_file("output_hd.mp3")
API Integration
TTS-1 HD is readily accessible via the AI/ML API. For comprehensive guidance and detailed endpoints, refer to the official documentation:
Documentation: Available Here
Ready to integrate TTS-1 HD into your projects?
Get Started with TTS-1 HD API❓ Frequently Asked Questions (FAQ)
Q: What is TTS-1 HD?
A: TTS-1 HD is OpenAI's high-definition Text-to-Speech model, offering ultra-realistic, studio-quality speech generation with enhanced naturalness, emotional expression, and professional-grade audio output.
Q: What are the key advantages of TTS-1 HD over standard TTS-1?
A: TTS-1 HD provides superior voice quality, more natural intonation and rhythm, enhanced emotional expression, better pronunciation accuracy, and studio-grade audio fidelity for professional applications.
Q: How much does TTS-1 HD cost?
A: TTS-1 HD is priced at $0.0315 per 1K characters, reflecting its premium quality and advanced voice synthesis capabilities.
Q: What audio formats and quality does TTS-1 HD support?
A: TTS-1 HD outputs studio-quality audio in high-fidelity formats like WAV (up to 48kHz/24-bit), FLAC, and high-bitrate MP3 (up to 320kbps).
Q: How do I access the TTS-1 HD API?
A: You can access TTS-1 HD via specialized high-definition TTS API endpoints. Refer to the official documentation for integration details.
Learn how you can transformyour company with AICC APIs



Log in