ElevenLabs TTS — Turbo 2.5 API
elevenlabs-tts-turbo-2-5
ElevenLabs TTS — Turbo 2.5 is an audio model from ElevenLabs, available through the GPUniq API under the identifier `elevenlabs-tts-turbo-2-5`. Low-latency text-to-speech (Turbo 2.5). Billed per 1000 characters. Pricing starts at $0.04 per 1,000 characters. Generation runs as a job through the GPUniq API: you submit the prompt, poll for the result, and the exact charge comes back with the finished asset.
Pricing
Billed on the length of the text you send for synthesis, per 1,000 characters. Voice choice and format do not change the rate.
| Billed for | GPUniq | Reference list price | Difference |
|---|---|---|---|
| Generationper 1,000 characters | $0.04 | $0.05 | −10% |
Billed from your GPUniq balance as you use it — no subscription, no monthly minimum, no per-seat fee. Prices refresh from the live catalog hourly.
Specifications
What the model accepts, what it returns, and the limits you will hit first.
- API identifier
elevenlabs-tts-turbo-2-5Pass this exact string as the "model" field of your request.
- Type
- Speech & audio
Served by ElevenLabs.
Detailed specs are not published for this model. Everything above comes from the GPUniq catalog; we would rather show less than guess.
How to call it
Generation runs as a job — submit the prompt, then poll the job id until the asset is ready.
Endpoint
POST /v1/llm/audio/jobs
Base URL
https://api.gpuniq.com
curl https://api.gpuniq.com/v1/llm/audio/jobs \
-H "Authorization: Bearer YOUR_GPUNIQ_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "elevenlabs-tts-turbo-2-5",
"text": "Your balance has been topped up.",
"voice": "Rachel"
}'
# poll until done
curl https://api.gpuniq.com/v1/llm/audio/jobs/JOB_ID -H "Authorization: Bearer YOUR_GPUNIQ_API_KEY"Create a key on /chat and send it as a bearer token. The same key works across every model in the catalog, so switching models means changing one string.
elevenlabs-tts-turbo-2-5 — frequently asked
How much does elevenlabs-tts-turbo-2-5 cost?
$0.04 per 1,000 characters on GPUniq, charged from your balance as you use it. There is no subscription and no monthly minimum.
How do I call elevenlabs-tts-turbo-2-5 from my code?
Send a generation request to the GPUniq API with "elevenlabs-tts-turbo-2-5" as the model, then poll the returned job id until the asset is ready. A GPUniq API key is the only credential involved.