callBackUrl parameter to set a callback URL. When the task is completed, the system will automatically push the results to your specified address.
Callback Mechanism Overview
The callback mechanism eliminates the need to poll the API for task status. The system will proactively push task completion results to your server.
Callback Timing
The system will send callback notifications in the following situations:- Text generation completed (
textstage) - First extended audio track generated (
firststage) - All extended audio tracks generated (
completestage) - Audio extension task failed
- Error occurred during task processing
Callback Method
- HTTP Method: POST
- Content Type: application/json
- Timeout: 15 seconds
Callback Request Format
When a task is completed, the system will send a POST request to yourcallBackUrl in the following format:
Status Code Description
integer
required
Callback status code indicating task processing result:
string
required
Status message providing detailed status description
string
required
Callback type indicating current callback stage:
text: Text generation completefirst: First extension completecomplete: All extensions completefailed: Task failed
string
required
Task ID, consistent with the taskId returned when you submitted the task
array
Extension result information, returned on success
string
Unique audio identifier (audioId)
string
Extended audio file download link
string
Original audio file download link
string
Streaming audio playback link
string
Music cover image link
string
Prompt/lyrics used for extension
string
AI model name used
string
Music title
string
Music style tags
string
Creation time
number
Extended audio duration (seconds)
Best Practices
Troubleshooting
If you don’t receive callback notifications, please check the following:Network Connection Issues
Network Connection Issues
- Confirm that the callback URL is accessible from the public internet
- Check firewall settings to ensure inbound requests are not blocked
- Verify that domain name resolution is correct
Server Response Issues
Server Response Issues
- Ensure the server returns HTTP 200 status code within 15 seconds
- Check server logs for error information
- Verify that the interface path and HTTP method are correct
Extension Parameter Issues
Extension Parameter Issues
- Confirm that the upload URL is valid and accessible
- Check the uploaded audio file format and quality
- Verify that the audio file duration does not exceed the 2-minute limit
- Confirm that extension parameters (continueAt, etc.) are set correctly
Callback Stage Processing
Callback Stage Processing
- Understand the differences and processing methods of the three callback stages
- text stage: Only indicates text generation complete, no audio data
- first stage: First extended music complete, contains data for one track
- complete stage: All extended music complete, contains complete music list
Alternative Solutions
If you cannot use the callback mechanism, you can also use polling:Poll Extension Results
Use the Get Music Generation Details interface to regularly query extension task status. Recommend querying every 30 seconds.
