# ElevenLabs Turbo v2.5 > High-quality, low-latency ElevenLabs text-to-speech in 32 languages. Same 26 premium voices as v3 at half the price, optimized for real-time use. - **Provider**: replicate - **Model ID**: elevenlabs/turbo-v2.5 - **Category**: tts_voice - **Credits**: 119 per request - **Pricing Type**: token_based ## API Endpoint Base URL: https://api.core.today/v1 ### Create Prediction POST /predictions ### Get Status GET /predictions/{job_id} ### Cancel DELETE /predictions/{job_id} ## Authentication Header: `X-API-Key: YOUR_API_KEY` ## Input Parameters - `prompt` (string, **required**): The text to convert to speech - `speed` (number, optional): Speed of speech (0.25 to 4.0) (Default: `1`; Range: min: 0.7, max: 1.2) - `voice` (string, optional): Voice choice for speech generation (Default: `Rachel`; Options: `Rachel`, `Drew`, `Clyde`, `Paul`, `Aria`, `Domi`, `Dave`, `Roger`, `Fin`, `Sarah`, `James`, `Jane`, `Juniper`, `Arabella`, `Hope`, `Bradford`, `Reginald`, `Gaming`, `Austin`, `Kuon`, `Blondie`, `Priyanka`, `Alexandra`, `Monika`, `Mark`, `Grimblewood`) - `previous_text` (string, optional): Previous text for context (Default: ``) - `style` (number, optional): Style exaggeration (0.0 to 1.0) (Default: `0`; Range: min: 0, max: 1) - `similarity_boost` (number, optional): Similarity boost setting (0.0 to 1.0) (Default: `0.75`; Range: min: 0, max: 1) - `language_code` (string, optional): Language code (e.g., 'en', 'es', 'fr') (Default: `en`; Options: `en`, `ko`, `ja`, `zh`, `de`, `hi`, `fr`, `pt`, `it`, `es`, `id`, `nl`, `tr`, `fil`, `pl`, `sv`, `bg`, `ro`, `ar`, `cs`, `el`, `fi`, `hr`, `ms`, `sk`, `da`, `ta`, `uk`, `ru`, `hu`, `no`, `vi`) - `next_text` (string, optional): Next text for context (Default: ``) - `stability` (number, optional): Stability setting for voice generation (0.0 to 1.0) (Default: `0.5`; Range: min: 0, max: 1) ## Example Request ```json { "model": "elevenlabs/turbo-v2.5", "input": { "voice": "Reginald", "language_code": "en", "next_text": "", "similarity_boost": 0.75, "style": 0, "previous_text": "", "prompt": "Richard Paul Astley (born 6 February 1966) is an English singer, songwriter, radio DJ and podcaster. He gained fame through his association with the production trio Stock Aitken Waterman, releasing the 1987 album Whenever You Need Somebody, which sold 15 million copies worldwide and was certified Platinum by both the BPI and the RIAA. His debut single \"Never Gonna Give You Up\" was a No. 1 hit in more than 25 countries, winning the 1988 Brit Award for Best British Single. The song also stayed at the top of the UK chart for five weeks in 1987 and was the best-selling single of that year. His 1988 single \"Together Forever\" also topped the US Billboard Hot 100 and was one of his eight songs to reach the UK Singles Chart Top 10.\n\nIn 1988, Astley followed up his debut album with Hold Me in Your Arms which achieved Platinum and Gold certifications internationally. The lead single \"She Wants to Dance with Me\" became a worldwide Top 10 hit. In 1991, he left Stock Aitken Waterman and moved his musical direction towards soul, which he explored on his other albums. His 1991 single \"Cry for Help\" was his last single to reach the Top 10 in either the US or UK. In 1993, he retired from music to focus on spending time with his partner and daughter. He returned to the music industry in 2000 and released 50 to celebrate his 50th birthday in 2016, with the album debuting in the UK at No. 1. His most recent studio album Are We There Yet? was released in 2023.\n\nAstley has sold approximately 40 million records worldwide and was nominated in 1989 for a Grammy Award for Best New Artist but lost to Tracy Chapman. During the period between his debut release and his fifth single, Astley outsold every other artist in the world. In the United Kingdom, Astley was also in the Top 40 every week for the first six months of his career. He became an internet phenomenon in 2007 following the emergence of the Rickrolling meme, which utilizes the music video for \"Never Gonna Give You Up\", and his career was revitalised by the meme's popularity. A year after the Rickrolling meme began, he was voted \"Best Act Ever\" at the MTV Europe Music Awards 2008. On 28 July 2021, \"Never Gonna Give You Up\" became the fourth 1980s song to reach one billion views on YouTube.", "speed": 1, "stability": 0.5 } } ``` ## Response Format ```json { "job_id": "abc123", "status": "pending", "provider": "replicate", "model": "black-forest-labs/flux-schnell", "created_at": "2026-01-01T00:00:00Z", "result": null, "error": null } ``` Status values: `pending`, `processing`, `completed`, `failed`, `cancelled` ## Usage Flow 1. POST /predictions with model and input → receive job_id 2. Poll GET /predictions/{job_id} until status is `completed` or `failed` 3. Result contains output URL(s) or data ## Output Type url ## Tags text-to-speech, tts, audio, voice-synthesis, elevenlabs, low-latency, real-time, multilingual ## Documentation https://replicate.com/elevenlabs/turbo-v2.5 ## Token Pricing - Input: 0.11625 credits/token - Output: 0.11625 credits/token