1. 真人素材上传
vipcode
  • 生成密钥 快速开始指南
  • Claude Code 安装配置教程
  • 密钥使用说明
  • Gemini CLI 安装配置教程
  • OpenClaw(Clawdbot/Moltbot) 安装 教程
  • 真人素材上传
    • 创建素材组
      POST
    • 创建素材
      POST
    • 查询素材组
      POST
    • 查询素材
      POST
  • Schemas
    • Error
  1. 真人素材上传

查询素材

POST
/volc/asset/ListAssets
查询素材列表,支持按名称、素材组 ID、素材组类型过滤。查询操作不计费。

Request

Authorization
Bearer Token
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
or
Body Params application/json

Example
{
    "model": "volc-asset",
    "PageNumber": 1,
    "PageSize": 10,
    "Filter": {
        "Name": "test",
        "GroupType": "AIGC",
        "GroupIds": [
            "group-20260320141746-zsf6b"
        ]
    }
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
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

🟢200
application/json
查询成功
Body

Example
{
    "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"
        }
    ]
}
🟠401
Modified at 2026-03-23 06:19:36
Previous
查询素材组
Next
Error
Built with