查询素材列表,支持按名称、素材组 ID、素材组类型过滤。查询操作不计费。
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
or
Body Params application/json
{
"model": "volc-asset",
"PageNumber": 1,
"PageSize": 10,
"Filter": {
"Name": "test",
"GroupType": "AIGC",
"GroupIds": [
"group-20260320141746-zsf6b"
]
}
}
Request Code Samples
curl --location --request POST '/volc/asset/ListAssets' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"model": "volc-asset",
"PageNumber": 1,
"PageSize": 10,
"Filter": {
"Name": "test",
"GroupType": "AIGC",
"GroupIds": [
"group-20260320141746-zsf6b"
]
}
}'
Responses
{
"PageNumber": 1,
"PageSize": 1,
"TotalCount": 2,
"Items": [
{
"Id": "asset-20260320142452-2htjn",
"Name": "test",
"URL": "https://ark-media-asset.tos-cn-beijing.volces.com/...",
"AssetType": "Image",
"GroupId": "group-20260320141746-zsf6b",
"Status": "Active",
"ProjectName": "default",
"CreateTime": "2026-03-20T14:24:52Z",
"UpdateTime": "2026-03-20T14:25:01Z"
}
]
}
Modified at 2026-03-23 06:19:36