- 最新公告
- OpenAI
- AnthropicClaude
- Elevenlabs 语音
- Fal.ai
- 火山方舟
- 可灵 Kling
- MiniMax
- 智谱 AI
- 万相
- 搜索 Search
- Textin
- Images
- Midjourney
- Audio
- RAG
- Files
- 🔥AI 工具
- 文档智能&图片处理
- AI产品配置教程
- 教程类
- 系统API
- 视频生成(Videos)
- 内容审查(Moderations)
- Deepdataspace
语音克隆(fish-tts-model)
POST
{{YOUR_BASE_URL}}/fish/model
最后修改时间:2025-05-14 10:04:54
责任人:未设置
请求参数
Authorization
在 Header 添加参数
Authorization
,其值为在 Bearer 之后拼接 Token示例:
Authorization: Bearer ********************
Body 参数multipart/form-data
title
string
必需
示例值:
chatfire-tts-model
voices
file
必需
texts
string
必需
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location -g --request POST '{{YOUR_BASE_URL}}/fish/model' \
--form 'title="chatfire-tts-model"' \
--form 'voices=@""' \
--form 'texts=""'
返回响应
🟢200成功
application/json
Body
_id
string
必需
type
string
必需
title
string
必需
description
string
必需
cover_image
string
必需
train_mode
string
必需
state
string
必需
tags
array[string]
必需
samples
array[string]
必需
created_at
string
必需
updated_at
string
必需
languages
array[string]
必需
visibility
string
必需
lock_visibility
boolean
必需
like_count
integer
必需
mark_count
integer
必需
shared_count
integer
必需
task_count
integer
必需
liked
boolean
必需
marked
boolean
必需
author
object
必需
_id
string
必需
nickname
string
必需
avatar
string
必需
示例
{
"_id": "2f5a7ff6762d42eab33e459beca2a422",
"type": "tts",
"title": "chatfire-tts-model",
"description": "",
"cover_image": "coverimage/2f5a7ff6762d42eab33e459beca2a422",
"train_mode": "fast",
"state": "trained",
"tags": [],
"samples": [],
"created_at": "2024-10-25T07:53:13.581258Z",
"updated_at": "2024-10-25T07:53:13.580856Z",
"languages": [
"en"
],
"visibility": "public",
"lock_visibility": false,
"like_count": 0,
"mark_count": 0,
"shared_count": 0,
"task_count": 0,
"liked": false,
"marked": false,
"author": {
"_id": "09a4d8ed4434477cbac20b6eb6712f8b",
"nickname": "1",
"avatar": ""
}
}
修改于 2025-05-14 10:04:54