> ## Documentation Index
> Fetch the complete documentation index at: https://docs.myrouter.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Elevenlabs Voice Clone

Creates a voice clone and adds it to your voice library.

## Request Headers

<ParamField header="Content-Type" type="string" required={true}>
  Enum: `application/json`
</ParamField>

<ParamField header="Authorization" type="string" required={true}>
  Bearer authentication format: Bearer \{\{API Key}}.
</ParamField>

## Request Body

<ParamField body="name" type="string" required={true}>
  A name to identify this voice. This name will appear in the dropdown menu on the website.
</ParamField>

<ParamField body="urls" type="array" required={true}>
  List of audio recording files to use for voice cloning.
</ParamField>

<ParamField body="labels" type="string">
  Serialized label dictionary for the voice.
</ParamField>

<ParamField body="description" type="string">
  Description of the voice.
</ParamField>

<ParamField body="remove_background_noise" type="boolean" default={false}>
  If set to true, audio isolation will be used to remove background noise from the voice samples. Enabling this option may reduce quality if the samples do not contain background noise.
</ParamField>

## Response

<ResponseField name="voice_id" type="string" required={true}>
  The ID of the newly created voice.
</ResponseField>

<ResponseField name="requires_verification" type="boolean" required={true}>
  Whether the voice requires verification.
</ResponseField>
