GET
/
api
/
v1
/
suno
/
cover
/
record-info
Get Cover Generation Details
curl --request GET \
  --url https://api.kie.ai/api/v1/suno/cover/record-info \
  --header 'Authorization: Bearer <token>'
{
  "code": 200,
  "msg": "success",
  "data": {
    "taskId": "21aee3c3c2a01fa5e030b3799fa4dd56",
    "parentTaskId": "73d6128b3523a0079df10da9471017c8",
    "callbackUrl": "https://api.example.com/callback",
    "completeTime": "2025-01-15T10:35:27.000Z",
    "response": {
      "images": [
        "https://tempfile.aiquickdraw.com/s/1753958521_6c1b3015141849d1a9bf17b738ce9347.png",
        "https://tempfile.aiquickdraw.com/s/1753958524_c153143acc6340908431cf0e90cbce9e.png"
      ]
    },
    "successFlag": 1,
    "createTime": "2025-01-15T10:33:01.000Z",
    "errorCode": 200,
    "errorMessage": ""
  }
}

Usage Guide

  • Use this interface to check Cover generation task status
  • Access generated cover image URLs upon completion
  • Track processing progress and any errors that may occur
  • Supports polling to get task results, recommend querying every 30 seconds

Developer Notes

  • Cover image URLs are only available upon successful completion
  • Error codes and messages are provided for failed tasks
  • After successful processing, cover images are retained for 14 days
  • Usually generates 2 different style cover images

Authorizations

Authorization
string
header
required

All APIs require authentication via Bearer Token.

Get API Key:

  1. Visit API Key Management Page to get your API Key

Usage: Add to request header: Authorization: Bearer YOUR_API_KEY

Note:

  • Keep your API Key secure and do not share it with others
  • If you suspect your API Key has been compromised, reset it immediately in the management page

Query Parameters

taskId
string
required

Unique identifier of the Cover generation task to retrieve. This is the taskId returned when creating the Cover generation task.

Response

200
application/json

Success

The response is of type object.