Suno Voice Create Custom Voice
Generate a reusable Suno custom voice from the user’s verification recording.
Usage Guide
- Call this API after the validation phrase is generated and the user has recorded the verification audio.
- The validation phrase is the
validateInfotext returned by the server. For best voice generation results, have the user record the server-provided phrase in a singing voice rather than plain speech. - Submit the original validation
taskIdand the verification audio URL inverifyUrl. - Optional metadata such as
voiceName,description,style, andsingerSkillLevelhelps organize and tune the generated voice. - The API returns a
taskId; use it to query the finalvoiceId. - When
callBackUrlis provided, the system sends a POST callback when the voice is created or the task fails. The callback URL must be publicly accessible and return HTTP 200 within 15 seconds.
Workflow
- Generate and retrieve the validation phrase.
- Record clear verification audio for the phrase; singing is recommended for best voice generation results.
- Upload or host the verification audio and pass the URL as
verifyUrl. - Submit the voice generation task and store the returned
taskId. - Receive
voiceIdthrough the record query API or callback when the task succeeds.
Callback
Custom Voice Generation Callbacks
Developer Notes
taskIdmust come from the validation phrase task for the same voice workflow.verifyUrlshould point to the user’s recording of the exact validation phrase returned by the server; for best results, recording it in a singing voice is recommended.- After receiving
voiceId, use the availability check endpoint before starting generation workflows that depend on the custom voice.
Authorizations
API Authentication
All endpoints require authentication using Bearer Token.
Get API Key
- Visit the API Key Management Page to obtain your API Key
Usage
Add to request headers:
Authorization: Bearer YOUR_API_KEYNote:
- Keep your API Key secure and do not share it with others
- If you suspect your API Key has been compromised, reset it immediately from the management page
Body
Task ID
Audio URL for the user's recording of the validation phrase returned by the server; singing is recommended for best results [Required]
Voice name
Voice description
Voice style
Singer skill level. Supported: beginner, intermediate, advanced, professional
beginner, intermediate, advanced, professional Callback URL used to receive custom voice generation results. When the task succeeds, the callback includes the generated voiceId; when it fails, it includes errorCode and errorMessage. The URL must be publicly accessible and return HTTP 200 within 15 seconds. For the payload format, see Custom Voice Generation Callbacks.
