跳轉到主要內容
GET
/
v1
/
music
/
generations
/
{id}
curl "https://api.lemondata.cc/v1/music/generations/music_abc123" \
  -H "Authorization: Bearer sk-your-api-key"
{
  "id": "suno:abc123",
  "status": "completed",
  "audio_url": "https://cdn.suno.ai/abc123.mp3",
  "video_url": "https://cdn.suno.ai/abc123.mp4",
  "title": "Night Drive",
  "lyrics": "[Verse 1]\nDriving through the night..."
}
輪詢此端點以檢查音樂生成任務的狀態。

路徑參數

id
string
必填
音樂生成任務 ID。

回應

id
string
任務 ID。
status
string
任務狀態:pendingprocessingcompletedfailed
progress
integer
進度百分比 (0-100)。
audio_url
string
音訊檔案下載連結(完成時)。
video_url
string
帶有視覺化效果的影片版本連結(完成時)。
title
string
生成的歌曲標題。
lyrics
string
生成或提供的歌詞。
error
string
錯誤訊息(失敗時)。
curl "https://api.lemondata.cc/v1/music/generations/music_abc123" \
  -H "Authorization: Bearer sk-your-api-key"
{
  "id": "suno:abc123",
  "status": "completed",
  "audio_url": "https://cdn.suno.ai/abc123.mp3",
  "video_url": "https://cdn.suno.ai/abc123.mp4",
  "title": "Night Drive",
  "lyrics": "[Verse 1]\nDriving through the night..."
}