DeerAPI 创建声音 Persona 接口文档:通过 POST /suno/persona/voice/create 基于已验证的声音创建歌手 Persona。
curl --request POST \
--url https://api.deerapi.com/suno/persona/voice/create \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "mytitle",
"persona_type": "vox",
"vox_audio_id": "9e196fa1-20f3-43c1-8066-06a2a6b6bea9",
"voice_recording_id": "575023b1-b071-4dbd-9f0d-176665c60768",
"verification_id": "979282b1-8968-46bc-b599-ea14946be48e"
}
'{
"id": "<string>"
}Bearer token authentication. Use your DeerAPI key.
Persona 名称
固定为 vox
vox 上传声音步骤返回的 vox_audio_id
上传声音步骤返回的 voice_recording_id
声音验证步骤返回的 verification_id
Persona 描述
图片 Base64 格式(data:image/jpeg;base64,...)
是否公开(注意:无论传什么都会被重置为 false)
人声开始时间(秒)
人声结束时间(秒)
风格描述
来源类型
歌手水平
Advanced, Intermediate, Beginner, Professional 是否为声音录制
成功
创建成功的 persona_id
curl --request POST \
--url https://api.deerapi.com/suno/persona/voice/create \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "mytitle",
"persona_type": "vox",
"vox_audio_id": "9e196fa1-20f3-43c1-8066-06a2a6b6bea9",
"voice_recording_id": "575023b1-b071-4dbd-9f0d-176665c60768",
"verification_id": "979282b1-8968-46bc-b599-ea14946be48e"
}
'{
"id": "<string>"
}