KIE.AI
English
  • English
  • Chinese
English
  • English
  • Chinese
Support
English
  • English
  • Chinese
MarketVeo3.1 APISuno API
4o Image APIFlux Kontext APIRunway APILuma APIFile Upload APICommon API
MarketVeo3.1 APISuno API
4o Image APIFlux Kontext APIRunway APILuma APIFile Upload APICommon API
  1. Vocal Removal
  • Suno API Quickstart
  • Music Generation
    • Music Generation Callbacks
    • Music Extension Callbacks
    • Audio Upload and Cover Callbacks
    • Audio Upload and Extension Callbacks
    • Add Instrumental Callbacks
    • Add Vocals Callbacks
    • Music Cover Generation Callbacks
    • Replace Music Section Callbacks
    • Generate Music
      POST
    • Extend Music
      POST
    • Upload And Cover Audio
      POST
    • Upload And Extend Audio
      POST
    • Add Instrumental to Music
      POST
    • Add Vocals to Music
      POST
    • Get Music Task Details
      GET
    • Get Timestamped Lyrics
      POST
    • Boost Music Style
      POST
    • Create Suno Cover Task
      POST
    • Get Cover Generation Details
      GET
    • Replace Music Section
      POST
    • Generate Persona
      POST
  • Lyrics Generation
    • Lyrics Generation Callbacks
    • Generate Lyrics
    • Get Lyrics Task Details
  • WAV Conversion
    • Convert to WAV Callbacks
    • Convert to WAV Format
    • Get WAV Conversion Details
  • Vocal Removal
    • Audio Separation Callbacks
    • MIDI Generation Callbacks
    • Separate Vocals from Music
      POST
    • Get Vocal Separation Details
      GET
    • Generate MIDI from Audio
      POST
    • Get MIDI Generation Details
      GET
  • Music Video Generation
    • Music Video Generation Callbacks
    • Create Music Video
    • Get Music Video Details
English
  • English
  • Chinese
Support
English
  • English
  • Chinese
MarketVeo3.1 APISuno API
4o Image APIFlux Kontext APIRunway APILuma APIFile Upload APICommon API
MarketVeo3.1 APISuno API
4o Image APIFlux Kontext APIRunway APILuma APIFile Upload APICommon API
  1. Vocal Removal

MIDI Generation Callbacks

System will call this callback when MIDI generation from separated audio is complete.
When you submit a MIDI generation task to the Suno API, you can use the callBackUrl parameter to set a callback URL. The system will automatically push the results to your specified address when the task is completed.

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.
Webhook Security
To ensure the authenticity and integrity of callback requests, we strongly recommend implementing webhook signature verification. See our Webhook Verification Guide for detailed implementation steps.

Callback Timing#

The system will send callback notifications in the following situations:
MIDI generation task completed successfully
MIDI 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 your callBackUrl:
Success Callback
Failure Callback
{
  "task_id": "5c79****be8e",
  "code": 200,
  "msg": "success",
  "data": {
    "state": "complete",
    "instruments": [
      {
        "name": "Drums",
        "notes": [
          {
            "pitch": 73,
            "start": "0.036458333333333336",
            "end": "0.18229166666666666",
            "velocity": 1
          },
          {
            "pitch": 61,
            "start": 0.046875,
            "end": "0.19270833333333334",
            "velocity": 1
          },
          {
            "pitch": 73,
            "start": 0.1875,
            "end": "0.4895833333333333",
            "velocity": 1
          }
        ]
      },
      {
        "name": "Electric Bass (finger)",
        "notes": [
          {
            "pitch": 44,
            "start": 7.6875,
            "end": "7.911458333333333",
            "velocity": 1
          },
          {
            "pitch": 56,
            "start": 7.6875,
            "end": "7.911458333333333",
            "velocity": 1
          },
          {
            "pitch": 51,
            "start": 7.6875,
            "end": "7.911458333333333",
            "velocity": 1
          }
        ]
      }
    ]
  }
}

Status Code Description#

code (integer, required)#

Callback status code indicating task processing result:
Status CodeDescription
200Success - MIDI generation completed successfully
500Internal Error - Please try again or contact support

msg (string, required)#

Status message providing detailed status description

task_id (string, required)#

Task ID, consistent with the task_id returned when you submitted the task

data (object)#

MIDI generation result information, returned on success

Success Response Fields#

data.state (string)#

Processing state. Value: complete when successful

data.instruments (array)#

Array of detected instruments with their MIDI note data
Instrument Object Properties:
name (string) — Instrument name (e.g., "Drums", "Electric Bass (finger)", "Acoustic Grand Piano")
notes (array) — Array of MIDI notes for this instrument
Note Object Properties:
pitch (integer) — MIDI note number (0-127). Middle C = 60. MIDI note reference
start (number | string) — Note start time in seconds from beginning of audio
end (number | string) — Note end time in seconds from beginning of audio
velocity (number) — Note velocity/intensity (0-1 range). 1 = maximum velocity

Callback Reception Examples#

Below are example codes for receiving callbacks in popular programming languages:
Node.js
Python
PHP

Best Practices#

Callback URL Configuration Recommendations
1.
Use HTTPS: Ensure callback URL uses HTTPS protocol for secure data transmission
2.
Verify Origin: Verify the legitimacy of the request source in callback processing
3.
Idempotent Processing: The same task_id may receive multiple callbacks, ensure processing logic is idempotent
4.
Quick Response: Callback processing should return 200 status code quickly to avoid timeout
5.
Asynchronous Processing: Complex business logic (like MIDI file conversion) should be processed asynchronously
6.
Handle Missing Instruments: Not all instruments may be detected - handle empty or missing instrument arrays gracefully
7.
Store Raw Data: Save the complete JSON response for future reference and reprocessing
Important Reminders
Callback URL must be publicly accessible
Server must respond within 15 seconds, otherwise will be considered timeout
If 3 consecutive retry attempts fail, the system will stop sending callbacks
Please ensure the stability of callback processing logic to avoid callback failures due to exceptions
MIDI data is retained for 14 days - download and save promptly if needed long-term
The number and types of instruments detected depends on audio content
Note times (start/end) may be strings or numbers - handle both types

Troubleshooting#

If you are not receiving callback notifications, please check the following:
Network Connection Issues
Confirm callback URL is accessible from public internet
Check firewall settings to ensure inbound requests are not blocked
Verify domain name resolution is correct
Server Response Issues
Ensure server returns HTTP 200 status code within 15 seconds
Check server logs for error messages
Verify endpoint path and HTTP method are correct
Content Format Issues
Confirm received POST request body is in JSON format
Check if Content-Type is application/json
Verify JSON parsing is correct
Handle both string and number types for timing values
Data Processing Issues
Some instruments may have empty note arrays
Not all audio will detect all instrument types
Verify the original vocal separation used split_stem type (not separate_vocal)
Check that the source taskId is from a successfully completed separation

Alternative Solutions#

If you cannot use the callback mechanism, you can also use polling:
Poll Query Results
Use the Get MIDI Generation Details endpoint to periodically query task status. We recommend querying every 10-30 seconds.
Previous
Audio Separation Callbacks
Next
Separate Vocals from Music
Built with