Docs / audio / ElevenLabs Music
ElevenLabs Music online
Musik berlisensi komersial dari deskripsi teks, dengan kontrol durasi persis 10 detik sampai 5 menit. Cocok untuk backsound video dan iklan.
Rp Rp31 / detik
Rp1.350 −31.1%
⏱ ±15–90 detik perkiraan waktu
elevenlabs/music model id
Durasi presisiLisensi komersialInstrumentalSampai 5 menit
1 · Create a task
Kirim permintaan untuk membuat tugas generasi audio. Wajib header Idempotency-Key. Saldo direservasi sebesar estimasi; task gagal tidak ditagih.
curl -X POST https://run.getcore.id/v1/tasks \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Idempotency-Key: my-task-001" \
-H "Content-Type: application/json" \
-d '{
"model": "elevenlabs/music",
"input": {
"prompt": "upbeat corporate acoustic, gitar cerah, tempo sedang, optimis",
"duration_seconds": 30
}
}'const res = await fetch('https://run.getcore.id/v1/tasks', {
method: 'POST',
headers: {
Authorization: 'Bearer YOUR_API_KEY',
'Idempotency-Key': 'my-task-001',
'Content-Type': 'application/json',
},
body: JSON.stringify({
"model": "elevenlabs/music",
"input": {
"prompt": "upbeat corporate acoustic, gitar cerah, tempo sedang, optimis",
"duration_seconds": 30
}
}),
});
const task = await res.json();import requests
res = requests.post(
"https://run.getcore.id/v1/tasks",
headers={
"Authorization": "Bearer YOUR_API_KEY",
"Idempotency-Key": "my-task-001",
},
json={
"model": "elevenlabs/music",
"input": {
"prompt": "upbeat corporate acoustic, gitar cerah, tempo sedang, optimis",
"duration_seconds": 30
}
},
)
task = res.json()Input parameters
| Name | Type | Required | Description | Example |
|---|---|---|---|---|
prompt |
string | Yes | Deskripsi musik: genre, instrumen, tempo, dan suasana. (max 2000 chars) | upbeat corporate acoustic, gitar cerah, tempo |
duration_seconds |
integer | Yes | Panjang musik. Harga dihitung per detik. (min 10, max 300) | 30 |
force_instrumental |
boolean | No | Paksa hasil instrumental saja. | false |
2 · Poll the result
Ambil status tugas hingga selesai — poll tiap 2–5 detik.
Respons saat sukses:
{
"id": "task_9f2c…",
"status": "succeeded",
"model": "elevenlabs/music",
"price": {
"currency": "IDR",
"estimated": 930,
"reserved": 930,
"final": 930
},
"output": {
"urls": [
"https://storage.getcore.id/outputs/task_9f2c…/0.mpeg"
],
"expires_at": "(7 hari setelah selesai)"
}
}
Status values
| Status | Keterangan |
|---|---|
queued | Tugas sedang diantrikan. |
processing | Sedang diproses. |
succeeded | Berhasil. |
failed | Gagal — lihat error detail, tidak ditagih. |
audio/mpeg, dilayani dari CDN kami dan berlaku 7 hari — salin ke penyimpananmu sendiri untuk jangka panjang.Best practices
Bila generation gagal, task berstatus failed dengan error.code ternormalisasi (mis. moderation_blocked, upstream_error) dan price.final = 0 — saldo dikembalikan otomatis. Daftar lengkap kode error ada di Error handling. Selalu kirim Idempotency-Key unik per tugas agar retry aman.
Coba tanpa kode: jalankan model ini langsung dari Playground atau lihat di API Market.
