Try Scribe Realtime v2

Experience lightning fast transcription with unmatched accuracy, across 92 languages.

Developer quickstart

Learn the basics and make your first request with the ElevenLabs API.

import { ElevenLabsClient, play } from ‘@elevenlabs/elevenlabs-js’; const elevenlabs = new ElevenLabsClient({ apiKey: “YOUR_API_KEY”, // Defaults to process.env.ELEVENLABS_API_KEY }); const audio = await elevenlabs.textToSpeech.convert( ‘JBFqnCBsd6RMkjVDRZzb’, // voice_id { text: ‘The first move is what sets everything in motion.’, modelId: ‘eleven_multilingual_v2’, outputFormat: ‘mp3_44100_128’, // output_format } ); await play(audio);
JavaScript

Quick Links