GET
/
suno
/
feed
/
{taskIds}
Get Feed Info
curl --request GET \
  --url https://api.unifically.com/suno/feed/{taskIds} \
  --header 'Authorization: Bearer <token>'
{
  "task_id": "<string>",
  "clips": [
    {
      "status": "<string>",
      "title": "<string>",
      "id": "<string>",
      "audio_url": "<string>",
      "video_url": "<string>",
      "image_url": "<string>",
      "image_large_url": "<string>",
      "duration": 123,
      "model_name": "<string>",
      "prompt": "<string>",
      "created_at": "<string>"
    }
  ]
}
Get detailed information about generation tasks (includes audio/video URLs when ready).

Request Example

curl "https://api.unifically.com/suno/feed/68c911ac-c8f4-4a4f-b7c4-eb6fa4f8ae92" \
  -H "Authorization: Bearer YOUR_API_KEY"
Replace 68c911ac-c8f4-4a4f-b7c4-eb6fa4f8ae92 with your actual task ID.

Response

{
  "code": 200,
  "data": {
    "task_id": "68c911ac-c8f4-4a4f-b7c4-eb6fa4f8ae92",
    "clips": [
      {
        "status": "complete",
        "title": "Late Night Drive",
        "id": "5fa5430f-df6f-40e5-b19a-59a9244977b9",
        "video_url": "",
        "audio_url": "https://cdn1.suno.ai/5fa5430f-df6f-40e5-b19a-59a9244977b9.mp3",
        "image_url": "https://cdn2.suno.ai/image_5fa5430f-df6f-40e5-b19a-59a9244977b9.jpeg",
        "image_large_url": "https://cdn2.suno.ai/image_large_5fa5430f-df6f-40e5-b19a-59a9244977b9.jpeg",
        "major_model_version": "v4.5+",
        "model_name": "chirp-bluejay",
        "duration": 169.96,
        "prompt": "[Verse]\nStreetlights blur\nWindows down low\nWhere do we go\nGot no curfew\n\n[Prechorus]\nTell me what you want to do\nI'm all ears just for you\n\n[Chorus]\nLate night drive\nJust you and I\nUnderneath the moon\nDriving so soon\nLate night drive\nMakes me feel alive",
        "created_at": "2025-10-13T21:11:41.114Z"
      },
      {
        "status": "complete",
        "title": "Late Night Drive",
        "id": "dce3b5e9-7460-49ca-b06e-3e7b09f87b73",
        "video_url": "",
        "audio_url": "https://cdn1.suno.ai/dce3b5e9-7460-49ca-b06e-3e7b09f87b73.mp3",
        "image_url": "https://cdn2.suno.ai/image_dce3b5e9-7460-49ca-b06e-3e7b09f87b73.jpeg",
        "image_large_url": "https://cdn2.suno.ai/image_large_dce3b5e9-7460-49ca-b06e-3e7b09f87b73.jpeg",
        "major_model_version": "v4.5+",
        "model_name": "chirp-bluejay",
        "duration": 147.92,
        "prompt": "[Verse]\nStreetlights blur\nWindows down low\nWhere do we go\nGot no curfew\n\n[Prechorus]\nTell me what you want to do\nI'm all ears just for you\n\n[Chorus]\nLate night drive\nJust you and I\nUnderneath the moon\nDriving so soon\nLate night drive\nMakes me feel alive",
        "created_at": "2025-10-13T21:11:41.114Z"
      }
    ],
    "error": {}
  }
}

Response Fields

task_id
string
Task identifier
clips
array
Array of generated clips (usually 2 variations)
status
string
Status: submitted, complete, failed
title
string
Song title
id
string
Unique clip ID
audio_url
string
URL to download the MP3 file
video_url
string
URL to download video (if applicable)
image_url
string
URL to song artwork (small)
image_large_url
string
URL to song artwork (large)
duration
number
Song duration in seconds
model_name
string
Model used for generation
prompt
string
Lyrics/prompt used
created_at
string
ISO 8601 timestamp

Status Values

  • submitted: Task is queued or in progress
  • complete: Audio/video files are ready for download
  • failed: Generation failed, check error field