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

# ElevenLabs Instant Voice Cloning

Create a voice clone and add it to your voice library.

## Request Headers

<ParamField header="Content-Type" type="string" required={true}>
  Enum value: `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}>
  The name used to identify this voice. This name will be displayed in the website’s dropdown menu.
</ParamField>

<ParamField body="urls" type="string[]" required={true}>
  A list of audio recording files used for voice cloning.
</ParamField>

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

<ParamField body="description" type="string">
  Descriptive information for the voice.
</ParamField>

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

## Response Information

<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 this voice requires verification.
</ResponseField>
