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

查询素材组

POST
/volc/asset/ListAssetGroups
查询素材组列表,支持按名称模糊匹配和按 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": "my-project",
        "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/ListAssetGroups' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "model": "volc-asset",
    "PageNumber": 1,
    "PageSize": 10,
    "Filter": {
        "Name": "my-project",
        "GroupIds": [
            "group-20260320141746-zsf6b"
        ]
    }
}'

Responses

🟢200
application/json
查询成功
Body

Example
{
    "PageNumber": 1,
    "PageSize": 10,
    "TotalCount": 2,
    "Items": [
        {
            "Id": "group-20260320141746-zsf6b",
            "Name": "test-token",
            "Title": "[u-1]-[t-88] test-token",
            "GroupType": "AIGC",
            "ProjectName": "default",
            "CreateTime": "2026-03-20T14:17:46Z",
            "UpdateTime": "2026-03-20T14:17:46Z"
        }
    ]
}
🟠401
Modified at 2026-03-23 05:04:17
Previous
创建素材
Next
查询素材
Built with