生成 & 查询
此页面包含生成音乐,生成歌词,上传音频至suno以及部分业务接口。
生成音乐
POST https://api.ttapi.io/suno/v1/music
通过文字提示词或者自定义歌词生成音乐,注:每次请求生成两首音乐,不可拆分,定价详见
Headers
Content-Type
application/json
TT-API-KEY
用于请求授权 TT-API 的API密钥
Body
mv
string
是
使用模型
suno使用模型,支持 chirp-v3-0 chirp-v3-5 chirp-v4 chirp-v4-5
chirp-v4-5+ chirp-v5
chirp-v4-5-all
默认chirp-v4-5+
custom
boolean
是
音频是否自定义 true - 音频将从歌词中生成 false - 音频将根据灵感模式提示词生成
instrumental
boolean
是
是否生成纯音乐 true 为生成纯音乐,true的情况下会忽略自定义歌词 默认为false
gpt_description_prompt
string
否
灵感模式提示词 根据此提示词自动生成歌词
prompt
string
否
歌词,自定义模式专用
title
string
否
标题,自定义模式专用
tags
string
否
风格标签,自定义模式专用,最大长度200字符
generateVideo(废弃)
boolean
否
是否需要生成音频的同时生成视频,可选值 true false,默认false
negative_tags
string
否
不希望生成的风格标签 自定义模式专用
style_weight
number
否
音频风格权重 0-1之间 自定义模式专用
weirdness_constraint
number
否
音频奇妙度权重 0-1之间 自定义模式专用
isStorage
boolean
否
是否转存,false即返回官方源地址。
可选值 true false,默认true
auto_lyrics
boolean
否
是否自动生成歌词
自定义模式专用。
false - 使用输入的歌词生成音乐
true - 根据输入的歌词进行二次创作,与灵感模式提示词效果一致
默认false
vocal_gender
string
否
音色性别
Male - 男性
Female - 女性
persona_id
string
否
歌手风格ID
hookUrl
string
否
回调通知地址,当设置此参数,任务成功或者失败降会向该地址发送一个post请求,携带数据与查询任务结果中返回一致
Response
{
"status": "SUCCESS",
"message": "",
"data": {
"jobId": "ed1a1b01-7d64-4c8a-acaa-71185d23a2f3"
}
}{
"status": "FAILED",
"message": "error message",
"data": {}
}生成歌词
POST https://api.ttapi.io/suno/v1/lyrics
根据提示词生成歌词,定价详见
Headers
Content-Type
application/json
TT-API-KEY
用于请求授权 TT-API 的API密钥
Body
prompt
string
是
提示词
hookUrl
string
否
回调通知地址,当设置此参数,任务成功或者失败将会向该地址发送一个post请求,携带数据与查询任务结果返回一致
Response
{
"status": "SUCCESS",
"message": "",
"data": {
"jobId": "ed1a1b01-7d64-4c8a-acaa-71185d23a2f3"
}
}{
"status": "FAILED",
"message": "error message",
"data": {}
}上传音频【免费】
POST https://api.ttapi.io/suno/v1/upload
上传音频至suno,得到music_id用以完成后续操作,此接口为免费接口
Headers
Content-Type
application/json
TT-API-KEY
用于请求授权 TT-API 的API密钥
Body
audio_url
string
是
音频地址 必须是可公开访问的音频地址
is_async
boolean
否
是否异步
false - 同步等待
true - 异步查询
默认:false
hookUrl
string
否
回调通知地址,当设置此参数,任务成功或者失败降会向该地址发送一个post请求,携带数据与查询任务结果中返回一致
Response
{
"status": "SUCCESS",
"message": "success",
"data": {
"music_id": "51dd4085-7cbb-4b18-bba2-7e14f37299d4"
}
}{
"status": "FAILED",
"message": "error message",
"data": {}
}查询任务结果
GET https://api.ttapi.io/suno/v1/fetch
通过jobId查询当前音乐&歌词生成结果,免费接口
Headers
Content-Type
application/json
TT-API-KEY
用于请求授权 TT-API 的API密钥
Query参数
jobId
string
是
生成的音乐或者歌词的jobId
Response
异步回调josn结构与fetch接口查询返回结构一致
{
"status": "SUCCESS",
"message": "success",
"jobId": "34505837-41f0-4c68-b830-e8e051b72148",
"data": {
"jobId": "34505837-41f0-4c68-b830-e8e051b72148",
"action": "extend",
"progress": "100%",
"mv": "chirp-v3-0",
"quota": "5",
"hookUrl": null,
"musics": [
{
"musicId": "a7d3712d-2507-4d87-80d0-b60bb375a049",
"prompt": "[Verse]\n远方你的微笑\n穿越时空寻找\n夜晚的风轻飘\n心跳为你燃烧\n\n[Bridge]\n梦里花落几场\n想你思念成霜\n星光作伴凄凉\n入骨相思难忘\n\n[Chorus]\n思念入骨髓\n心已随风飞\n两地相隔泪\n只为与你归",
"title": "思念入骨髓 (Longing in My Bones)",
"tags": "harmonized melancholic traditional chinese",
"imageUrl": "https://cdn2.suno.ai/image_a7d3712d-2507-4d87-80d0-b60bb375a049.jpeg",
"imageLargeUrl": "https://cdn2.suno.ai/image_large_a7d3712d-2507-4d87-80d0-b60bb375a049.jpeg",
"audioUrl": "https://cdn1.suno.ai/a7d3712d-2507-4d87-80d0-b60bb375a049.mp3",
"videoUrl": "https://cdn1.suno.ai/a7d3712d-2507-4d87-80d0-b60bb375a049.mp4"
},
{
"musicId": "ab763675-b371-44d5-ae1b-6aea35fe4403",
"prompt": "[Verse]\n远方你的微笑\n穿越时空寻找\n夜晚的风轻飘\n心跳为你燃烧\n\n[Bridge]\n梦里花落几场\n想你思念成霜\n星光作伴凄凉\n入骨相思难忘\n\n[Chorus]\n思念入骨髓\n心已随风飞\n两地相隔泪\n只为与你归",
"title": "思念入骨髓 (Longing in My Bones)",
"tags": "harmonized melancholic traditional chinese",
"imageUrl": "https://cdn2.suno.ai/image_ab763675-b371-44d5-ae1b-6aea35fe4403.jpeg",
"imageLargeUrl": "https://cdn2.suno.ai/image_large_ab763675-b371-44d5-ae1b-6aea35fe4403.jpeg",
"audioUrl": "https://cdn1.suno.ai/ab763675-b371-44d5-ae1b-6aea35fe4403.mp3",
"videoUrl": "https://cdn1.suno.ai/ab763675-b371-44d5-ae1b-6aea35fe4403.mp4"
}
]
}
}
{
"status": "SUCCESS",
"message": "success",
"jobId": "f106f560-e148-4ea0-ab1a-d94e11a0f4f5",
"data": {
"jobId": "f106f560-e148-4ea0-ab1a-d94e11a0f4f5",
"action": "lyrics",
"progress": "100%",
"prompt": "海阔天空",
"text": "[Verse]\n在风中呼喊我还在等候\n远方的光芒犹如梦幻泡影\n世界太大我却无路可走\n海阔天空却迷失了方向\n\n[Verse 2]\n天边的云朵飘散在风中\n岁月像水流淌不停冲动\n心中的欲望如野火燃烧\n走向远方不问前路远\n\n[Chorus]\n海阔天空我的心依然自由\n穿越黑暗寻找那道光芒\n海浪拍打着心灵的执着\n信念无畏在风雨中闯荡\n\n[Verse 3]\n心灵的旅行无边的冲突\n找不到归途没有终点站\n生命的狂欢如烟花绽放\n梦醒时分泪洒满眼眶\n\n[Bridge]\n不怕跌倒不怕失去\n心中执念一路到底\n回头看那脚印深深\n海阔天空无怨无悔\n\n[Chorus]\n海阔天空我的心依然自由\n穿越黑暗寻找那道光芒\n海浪拍打着心灵的执着\n信念无畏在风雨中闯荡",
"title": "海阔天空",
"quota": "1",
"hookUrl": "https://webhook-test.com/a9b086dc0e5a18c26053791aa93bd2c7"
}
}{
"status": "SUCCESS",
"message": "success",
"jobId": "1d3cf729-df97-4667-bdfe-95ce6527d3c3",
"data": {
"jobId": "1d3cf729-df97-4667-bdfe-95ce6527d3c3",
"action": "stems",
"progress": "100%",
"mv": "chirp-v4",
"quota": "6",
"hookUrl": null,
"musics": [
{
"musicId": "afb73934-840f-4dc1-abc4-51c505454b5a",
"prompt": "I love Chinese dumplings",
"title": " (Vocals)",
"tags": "",
"imageUrl": "https://cdn.ttapi.io/suno/2025-06-27/ffaaa2ae-bef5-4ba7-8f19-b974681533ee.jpg",
"imageLargeUrl": "https://cdn.ttapi.io/suno/2025-06-27/ffaaa2ae-bef5-4ba7-8f19-b974681533ee.jpg",
"audioUrl": "https://cdn.ttapi.io/suno/2025-06-27/992cb1f5-2822-4808-b3bf-2dfba006eb08.mp3",
"videoUrl": "https://cdn1.suno.ai/afb73934-840f-4dc1-abc4-51c505454b5a.mp4",
"duration": "8.12",
"createdAt": "2025-06-27T09:17:27.921Z"
},
{
"musicId": "c5c244b9-7f1f-4c1d-95a6-2665be9fc6ff",
"prompt": "",
"title": " (Instrumental)",
"tags": "",
"imageUrl": "https://cdn.ttapi.io/suno/2025-06-27/991735fc-b958-4721-aea1-e770d9c61b4b.jpg",
"imageLargeUrl": "https://cdn.ttapi.io/suno/2025-06-27/991735fc-b958-4721-aea1-e770d9c61b4b.jpg",
"audioUrl": "https://cdn.ttapi.io/suno/2025-06-27/1fb9326d-319d-4a7b-a056-8556eec68a22.mp3",
"videoUrl": "https://cdn1.suno.ai/c5c244b9-7f1f-4c1d-95a6-2665be9fc6ff.mp4",
"duration": "8.12",
"createdAt": "2025-06-27T09:17:27.921Z"
},
{
"musicId": "e19082ac-02e7-443d-8978-8812e721f821",
"prompt": "I love Chinese dumplings",
"title": " (Vocals)",
"tags": "",
"imageUrl": "https://cdn.ttapi.io/suno/2025-06-27/820c2f91-6ce1-4473-92fe-21fbff49f711.jpg",
"imageLargeUrl": "https://cdn.ttapi.io/suno/2025-06-27/820c2f91-6ce1-4473-92fe-21fbff49f711.jpg",
"audioUrl": "https://cdn.ttapi.io/suno/2025-06-27/86f36d64-4b17-453d-a023-7a85526ae51f.mp3",
"videoUrl": "https://cdn1.suno.ai/e19082ac-02e7-443d-8978-8812e721f821.mp4",
"duration": "8.12",
"createdAt": "2025-06-27T09:17:27.921Z"
},
{
"musicId": "689af2d9-30a7-4161-9b3e-d4eade8e2372",
"prompt": "",
"title": " (Instrumental)",
"tags": "",
"imageUrl": "https://cdn.ttapi.io/suno/2025-06-27/2a9cffaa-9372-4666-84a5-f6decb1b6a1a.jpg",
"imageLargeUrl": "https://cdn.ttapi.io/suno/2025-06-27/2a9cffaa-9372-4666-84a5-f6decb1b6a1a.jpg",
"audioUrl": "https://cdn.ttapi.io/suno/2025-06-27/564ed981-3b40-4483-bfb2-387e98d39a97.mp3",
"videoUrl": "https://cdn1.suno.ai/689af2d9-30a7-4161-9b3e-d4eade8e2372.mp4",
"duration": "8.12",
"createdAt": "2025-06-27T09:17:27.922Z"
}
]
}
}{
"status": "SUCCESS",
"message": "success",
"jobId": "2beb7b93-5835-4613-8b0b-23b199f1736c",
"data": {
"jobId": "2beb7b93-5835-4613-8b0b-23b199f1736c",
"action": "stems-all",
"progress": "100%",
"mv": "chirp-v4",
"quota": "60",
"hookUrl": null,
"musics": [
{
"musicId": "6af2cd86-b5c6-4f6e-8bf5-814ab4d1f43d",
"prompt": "I love Chinese dumplings",
"title": " (Vocals)",
"tags": "",
"imageUrl": "https://cdn.ttapi.io/suno/2025-06-27/2cceb69f-7c01-491d-8591-5b6ff16a25d8.jpg",
"imageLargeUrl": "https://cdn.ttapi.io/suno/2025-06-27/2cceb69f-7c01-491d-8591-5b6ff16a25d8.jpg",
"audioUrl": "https://cdn.ttapi.io/suno/2025-06-27/3457b854-7ae9-48d7-b714-6d2a8b120b2f.mp3",
"videoUrl": "https://cdn1.suno.ai/6af2cd86-b5c6-4f6e-8bf5-814ab4d1f43d.mp4",
"duration": "8.12",
"createdAt": "2025-06-27T09:19:35.025Z"
},
{
"musicId": "29e80885-d2e0-4ccc-b693-5ce2164dcc9d",
"prompt": "I love Chinese dumplings",
"title": " (Backing Vocals)",
"tags": "",
"imageUrl": "https://cdn.ttapi.io/suno/2025-06-27/d584d792-7916-4d5d-887b-db15d9aeaf73.jpg",
"imageLargeUrl": "https://cdn.ttapi.io/suno/2025-06-27/d584d792-7916-4d5d-887b-db15d9aeaf73.jpg",
"audioUrl": "https://cdn.ttapi.io/suno/2025-06-27/dfa84e67-4cc2-426b-a143-05fefc7b5258.mp3",
"videoUrl": "https://cdn1.suno.ai/29e80885-d2e0-4ccc-b693-5ce2164dcc9d.mp4",
"duration": "8.12",
"createdAt": "2025-06-27T09:19:35.025Z"
},
{
"musicId": "c148ceb2-18c7-41db-812a-310023e52c6d",
"prompt": "",
"title": " (Drums)",
"tags": "",
"imageUrl": "https://cdn.ttapi.io/suno/2025-06-27/3d8a9950-1f8f-4996-b80e-272c47f73864.jpg",
"imageLargeUrl": "https://cdn.ttapi.io/suno/2025-06-27/3d8a9950-1f8f-4996-b80e-272c47f73864.jpg",
"audioUrl": "https://cdn.ttapi.io/suno/2025-06-27/f09d6348-988c-4963-8b1c-8c9589b28790.mp3",
"videoUrl": "https://cdn1.suno.ai/c148ceb2-18c7-41db-812a-310023e52c6d.mp4",
"duration": "8.12",
"createdAt": "2025-06-27T09:19:35.025Z"
},
{
"musicId": "ce68071d-41b3-4410-bcd1-cf43af3df8a7",
"prompt": "",
"title": " (Bass)",
"tags": "",
"imageUrl": "https://cdn.ttapi.io/suno/2025-06-27/0e0b2952-95f8-4f50-bc8c-34f0c04e8e13.jpg",
"imageLargeUrl": "https://cdn.ttapi.io/suno/2025-06-27/0e0b2952-95f8-4f50-bc8c-34f0c04e8e13.jpg",
"audioUrl": "https://cdn.ttapi.io/suno/2025-06-27/3886a827-0eb2-4d8b-a971-cde490bf2bd9.mp3",
"videoUrl": "https://cdn1.suno.ai/ce68071d-41b3-4410-bcd1-cf43af3df8a7.mp4",
"duration": "8.12",
"createdAt": "2025-06-27T09:19:35.025Z"
},
{
"musicId": "f050cdfc-f6d7-4b14-9fa4-f23dfc9a04e9",
"prompt": "",
"title": " (Guitar)",
"tags": "",
"imageUrl": "https://cdn.ttapi.io/suno/2025-06-27/8bd88696-36d1-430c-bdbf-d451d96a8bf6.jpg",
"imageLargeUrl": "https://cdn.ttapi.io/suno/2025-06-27/8bd88696-36d1-430c-bdbf-d451d96a8bf6.jpg",
"audioUrl": "https://cdn.ttapi.io/suno/2025-06-27/ee739d87-d729-45fa-a26c-794fe88dd4cd.mp3",
"videoUrl": "https://cdn1.suno.ai/f050cdfc-f6d7-4b14-9fa4-f23dfc9a04e9.mp4",
"duration": "8.12",
"createdAt": "2025-06-27T09:19:35.025Z"
},
{
"musicId": "81875dc7-95ec-43b7-b922-dcd658d16623",
"prompt": "",
"title": " (Keyboard)",
"tags": "",
"imageUrl": "https://cdn.ttapi.io/suno/2025-06-27/25544230-14c4-4d5a-a5b5-5540fcc0b788.jpg",
"imageLargeUrl": "https://cdn.ttapi.io/suno/2025-06-27/25544230-14c4-4d5a-a5b5-5540fcc0b788.jpg",
"audioUrl": "https://cdn.ttapi.io/suno/2025-06-27/fbdf864a-c84b-4cc7-b99c-cf369515e63d.mp3",
"videoUrl": "https://cdn1.suno.ai/81875dc7-95ec-43b7-b922-dcd658d16623.mp4",
"duration": "8.12",
"createdAt": "2025-06-27T09:19:35.025Z"
},
{
"musicId": "50f6533d-24a5-444b-8ff6-eb90c6e53f8f",
"prompt": "",
"title": " (Percussion)",
"tags": "",
"imageUrl": "https://cdn.ttapi.io/suno/2025-06-27/6638fa08-a4fe-4e00-a0a0-0944c2489bbf.jpg",
"imageLargeUrl": "https://cdn.ttapi.io/suno/2025-06-27/6638fa08-a4fe-4e00-a0a0-0944c2489bbf.jpg",
"audioUrl": "https://cdn.ttapi.io/suno/2025-06-27/82cc8d36-d613-47ff-a8b8-acd3bb5412b4.mp3",
"videoUrl": "https://cdn1.suno.ai/50f6533d-24a5-444b-8ff6-eb90c6e53f8f.mp4",
"duration": "8.12",
"createdAt": "2025-06-27T09:19:35.025Z"
},
{
"musicId": "f32449c1-e925-478b-9b6a-b6194f0ab9c4",
"prompt": "",
"title": " (Strings)",
"tags": "",
"imageUrl": "https://cdn.ttapi.io/suno/2025-06-27/63d44752-884e-41b9-bd9c-121ce63a35ea.jpg",
"imageLargeUrl": "https://cdn.ttapi.io/suno/2025-06-27/63d44752-884e-41b9-bd9c-121ce63a35ea.jpg",
"audioUrl": "https://cdn.ttapi.io/suno/2025-06-27/d627c677-8079-4374-892f-0242619f34ff.mp3",
"videoUrl": "https://cdn1.suno.ai/f32449c1-e925-478b-9b6a-b6194f0ab9c4.mp4",
"duration": "8.12",
"createdAt": "2025-06-27T09:19:35.025Z"
},
{
"musicId": "c0976857-59a4-4d2c-8f48-def6d226cdb4",
"prompt": "",
"title": " (Synth)",
"tags": "",
"imageUrl": "https://cdn.ttapi.io/suno/2025-06-27/fd4047a4-a79f-447b-b2ef-45533364169a.jpg",
"imageLargeUrl": "https://cdn.ttapi.io/suno/2025-06-27/fd4047a4-a79f-447b-b2ef-45533364169a.jpg",
"audioUrl": "https://cdn.ttapi.io/suno/2025-06-27/294d2dbe-2d32-4e6a-b78e-c22d90c6d48c.mp3",
"videoUrl": "https://cdn1.suno.ai/c0976857-59a4-4d2c-8f48-def6d226cdb4.mp4",
"duration": "8.12",
"createdAt": "2025-06-27T09:19:35.025Z"
},
{
"musicId": "005fcad5-057c-4ed5-9304-1f6291b6299a",
"prompt": "",
"title": " (FX)",
"tags": "",
"imageUrl": "https://cdn.ttapi.io/suno/2025-06-27/d91a9461-3960-42bc-b536-332d1177f40f.jpg",
"imageLargeUrl": "https://cdn.ttapi.io/suno/2025-06-27/d91a9461-3960-42bc-b536-332d1177f40f.jpg",
"audioUrl": "https://cdn.ttapi.io/suno/2025-06-27/8cc0400a-219b-48d8-9b45-2a52b9a9d6c3.mp3",
"videoUrl": "https://cdn1.suno.ai/005fcad5-057c-4ed5-9304-1f6291b6299a.mp4",
"duration": "8.12",
"createdAt": "2025-06-27T09:19:35.025Z"
},
{
"musicId": "104639f4-f765-46d2-9463-20ddfd9d154a",
"prompt": "",
"title": " (Brass)",
"tags": "",
"imageUrl": "https://cdn.ttapi.io/suno/2025-06-27/82c8be69-c087-47e0-9682-a598d4425d3d.jpg",
"imageLargeUrl": "https://cdn.ttapi.io/suno/2025-06-27/82c8be69-c087-47e0-9682-a598d4425d3d.jpg",
"audioUrl": "https://cdn.ttapi.io/suno/2025-06-27/74898169-d82d-4553-b651-84ceb7b37363.mp3",
"videoUrl": "https://cdn1.suno.ai/104639f4-f765-46d2-9463-20ddfd9d154a.mp4",
"duration": "8.12",
"createdAt": "2025-06-27T09:19:35.025Z"
},
{
"musicId": "91ed72ea-ebe8-4bff-9836-885fef3568ac",
"prompt": "",
"title": " (Woodwinds)",
"tags": "",
"imageUrl": "https://cdn.ttapi.io/suno/2025-06-27/5c00e7e8-f03e-48ab-8a11-67df32ed2d32.jpg",
"imageLargeUrl": "https://cdn.ttapi.io/suno/2025-06-27/5c00e7e8-f03e-48ab-8a11-67df32ed2d32.jpg",
"audioUrl": "https://cdn.ttapi.io/suno/2025-06-27/ca371b58-09cc-40b4-939c-0e3a65a8bcb4.mp3",
"videoUrl": "https://cdn1.suno.ai/91ed72ea-ebe8-4bff-9836-885fef3568ac.mp4",
"duration": "8.12",
"createdAt": "2025-06-27T09:19:35.025Z"
},
{
"musicId": "3b1f3c2d-5890-4be7-8f06-eb53ab41cad1",
"prompt": "I love Chinese dumplings",
"title": " (Vocals)",
"tags": "",
"imageUrl": "https://cdn.ttapi.io/suno/2025-06-27/2f9e59b6-6100-4fcb-bcdf-934b688d2f61.jpg",
"imageLargeUrl": "https://cdn.ttapi.io/suno/2025-06-27/2f9e59b6-6100-4fcb-bcdf-934b688d2f61.jpg",
"audioUrl": "https://cdn.ttapi.io/suno/2025-06-27/169356be-52d2-48d8-b47c-1f3763743397.mp3",
"videoUrl": "https://cdn1.suno.ai/3b1f3c2d-5890-4be7-8f06-eb53ab41cad1.mp4",
"duration": "8.12",
"createdAt": "2025-06-27T09:19:35.025Z"
},
{
"musicId": "f8ce8626-ed70-41fa-8bbb-deb973332307",
"prompt": "I love Chinese dumplings",
"title": " (Backing Vocals)",
"tags": "",
"imageUrl": "https://cdn.ttapi.io/suno/2025-06-27/48f13c5b-6bae-4225-a39c-fcf2fea698a0.jpg",
"imageLargeUrl": "https://cdn.ttapi.io/suno/2025-06-27/48f13c5b-6bae-4225-a39c-fcf2fea698a0.jpg",
"audioUrl": "https://cdn.ttapi.io/suno/2025-06-27/f9d12551-fb0d-4f1a-945a-977ad41ca7a3.mp3",
"videoUrl": "https://cdn1.suno.ai/f8ce8626-ed70-41fa-8bbb-deb973332307.mp4",
"duration": "8.12",
"createdAt": "2025-06-27T09:19:35.025Z"
},
{
"musicId": "c8bd3c46-934c-4846-8f1c-16061d7a4d5b",
"prompt": "",
"title": " (Drums)",
"tags": "",
"imageUrl": "https://cdn.ttapi.io/suno/2025-06-27/b0e4905a-4c86-4000-8ff6-1ff62f1ecf5e.jpg",
"imageLargeUrl": "https://cdn.ttapi.io/suno/2025-06-27/b0e4905a-4c86-4000-8ff6-1ff62f1ecf5e.jpg",
"audioUrl": "https://cdn.ttapi.io/suno/2025-06-27/e5998e05-cf20-4abe-aef6-b217d95757c9.mp3",
"videoUrl": "https://cdn1.suno.ai/c8bd3c46-934c-4846-8f1c-16061d7a4d5b.mp4",
"duration": "8.12",
"createdAt": "2025-06-27T09:19:35.025Z"
},
{
"musicId": "c17d810e-1950-4e39-ac1d-e181a04cad0d",
"prompt": "",
"title": " (Bass)",
"tags": "",
"imageUrl": "https://cdn.ttapi.io/suno/2025-06-27/b03a31da-0b94-4adc-9429-ba4df90d7584.jpg",
"imageLargeUrl": "https://cdn.ttapi.io/suno/2025-06-27/b03a31da-0b94-4adc-9429-ba4df90d7584.jpg",
"audioUrl": "https://cdn.ttapi.io/suno/2025-06-27/e00ce75a-c847-4fea-ac6d-7d42db75961a.mp3",
"videoUrl": "https://cdn1.suno.ai/c17d810e-1950-4e39-ac1d-e181a04cad0d.mp4",
"duration": "8.12",
"createdAt": "2025-06-27T09:19:35.025Z"
},
{
"musicId": "3114e5f6-2ce8-4c1d-be4e-d7f0f519d4d5",
"prompt": "",
"title": " (Guitar)",
"tags": "",
"imageUrl": "https://cdn.ttapi.io/suno/2025-06-27/66c75297-1e10-4232-aea4-de614e1ab10a.jpg",
"imageLargeUrl": "https://cdn.ttapi.io/suno/2025-06-27/66c75297-1e10-4232-aea4-de614e1ab10a.jpg",
"audioUrl": "https://cdn.ttapi.io/suno/2025-06-27/9ce92548-7dca-4c53-bc41-1af3f2e8ac1c.mp3",
"videoUrl": "https://cdn1.suno.ai/3114e5f6-2ce8-4c1d-be4e-d7f0f519d4d5.mp4",
"duration": "8.12",
"createdAt": "2025-06-27T09:19:35.025Z"
},
{
"musicId": "1f56ae07-766c-4f74-b592-3138162d1164",
"prompt": "",
"title": " (Keyboard)",
"tags": "",
"imageUrl": "https://cdn.ttapi.io/suno/2025-06-27/2fa1bf06-835e-477c-81ce-25637a96ea6b.jpg",
"imageLargeUrl": "https://cdn.ttapi.io/suno/2025-06-27/2fa1bf06-835e-477c-81ce-25637a96ea6b.jpg",
"audioUrl": "https://cdn.ttapi.io/suno/2025-06-27/185bb343-d58a-4c48-9d88-ac0e838b32fa.mp3",
"videoUrl": "https://cdn1.suno.ai/1f56ae07-766c-4f74-b592-3138162d1164.mp4",
"duration": "8.12",
"createdAt": "2025-06-27T09:19:35.025Z"
},
{
"musicId": "9080cf08-3dce-40d3-aec9-8aa04a0b6ee9",
"prompt": "",
"title": " (Percussion)",
"tags": "",
"imageUrl": "https://cdn.ttapi.io/suno/2025-06-27/fdc0a3d8-fd05-46e2-a2cb-a45bf8bf27bd.jpg",
"imageLargeUrl": "https://cdn.ttapi.io/suno/2025-06-27/fdc0a3d8-fd05-46e2-a2cb-a45bf8bf27bd.jpg",
"audioUrl": "https://cdn.ttapi.io/suno/2025-06-27/63be387d-11ff-4986-91e3-6dba56b0c557.mp3",
"videoUrl": "https://cdn1.suno.ai/9080cf08-3dce-40d3-aec9-8aa04a0b6ee9.mp4",
"duration": "8.12",
"createdAt": "2025-06-27T09:19:35.025Z"
},
{
"musicId": "97a9fdcc-d218-4d29-8dee-c6a8d170c908",
"prompt": "",
"title": " (Strings)",
"tags": "",
"imageUrl": "https://cdn.ttapi.io/suno/2025-06-27/60b096fd-5926-459c-8567-dd529a770a6b.jpg",
"imageLargeUrl": "https://cdn.ttapi.io/suno/2025-06-27/60b096fd-5926-459c-8567-dd529a770a6b.jpg",
"audioUrl": "https://cdn.ttapi.io/suno/2025-06-27/ccb615ac-9074-4514-a649-d46ed598343e.mp3",
"videoUrl": "https://cdn1.suno.ai/97a9fdcc-d218-4d29-8dee-c6a8d170c908.mp4",
"duration": "8.12",
"createdAt": "2025-06-27T09:19:35.025Z"
},
{
"musicId": "4b9cdd53-97cd-4258-b80e-f88b9292f772",
"prompt": "",
"title": " (Synth)",
"tags": "",
"imageUrl": "https://cdn.ttapi.io/suno/2025-06-27/e803a471-6141-4edb-a102-0ff555dcdcb2.jpg",
"imageLargeUrl": "https://cdn.ttapi.io/suno/2025-06-27/e803a471-6141-4edb-a102-0ff555dcdcb2.jpg",
"audioUrl": "https://cdn.ttapi.io/suno/2025-06-27/2bedb413-72e1-4615-954a-b21970d0be54.mp3",
"videoUrl": "https://cdn1.suno.ai/4b9cdd53-97cd-4258-b80e-f88b9292f772.mp4",
"duration": "8.12",
"createdAt": "2025-06-27T09:19:35.025Z"
},
{
"musicId": "db88f0c6-164c-4253-a691-4f440dadf54d",
"prompt": "",
"title": " (FX)",
"tags": "",
"imageUrl": "https://cdn.ttapi.io/suno/2025-06-27/f0738202-d776-402d-ad0c-42ed136dee7d.jpg",
"imageLargeUrl": "https://cdn.ttapi.io/suno/2025-06-27/f0738202-d776-402d-ad0c-42ed136dee7d.jpg",
"audioUrl": "https://cdn.ttapi.io/suno/2025-06-27/e6278017-89bc-4881-8474-0c4d5244e6be.mp3",
"videoUrl": "https://cdn1.suno.ai/db88f0c6-164c-4253-a691-4f440dadf54d.mp4",
"duration": "8.12",
"createdAt": "2025-06-27T09:19:35.025Z"
},
{
"musicId": "c8cf1de0-e074-403f-b231-606cc7441a4e",
"prompt": "",
"title": " (Brass)",
"tags": "",
"imageUrl": "https://cdn.ttapi.io/suno/2025-06-27/b2b73eb8-7d25-4d54-bdc3-7f8826f94c79.jpg",
"imageLargeUrl": "https://cdn.ttapi.io/suno/2025-06-27/b2b73eb8-7d25-4d54-bdc3-7f8826f94c79.jpg",
"audioUrl": "https://cdn.ttapi.io/suno/2025-06-27/6a2e4335-447e-4646-a1ab-50278ef25417.mp3",
"videoUrl": "https://cdn1.suno.ai/c8cf1de0-e074-403f-b231-606cc7441a4e.mp4",
"duration": "8.12",
"createdAt": "2025-06-27T09:19:35.025Z"
},
{
"musicId": "e677522d-7429-4bda-9e6d-ac2a23fd1e99",
"prompt": "",
"title": " (Woodwinds)",
"tags": "",
"imageUrl": "https://cdn.ttapi.io/suno/2025-06-27/b06890d7-e4e8-4c0c-addf-92e9340846e4.jpg",
"imageLargeUrl": "https://cdn.ttapi.io/suno/2025-06-27/b06890d7-e4e8-4c0c-addf-92e9340846e4.jpg",
"audioUrl": "https://cdn.ttapi.io/suno/2025-06-27/e3f35b21-bf59-4f31-8dbe-4ecb3503e347.mp3",
"videoUrl": "https://cdn1.suno.ai/e677522d-7429-4bda-9e6d-ac2a23fd1e99.mp4",
"duration": "8.12",
"createdAt": "2025-06-27T09:19:35.026Z"
}
]
}
}Last updated
Was this helpful?