Custom Audio Generation
Parameters
Examples
Your own lyrics
最后更新于
最后更新于
POST /generate/custom-mode HTTP/1.1
Host: api.aimlapi.com
Content-Type: application/json
Accept: */*
Content-Length: 91
[
{
"prompt": "text",
"tags": "text",
"title": "text",
"make_instrumental": true,
"wait_audio": true
}
]{
"image_url": "https://example.com",
"audio_url": "https://example.com",
"video_url": "https://example.com"
}import requests
url = "https://api.aimlapi.com/generate/custom-mode"
headers = {
"Authorization": "Bearer YOUR_API_KEY",
"Content-Type": "application/json"
}
payload = {
"prompt": "Create an energetic dance music track",
"tags": "dance, energetic",
"title": "Dance Track",
"make_instrumental": False,
"wait_audio": True
}
response = requests.post(url, json=payload, headers=headers)
print(response.content)
const axios = require('axios');
const url = 'https://api.aimlapi.com/generate/custom-mode';
const headers = {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
};
const payload = {
'prompt': 'Create an energetic dance music track',
'tags': 'dance, energetic',
'title': 'Dance Track',
'make_instrumental': false,
'wait_audio': true
};
axios.post(url, payload, { headers: headers, responseType: 'arraybuffer' })
.then(response => {
console.log(response.data);
})
.catch(error => {
console.error(error);
});
{
"prompt": "[Verse 1]\nCruel flames of war engulf this land\nBattlefields filled with death and dread\nInnocent souls in darkness, they rest\nMy heart trembles in this silent test\n\n[Verse 2]\nPeople weep for loved ones lost\nBattered bodies bear the cost\nSeeking peace and hope once known\nOur grief transforms to hearts of stone\n\n[Chorus]\nSilent battlegrounds, no birds' song\nShadows of war, where we don't belong\nMay flowers of peace bloom in this place\nLet's guard this precious dream with grace\n\n[Bridge]\nThrough the ashes, we will rise\nHand in hand, towards peaceful skies\nNo more sorrow, no more pain\nTogether, we'll break these chains\n\n[Chorus]\nSilent battlegrounds, no birds' song\nShadows of war, where we don't belong\nMay flowers of peace bloom in this place\nLet's guard this precious dream with grace\n\n[Outro]\nIn unity, our strength will grow\nA brighter future, we'll soon know\nFrom the ruins, hope will spring\nA new dawn, we'll together bring",
"tags": "pop metal male melancholic",
"title": "Silent Battlefield",
"make_instrumental": false,
"wait_audio": true
}