Elevenlabs
  1. 项目
Elevenlabs
  • 文字转语音
    • 减少延迟
    • 文字转语音
      POST
    • Streaming
      POST
  • 历史
    • 获取生成的物品
      GET
    • 通过 id 获取历史记录
      GET
    • 删除历史记录项
      DELETE
    • 从历史项目中获取音频
      GET
    • 下载历史项目
      POST
  • 样品
    • 删除样本
      DELETE
    • 从样本中获取音频
      GET
  • 用户
    • 获取用户订阅信息
      GET
    • 获取用户信息
      GET
  • 声音
    • 获取声音
    • 获取默认语音设置
    • 获取语​​音设置
    • 获取语​​音
    • 删除语音
    • 编辑语音设置
    • 添加语音
    • 编辑声音
  • 语音库
    • 查询库
    • 添加共享语音
  • 项目
    • 获取项目
      GET
    • 通过 id 获取项目
      GET
    • 添加项目
      POST
    • 删除项目
      DELETE
    • 转换项目
      POST
    • 获取项目快照
      GET
    • 流式传输项目音频
      POST
    • 获取章节
      GET
    • 通过 id 获取章节
      GET
    • 删除章节
      DELETE
    • 转换章节
      POST
    • 获取章节快照
      GET
    • 流式传输章节音频
      POST
    • 更新发音词典
      POST
  • 发音词典
    • 从文件添加
  • 模型
    • 获取模型
  • 音频原生
    • 创建启用音频的项目
  1. 项目

添加项目

开发环境
http://dev-cn.your-api-server.com
开发环境
http://dev-cn.your-api-server.com
POST
/v1/projects/add

请求参数

Header 参数

Body 参数multipart/form-data

返回响应

🟢200成功
application/json
Body

🟠422参数错误
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'http://dev-cn.your-api-server.com/v1/projects/add' \
--header 'xi-api-key;' \
--form 'acx_volume_normalization="true"' \
--form 'author="<string>"' \
--form 'default_model_id="<string>"' \
--form 'default_paragraph_voice_id="<string>"' \
--form 'default_title_voice_id="<string>"' \
--form 'from_document="<string>"' \
--form 'from_url="<string>"' \
--form 'isbn_number="<string>"' \
--form 'name="<string>"' \
--form 'pronunciation_dictionary_locators="[
  \"<string>\"
]"' \
--form 'quality_preset="<string>"' \
--form 'title="<string>"' \
--form 'volume_normalization="true"'
响应示例响应示例
200 - 成功示例
{
  "project": {
    "author": "<string>",
    "can_be_downloaded": true,
    "create_date_unix": 123,
    "default_model_id": "<string>",
    "default_paragraph_voice_id": "<string>",
    "default_title_voice_id": "<string>",
    "isbn_number": "<string>",
    "last_conversion_date_unix": 123,
    "name": "<string>",
    "project_id": "<string>",
    "state": "default",
    "title": "<string>",
    "volume_normalization": true
  }
}
修改于 2024-02-06 09:25:55
上一页
通过 id 获取项目
下一页
删除项目
Built with