- Introduction
- Credits Usage Guide
- Music API FAQ & Troubleshooting
- Special Scenarios
- Error handling
- sonic
- riffusion
- studio(Unavailable)
- lyrics generation
- nuro
- get-creditsGET
create music (with lyrics)
POST
https://api.musicapi.ai/api/v1/riffusion/create
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Body Params application/json
custom_mode
boolean
required
lyrics
string
optional
title
string
optional
make_instrumental
boolean
required
prompt
string
optional
sound
string
optional
mv
enum<string>
required
Allowed values:
FUZZ-1.1 ProFUZZ-1.0 ProFUZZ-1.1FUZZ-1.0
Example
{
"mv":"FUZZ-1.1 Pro",
"lyrics": "[Verse]\nStars they shine above me\nMoonlight softly glows\nWhispers in the night sky\nDreams that only grow\n\n[Verse 2]\nMidnight winds are calling\nCarrying a tune\nHeartbeats echo softly\nDancing with the moon\n\n[Chorus]\nStarry night starry night\nLet your light ignite ignite\nBright as day bright as day\nGuide my way guide my way\n\n[Verse 3]\nShadows move and twinkle\nNighttime come alive\nMystery in the heavens\nStories that survive\n\n[Bridge]\nMagic fills the darkness\nWonder in the air\nEvery star a secret\nIn the sky I stare\n\n[Chorus]\nStarry night starry night\nLet your light ignite ignite\nBright as day bright as day\nGuide my way guide my way",
"custom_mode":true,
"title":"Starts",
"sound":"pop",
"make_instrumental":false
}
Request 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.musicapi.ai/api/v1/riffusion/create' \
--header 'Content-Type: application/json' \
--data-raw '{
"mv":"FUZZ-1.1 Pro",
"lyrics": "[Verse]\nStars they shine above me\nMoonlight softly glows\nWhispers in the night sky\nDreams that only grow\n\n[Verse 2]\nMidnight winds are calling\nCarrying a tune\nHeartbeats echo softly\nDancing with the moon\n\n[Chorus]\nStarry night starry night\nLet your light ignite ignite\nBright as day bright as day\nGuide my way guide my way\n\n[Verse 3]\nShadows move and twinkle\nNighttime come alive\nMystery in the heavens\nStories that survive\n\n[Bridge]\nMagic fills the darkness\nWonder in the air\nEvery star a secret\nIn the sky I stare\n\n[Chorus]\nStarry night starry night\nLet your light ignite ignite\nBright as day bright as day\nGuide my way guide my way",
"custom_mode":true,
"title":"Starts",
"sound":"pop",
"make_instrumental":false
}'
Responses
🟢200success
application/json
Body
message
string
required
task_id
string
required
Example
{
"message": "success",
"task_id": "6d7253ac-916e-49a8-b288-91ffa7f8a8cd"
}
Modified at 2025-06-26 16:37:05