ttslisted
Install: claude install-skill aiskillstore/marketplace
# Text-to-Speech — verging.ai
Convert text to speech audio using OpenAI TTS-1-HD through the verging.ai proxy API.
## Authentication
All requests require an API key in the `Authorization` header:
```
Authorization: ApiKey vrg_sk_xxx
```
Replace `vrg_sk_xxx` with your verging.ai API key. You can generate one at https://verging.ai under your account settings.
## Endpoint
```
POST https://verging.ai/api/v1/ai/tts
Content-Type: application/json
```
## Parameters
| Parameter | Type | Required | Default | Description |
|-----------------|--------|----------|----------|------------------------------------------------------|
| input | string | Yes | — | Text to convert to speech (max 4096 characters) |
| voice | string | No | alloy | Voice to use (see options below) |
| model | string | No | tts-1-hd | TTS model |
| response_format | string | No | mp3 | Audio output format |
| speed | float | No | 1.0 | Playback speed (0.25–4.0) |
### Available Voices
| Voice | Description |
|---------|-------------------|
| alloy | Neutral, balanced |
| echo | Warm, rounded |
| fable | Expressive, British |
| onyx | Deep, authoritative |
| nova | Friendly, upbeat |
| shimmer | Soft, gentle |
##