> ## 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 音频快速复刻

创建语音克隆并将其添加到您的语音库中。

## 请求头

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

<ParamField header="Authorization" type="string" required={true}>
  Bearer 身份验证格式: Bearer \{\{API 密钥}}。
</ParamField>

## 请求体

<ParamField body="name" type="string" required={true}>
  用于识别此语音的名称。此名称将显示在网站的下拉菜单中。
</ParamField>

<ParamField body="urls" type="string[]" required={true}>
  用于语音克隆的音频录音文件列表。
</ParamField>

<ParamField body="labels" type="string">
  语音的序列化标签字典。
</ParamField>

<ParamField body="description" type="string">
  语音的描述信息。
</ParamField>

<ParamField body="remove_background_noise" type="boolean" default={false}>
  如果设置为 true，将使用音频隔离模型从语音样本中去除背景噪音。如果样本不包含背景噪音，启用此选项可能会降低质量。
</ParamField>

## 响应信息

<ResponseField name="voice_id" type="string" required={true}>
  新创建语音的 ID。
</ResponseField>

<ResponseField name="requires_verification" type="boolean" required={true}>
  该语音是否需要验证。
</ResponseField>
