# scribe_v1 > High-accuracy voice cloning technology with support for 99 languages, speaker diarization for up to 32 speakers, word-level timestamps, and dynamic audio tagging. ## Overview - **Model ID**: `scribe_v1` - **Category**: voice cloning - **Provider**: elevenlabs - **Status**: model_ready - **Screenshot**: `https://assets.modelslab.com/generations/a19c43f8-e514-40b1-b970-ee134c0fd6c9.webp` ## API Information This model can be used via our HTTP API. See the API documentation and usage examples below. ### Endpoint - **URL**: `https://modelslab.com/api/v7/voice/speech-to-text` - **Method**: POST ### Parameters - **`model_id`** (required): Model - Type: select (options: scribe_v1) - **`init_audio`** (required): Init Audio - Type: file ("audio/mp3,audio/wav") - Example: Enter Audio URL ## Usage Examples ### cURL ```bash curl --request POST \ --url https://modelslab.com/api/v7/voice/speech-to-text \ --header "Content-Type: application/json" \ --data '{ "key": "YOUR_API_KEY", "model_id": "scribe_v1", "init_audio": "https://pub-3626123a908346a7a8be8d9295f44e26.r2.dev/generations/26fe4ebe-5e82-42ba-a794-3dccbaa508e4.mp3" }' ``` ### Python ```python import requests response = requests.post( "https://modelslab.com/api/v7/voice/speech-to-text", headers={ "Content-Type": "application/json" }, json={ "key": "YOUR_API_KEY", "model_id": "scribe_v1", "init_audio": "https://pub-3626123a908346a7a8be8d9295f44e26.r2.dev/generations/26fe4ebe-5e82-42ba-a794-3dccbaa508e4.mp3" } ) print(response.json()) ``` ### JavaScript ```javascript fetch("https://modelslab.com/api/v7/voice/speech-to-text", { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify({ "key": "YOUR_API_KEY", "model_id": "scribe_v1", "init_audio": "https://pub-3626123a908346a7a8be8d9295f44e26.r2.dev/generations/26fe4ebe-5e82-42ba-a794-3dccbaa508e4.mp3" }) }) .then(response => response.json()) .then(data => console.log(data)); ``` ## Links - [Model Playground](https://modelslab.com/models/elevenlabs-speech-to-text/scribe_v1) - [API Documentation](https://docs.modelslab.com) - [ModelsLab Platform](https://modelslab.com)