v1
latestOpenAPI 3.0.02026-07-26355125.0 KBCreate Suno Cover Task
Generate personalized cover images based on original music tasks.
Usage Guide
- Use this interface to create personalized cover images for generated music
- Requires the taskId of the original music task
- Each music task can only generate a Cover once; duplicate requests will return the existing taskId
- Results will be notified through the callback URL upon completion
Parameter Details
- taskId identifies the unique identifier of the original music generation task
- callBackUrl receives callback address for completion notifications
Developer Notes
- Cover image file URLs will be retained for 14 days
- If a Cover has already been generated for this music task, a 400 status code and existing taskId will be returned
- It's recommended to call this interface after music generation is complete
post/api/v1/suno/cover/generate
Request body
Example request
{
"taskId": "73d6128b3523a0079df10da9471017c8",
"callBackUrl": "https://api.example.com/callback"
}Response
Success
Example response
{
"msg": "success"
}