v1
latestOpenAPI 3.0.02026-07-26355125.0 KBGenerate Sounds
Used for creating a sound generation task (Sounds Task). It supports settings for looping, tempo (BPM), pitch (Key), as well as lyrics subtitle capture, etc.
User Guide
- Generate corresponding audio content based on input prompt
- Supports loop playback for background music and ambient sound scenarios
- Supports BPM and Key controls for style shaping
- Optional lyrics subtitle capture after generation
- Supports async task completion notifications via callback URL
post/api/v1/generate/sounds
Request body
Example request
{
"prompt": "A soft rain ambience with distant thunder and gentle wind",
"model": "V5",
"soundTempo": 120,
"soundKey": "Any",
"callBackUrl": "https://api.example.com/callback"
}Response
Request successful
Example response
{
"code": 200,
"msg": "success",
"data": {
"taskId": "a1b2****c3d4"
}
}