Skip to main content
GET
/
music
/
generate
/
{music_id}
Get music generation status
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://api.phaseo.app/v1/music/generate/{music_id}', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
{}
Use this endpoint to poll a music job created by POST /music/generate.

Authorizations

Authorization
string
header
required

Bearer token authentication

Path Parameters

music_id
string
required

The ID of the music generation request.

Response

200 - application/json

Music generation status response

The response is of type object.

Last modified on February 17, 2026