素材管理列表
Seedance 官方-素材列表
素材管理列表
POST
素材管理列表
授权
在 Authorization 请求头中传入带 Bearer 头的 API 密钥,例如:Bearer xxxxxx 如何获取 API 密钥?
请求体
application/json
最后修改于 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/getUserAssetList \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"page": 1,
"size": 10
}
'const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({page: 1, size: 10})
};
fetch('https://open251124.ai.jko.cc/volcano/getUserAssetList', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://open251124.ai.jko.cc/volcano/getUserAssetList"
payload = {
"page": 1,
"size": 10
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text){
"status": 100,
"message": "操作成功",
"data": {
"count": 1,
"list": [
{
"id": 1,
"user_id": 10,
"website_id": 10,
"file_name": "sample-image.jpg",
"file_url": "https://example.com/assets/sample-image.jpg",
"assetType": "jpg",
"file_id": "asset-20260826-example",
"status": 1,
"message": null,
"error_code": null
}
]
}
}curl --request POST \
--url https://open251124.ai.jko.cc/volcano/getUserAssetList \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"page": 1,
"size": 10
}
'const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({page: 1, size: 10})
};
fetch('https://open251124.ai.jko.cc/volcano/getUserAssetList', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://open251124.ai.jko.cc/volcano/getUserAssetList"
payload = {
"page": 1,
"size": 10
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text){
"status": 100,
"message": "操作成功",
"data": {
"count": 1,
"list": [
{
"id": 1,
"user_id": 10,
"website_id": 10,
"file_name": "sample-image.jpg",
"file_url": "https://example.com/assets/sample-image.jpg",
"assetType": "jpg",
"file_id": "asset-20260826-example",
"status": 1,
"message": null,
"error_code": null
}
]
}
}在 Authorization 请求头中传入带 Bearer 头的 API 密钥,例如:Bearer xxxxxx 如何获取 API 密钥?
