Models & Formats
Suonora supports only Neural High-Quality Models, providing exceptional clarity and multilingual support. Currently, only MP3 format is supported.
Available Models
Suonora offers several models tailored to different use cases. Each model has a short name used as the model
parameter in your TTS API requests.
Legacy v2.5
Delivers unparalleled clarity and depth for professional-grade audio.
Perfect for high-quality voiceovers, detailed narrations, and premium content creation.
{
"model": "legacy-v2.5"
}
Legacy Prime
A balance of quality and performance for versatile use cases, ideal for general applications needing clarity and speed.
{
"model": "legacy-prime"
}
Legacy Opus
Fast and high-quality audio. Ideal for near-lossless streaming and real-time applications.
{
"model": "legacy-opus"
}
Sonic Speed
Low-latency audio for real-time environments. Suitable for fast delivery and low-bandwidth applications.
{
"model": "sonic-speed"
}
Sonic Edge
High-quality streaming with minimal delay. Perfect for interactive and live-use cases.
{
"model": "sonic-edge"
}
Model Access Based on Subscription Plans
Different subscription plans provide access to different models:
Plan | Monthly Cost | Model Access |
---|---|---|
Personal | $5 | Full access to all models |
Superior | $10 | Full access to all models |
Pro | $29 | Full access to all models |
All models are multilingual, ensuring seamless voice generation across multiple languages. Choose the plan that best meets your requirements. For more details on plan limits and pricing, visit Suonora Pricing (opens in a new tab).
Using Model IDs
When making a request to the Suonora TTS API, specify the short name of the model under the model
field. Ensure your subscription plan grants you access to that model.
Example Request:
curl -X POST "https://api.suonora.com/v1/audio/speech" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"input": "Hello, welcome to Suonora!",
"model": "legacy-v2.5",
"voice": "axel"
}'
Replace the model
value with any of the available short names (e.g., legacy-prime
, sonic-speed
, etc.), and confirm that your plan supports it.