- Introduction
- Credits Usage Guide
- Music API FAQ & Troubleshooting
- Common Scenarios
- Error handling
- sonic
- studio
- lyrics generation
- nuro
get music
GET
https://api.musicapi.ai/api/v1/nuro/task/{task_id}
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Path Params
task_id
string
required
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 GET 'https://api.musicapi.ai/api/v1/nuro/task/'
Responses
🟢200success
application/json
Body
task_id
string
required
status
enum<string>
required
Allowed values:
pendingrunningsucceeded
progress
integer
required
<= 100
audio_url
string
required
lyrics
string
required
duration
number
required
genre
string
required
mood
string
required
gender
string
required
timbre
string
required
Example
{
"task_id": "4c35433b-1649-433d-b513-8422af70fbaa",
"status": "succeeded",
"progress": 100,
"audio_url": "https://cdn.musicapi.ai/storage/v1/object/public/songs/song-4c35433b-1649-433d-b513-8422af70fbaa.wav",
"lyrics": "[intro]\n[verse]\nWe were both young when I first saw you I close my eyes and the flashback starts I'm standin' there On a balcony in summer air\nSee the lights see the party the ball gowns See you make your way through the crowd And say 'Hello' Little did I know\n[bridge]\nThat you were Romeo you were throwin' pebbles And my daddy said 'Stay away from Juliet' And I was cryin' on the staircase Escape this town for a little while oh oh\n[chorus]\nAnd said 'Marry me Juliet You'll never have to be alone I love you and that's all I really know I talked to your dad go pick out a white dress It's a love story baby just say 'Yes''\n[inst]\n[verse]\nInstrumental break\n[bridge]\nI got tired of waiting Wondering if you were ever coming around My faith in you was fading When I met you on the outskirts of town\n[chorus]\nAnd I said 'Romeo save me I've been feeling so alone I keep waiting for you but you never come Is this in my head I don't know what to think'\n[inst]\n[verse]\nI talked to your dad go pick out a white dress It's a love story baby just say 'Yes' Oh oh oh 'Cause we were both young when I first saw you\n[outro]",
"duration": 199.04325,
"genre": "Pop",
"mood": "Dynamic/Energetic",
"gender": "Female",
"timbre": "Sweet_AUDIO_TIMBRE"
}
Modified at 2025-03-26 06:39:44