← ALL UPDATES
ELEVENLABS February 20, 2026

ElevenLabs Instant Voice Cloning from 10 Seconds of Audio

WHAT CHANGED

ElevenLabs reduced the minimum audio required for instant voice cloning from 1 minute down to 10 seconds while maintaining the same output quality.

WHY IT MATTERS

Creating a custom voice for a product is now nearly frictionless. A short voice memo is enough to clone a voice for any app or content workflow.

HOW TO USE IT

Use the /v1/voices/add endpoint with a 10-second mp3 or wav sample. The voice is ready to use within seconds of upload.

ELEVENLABS / PYTHON
import requests
import os

ELEVEN_API_KEY = os.environ["ELEVEN_API_KEY"]

url = "https://api.elevenlabs.io/v1/voices/add"
headers = {"xi-api-key": ELEVEN_API_KEY}
files = {"files": open("sample.mp3", "rb")}
data = {"name": "MyVoice", "description": "Custom voice"}

response = requests.post(url, headers=headers, files=files, data=data)
voice_id = response.json()["voice_id"]
print(f"Voice cloned: {voice_id}")
voice-cloningapiaudio
ORIGINAL SOURCE
https://elevenlabs.io/blog/instant-voice-cloning
VIEW ORIGINAL SOURCE →

The 10-second threshold is a meaningful UX threshold — it means any voice memo, podcast clip, or short recording is sufficient. Combined with ElevenLabs’ API pricing, building voice-enabled products with custom branded voices is now accessible to solo builders.

← BACK TO UPDATES