Skip to main content
POST
/
volc
/
asset
/
ListAssetGroups
查询素材组
curl --request POST \
  --url https://www.anyfast.com.cn/volc/asset/ListAssetGroups \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "model": "volc-asset",
  "Filter": {
    "Name": "my-project",
    "GroupIds": [
      "group-20260320141746-zsf6b"
    ]
  },
  "PageNumber": 1,
  "PageSize": 10
}
'
{
  "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"
    }
  ],
  "PageNumber": 1,
  "PageSize": 10,
  "TotalCount": 2
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
model
string
required

模型名称。默认 volc-asset

Example:

"volc-asset"

Filter
object
required
PageNumber
integer

页码,默认 1

Example:

1

PageSize
integer

每页数量,默认 10

Example:

10

Response

查询成功

Items
object[]
PageNumber
integer
Example:

1

PageSize
integer
Example:

10

TotalCount
integer
Example:

2