Authorization: Bearer ********************
//v1.0
// {
// "type": "bgm",
// "description": "Intense and tense game battle background music with epic momentum",
// "genre": ["video game", "electronic", "epic", "cinematic"],
// "mood": ["powerful", "energetic", "intense", "aggressive"],
// "instrument": ["drums", "synth", "brass", "strings"],
// "theme": ["achievement", "fantasy", "drama"],
// "duration": 35
// }
//v2.0
{
"description": "cinematic background score",
"type": "bgm",
"version": "v2.0",
"duration": 90,
"segments": [
{"name": "intro", "duration": 20},
{"name": "verse", "duration": 25},
{"name": "chorus", "duration": 30},
{"name": "outro", "duration": 15}
]
}
curl --location --request POST 'https://api.musicapi.ai/api/v1/nuro/create' \
--header 'Content-Type: application/json' \
--data-raw '//v1.0
// {
// "type": "bgm",
// "description": "Intense and tense game battle background music with epic momentum",
// "genre": ["video game", "electronic", "epic", "cinematic"],
// "mood": ["powerful", "energetic", "intense", "aggressive"],
// "instrument": ["drums", "synth", "brass", "strings"],
// "theme": ["achievement", "fantasy", "drama"],
// "duration": 35
// }
//v2.0
{
"description": "cinematic background score",
"type": "bgm",
"version": "v2.0",
"duration": 90,
"segments": [
{"name": "intro", "duration": 20},
{"name": "verse", "duration": 25},
{"name": "chorus", "duration": 30},
{"name": "outro", "duration": 15}
]
}'
{
"message": "success",
"task_id": "b1eac403-06cb-4e58-971d-835d3b321508"
}