POST
/v2/cover/generate음악 커버 API 생성
음악 트랙에 대한 AI 커버 이미지를 생성하세요. 요청당 1크레딧을 소비합니다.
POST
https://udioapi.pro/api/v2/cover/generatetips
작동 방식: 작업 생성, 상태 폴링, 이미지 가져오기.
참고: URL은 14일 동안 보관됩니다.
requestHeaders
| name | required | description |
|---|---|---|
Authorization | yes | 인증을 위한 Bearer 토큰 |
Content-Type | yes | application/json |
requestBody
표지 생성 요청 본문
commonParams
| paramName | paramType | required | description | example |
|---|---|---|---|---|
taskId | string | yes | 원곡 생성 태스크 ID | gen123213213213123bksv |
responses
json
{
"code": 200,
"msg": "success",
"data": {
"taskId": "cover123123213213b880d2"
}
}codeExamples
curl
curl -X POST "https://udioapi.pro/api/v2/cover/generate" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"taskId": "gen123213213213123bksv"
}'