POST
/v2/upload-cover/generateKapak Oluşturma API'sini Yükle
Orijinal melodiyi korurken ses yükleyin ve bir AI cover sürümü oluşturun.
POST
https://udioapi.pro/api/v2/upload-cover/generatetips
Modlar: özel olmayan mod (basit) ve özel mod (tam kontrol).
Notlar: dosya saklama 15 gün, her 5-10 saniyede bir anket durumu, isteğe bağlı callback_url.
requestHeaders
| name | required | description |
|---|---|---|
Authorization | yes | Kimlik doğrulama için taşıyıcı belirteci |
Content-Type | yes | application/json |
requestBody
İstek gövdesi basit modu ve özel modu destekler
commonParams
| paramName | paramType | required | description | example |
|---|---|---|---|---|
upload_url | string | yes | Ses dosyasının genel URL'si | https://storage.example.com/my-song.mp3 |
model | string | yes | Yapay zeka modeli | chirp-v4-5 |
custom_mode | boolean | no | Özel modu etkinleştir | false |
make_instrumental | boolean | no | Enstrümantal versiyon oluştur | false |
prompt | string | no | Açıklama veya şarkı sözleri | A calm and relaxing piano track with soft melodies |
style | string | no | Müzik tarzı | pop, upbeat, electronic |
title | string | no | Şarkı adı | Summer Cover |
tags | string | no | Negatif etiketler | Heavy Metal, Upbeat Drums |
gender | string | no | Vokal cinsiyet tercihi | female |
style_weight | number | no | Stile bağlılık gücü | 0.65 |
weirdness_constraint | number | no | Yaratıcı sapma kontrolü | 0.65 |
audio_weight | number | no | Ses özelliği dengesi | 0.65 |
callback_url | string | no | Tamamlanma bildirimleri için Webhook URL'si | https://api.example.com/webhook/upload-cover |
responses
json
{
"code": 200,
"message": "success",
"workId": "upcov1a2b3c4d5e6f7890abcdef",
"data": {
"task_id": "upcov1a2b3c4d5e6f7890abcdef"
}
}codeExamples
curl
curl -X POST "https://udioapi.pro/api/v2/upload-cover/generate" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "chirp-v4-5",
"upload_url": "https://storage.example.com/my-song.mp3",
"custom_mode": false,
"make_instrumental": false,
"prompt": "A calm and relaxing piano cover with soft melodies"
}'