AI Music API
Home
Home
  1. suno
  • Introduction
  • Credits Usage Guide
  • Error handling
  • Webhook Integration Guide
  • suno
    • Suno Instructions
    • create music (custom mode)
      POST
    • create music (no-custom mode)
      POST
    • create music (Control singer gender)
      POST
    • create music (auto lyrics mode)
      POST
    • extend music
      POST
    • concat music
      POST
    • cover music
      POST
    • remaster
      POST
    • add vocal
      POST
    • add instrumental
      POST
    • stems basic
      POST
    • stems full
      POST
    • create persona
      POST
    • create music with persona
      POST
    • upload music
      POST
    • get wav
      POST
    • get midi
      POST
    • get music
      GET
  • riffusion(Deprecated)
    • Riffusion instructions
    • create music (with lyrics)
      POST
    • create music (with description)
      POST
    • cover music
      POST
    • extend music
      POST
    • replace music section
      POST
    • swap music sound
      POST
    • swap music vocals
      POST
    • upload
      POST
    • get music
      GET
  • producer
    • Producer Instructions
    • Complete Request Example
    • create music
    • upload
    • download
    • get music
  • nuro
    • Nuro Instruction
    • Error handling
    • create vocal music
    • create instrument music
    • get music
  • lyrics generation
    • Make Lyrics
  • get-credits
    GET
  1. suno

remaster

POST
https://api.aimusicapi.ai/api/v1/suno/create
Remaster the generated music, It is recommended to use clip id generated within 24 hours whenever possible.

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Body Params application/json

Example
{
    "mv":"chirp-v5",
    "task_type":"remaster",
    "continue_clip_id":"87a5e80c-00bd-4448-998d-a669e77d8ef4",//new clip id in 24h
    "variation_category":"subtle"  
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.aimusicapi.ai/api/v1/suno/create' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "mv":"chirp-v5",
    "task_type":"remaster",
    "continue_clip_id":"87a5e80c-00bd-4448-998d-a669e77d8ef4",//new clip id in 24h
    "variation_category":"subtle"  
}'

Responses

🟢200Success
application/json
Body

Example
{
    "message": "success",
    "task_id": "aac70c26-c633-4d0c-880f-91610006f9b5"
}
Modified at 2025-11-10 12:16:12
Previous
cover music
Next
add vocal
Built with