上传素材
Seedance 官方-上传素材
上传素材
POST
上传素材
最后修改于 2026年9月21日
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
🚀 新用户特惠!注册后赠送 200 算力值!
curl --request POST \
--url https://open251124.ai.jko.cc/volcano/uploadAsset \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"file_name": "r2v_tea_pic1.jpg",
"file_url": ""
}
'const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({file_name: 'r2v_tea_pic1.jpg', file_url: ''})
};
fetch('https://open251124.ai.jko.cc/volcano/uploadAsset', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://open251124.ai.jko.cc/volcano/uploadAsset"
payload = {
"file_name": "r2v_tea_pic1.jpg",
"file_url": ""
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text){
"status": 100,
"message": "操作成功",
"data": 102
}curl --request POST \
--url https://open251124.ai.jko.cc/volcano/uploadAsset \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"file_name": "r2v_tea_pic1.jpg",
"file_url": ""
}
'const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({file_name: 'r2v_tea_pic1.jpg', file_url: ''})
};
fetch('https://open251124.ai.jko.cc/volcano/uploadAsset', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://open251124.ai.jko.cc/volcano/uploadAsset"
payload = {
"file_name": "r2v_tea_pic1.jpg",
"file_url": ""
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text){
"status": 100,
"message": "操作成功",
"data": 102
}