> ## Documentation Index
> Fetch the complete documentation index at: https://docs.suonora.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Models

> Display inline code and code blocks

***

## 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.

```json model-v2.5.json
{
  "model": "legacy-v2.5"
}
```

### Legacy Prime

A balance of quality and performance for versatile use cases, ideal for general applications needing clarity and speed.

```json model-prime.json
{
  "model": "legacy-prime"
}
```

### Legacy Opus

Fast and high-quality audio. Ideal for near-lossless streaming and real-time applications.

```json model-opus.json
{
  "model": "legacy-opus"
}
```

### Sonic Speed

Low-latency audio for real-time environments. Suitable for fast delivery and low-bandwidth applications.

```json model-sonic.json
{
  "model": "sonic-speed"
}
```

### Sonic Edge

High-quality streaming with minimal delay. Perfect for interactive and live-use cases.

```json model-edge.json
{
  "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](https://suonora.com/pricing).

## 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**:

```sh request.sh
curl -X POST "https://api.suonora.com/v1/audio/speech" \
     -H "Authorization: Bearer YOUR_API_KEY" \
     -H "Content-Type: application/json" \
     --output output.mp3 \
     -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.
