JavaScript
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));
{}
Check the status of an asynchronous music generation job.
POST /music/generate
Bearer token authentication
The ID of the music generation request.
Music generation status response
The response is of type object.
object
Was this page helpful?