Endpoint
status is "completed", the results array contains all generated music items.
Path parameter
| Parameter | Description |
|---|---|
id | Task ID returned by a generation endpoint |
Request body
No body required. Send an empty JSON object{} or omit the body.
Response
While processing:Task status values
| Status | Meaning |
|---|---|
queuing | Waiting in queue |
processing | Generation in progress |
completed | Done — results populated |
failed | Failed — error field explains why |
Response fields
| Field | Type | Description |
|---|---|---|
id | string | Task ID |
status | string | Current status |
created_at | integer | Unix timestamp (ms) when task was created |
results | array | Present only when status = "completed" |
error | string | Present only when status = "failed" |
Result object fields
| Field | Type | Description |
|---|---|---|
id | string | Music clip ID — use in audio processing endpoints |
audio_url | string | MP3 download URL |
image_url | string | Cover art URL |
title | string | Track title |
duration | float | Duration in seconds |
tags | string | Style tags |
prompt | string | Generation prompt |
expire_at | integer | Unix timestamp (ms) when files expire |