AI Music API
  1. riffusion
AI Music API
  • Introduction
  • Credits Usage Guide
  • Error handling
  • suno
    • Suno Instructions
    • create music
      POST
    • extend music
      POST
    • concat music
      POST
    • cover music
      POST
    • create persona
      POST
    • create music with persona
      POST
    • upload music
      POST
    • get music
      GET
  • riffusion
    • 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
  • nuro
    • Nuro Instruction
    • Error handling
    • create vocal music
      POST
    • create instrument music
      POST
    • get music
      GET
  • lyrics generation
    • Make Lyrics
  • get-credits
    GET
  1. riffusion

create music (with description)

POST
/api/v1/riffusion/create
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.sunoapi.com/api/v1/riffusion/create' \
--header 'Content-Type: application/json' \
--data-raw '{
    "mv":"FUZZ-1.1 Pro",
    "prompt": "r&b pop song",
    "custom_mode":false
}'
Response Response Example
{
    "message": "success",
    "task_id": "6d7253ac-916e-49a8-b288-91ffa7f8a8cd"
}

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Body Params application/json
mv
enum<string> 
required
Model version. Options: "FUZZ-1.1 Pro", "FUZZ-1.1", "FUZZ-1.0 Pro", "FUZZ-1.0"
Allowed values:
FUZZ-1.1 ProFUZZ-1.0 ProFUZZ-1.1FUZZ-1.0
prompt
string 
required
Song prompt/description. Only used when custom_mode is false.
custom_mode
boolean 
required
Enable custom mode (set to true to use lyrics-based generation).
Examples

Responses

🟢200success
application/json
Body
message
string 
required
task_id
string 
required
Modified at 2025-07-15 13:52:16
Previous
create music (with lyrics)
Next
cover music
Built with