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:- Music generation task completed successfully
- Music generation task failed
- Errors occurred during task processing
Callback Method
- HTTP Method: POST
- Content Type: application/json
- Timeout Setting: 15 seconds
Callback Request Format
When the 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 the current callback stage:
text: Text generation completedfirst: First music track completedcomplete: All music tracks completederror: Task failed
string
required
Task ID, consistent with the taskId returned when you submitted the task
array
Music generation result information, returned on success
string
Music unique identifier
string
Generated audio file URL
string
Original audio file URL
string
Streaming audio URL
string
Original streaming audio URL
string
Cover image URL
string
Original cover image URL
string
Generation prompt/lyrics
string
Model name used
string
Music title
string
Music tags
string
Creation time
number
Audio duration (seconds)
Callback Reception Examples
Here are example codes for receiving callbacks in popular programming languages:- Node.js
- Python
- PHP
Best Practices
Troubleshooting
If you do not receive callback notifications, please check the following:Network Connection Issues
Network Connection Issues
- Confirm that the callback URL is accessible from the public network
- 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 messages
- Verify that the interface path and HTTP method are correct
Content Format Issues
Content Format Issues
- Confirm that the received POST request body is in JSON format
- Check that Content-Type is application/json
- Verify that JSON parsing is correct
Audio Processing Issues
Audio Processing Issues
- Confirm that audio URLs are accessible
- Check audio download permissions and network connections
- Verify audio save paths and permissions
- Note whether audio content complies with content policies
Alternative Solution
If you cannot use the callback mechanism, you can also use polling:Poll Query Results
Use the get music generation details endpoint to regularly query task status. We recommend querying every 30 seconds.
