# ElevenLabs Flash v2.5

> Ultra-low-latency TTS, ~75ms time-to-first-byte. Half the per-char cost of Multilingual v2. 32 languages.

Human version: https://kymaapi.com/models/eleven-flash-v2-5
Live JSON: `GET https://kymaapi.com/v1/models` (no auth required)

## Facts

- **Model ID**: `eleven-flash-v2-5` — pass this as `model` in the request body
- **Creator**: ElevenLabs
- **Released**: 2024-10-30
- **Price**: $0.2025 / 1K characters

## Call it

```bash
curl https://kymaapi.com/v1/audio/speech \
  -H "Authorization: Bearer $KYMA_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model": "eleven-flash-v2-5", "prompt": "..."}'
```

## Positioning

ElevenLabs Flash v2.5 is a text-to-speech model optimized for ultra-low-latency audio generation. Developers building real-time voice agents or interactive conversational interfaces should use it when sub-100ms time-to-first-byte is required.

## About

This model converts text input into spoken audio across 32 languages. It operates on a per-character billing model and delivers audio with a time-to-first-byte of approximately 75ms, operating at half the per-character cost of the Multilingual v2 variant.

On Kyma, requests are routed through an OpenAI-compatible endpoint with automatic failover to maintain delivery. Prompt caching applies to repeated text prefixes, reducing input costs by 90%. Usage metrics return exact character costs in the response payload, and the X-Kyma-Model header confirms the executing model.

The model is strictly for speech synthesis and does not support reasoning, vision, or structured output formats. It is optimized for speed and cost efficiency rather than maximum vocal fidelity, and it processes text inputs up to a 5000-token context window.

## Use cases

- **Real-Time Voice Agents** — Generates conversational audio with sub-100ms latency for interactive AI assistants.
- **Low-Latency Narration** — Streams spoken content quickly for dynamic reading applications.
- **Cost-Optimized TTS** — Reduces synthesis expenses for high-volume text-to-speech workloads.
- **Multilingual Conversational AI** — Supports voice generation across 32 languages for global user bases.

## Not ideal for

Do not use this model for applications requiring studio-grade vocal fidelity, complex emotional prosody, or non-speech audio generation.

## Pick something else when

- You need higher vocal quality and emotional range → `eleven-multilingual-v2`, `eleven-v3`
- You need to generate music or sound effects → `elevenlabs-music`, `elevenlabs-sfx`
- You need to clone a specific voice or design custom vocal profiles → `minimax-voice-clone`, `minimax-voice-design`

## See also

- All models: https://kymaapi.com/models.md
- Pricing: https://kymaapi.com/pricing.md
- Other models by ElevenLabs: https://kymaapi.com/models?q=ElevenLabs
