API工厂文档
API 参考Seedance

素材列表

查询当前 API Key 账号下已上传的素材列表。不同账号的素材相互隔离,每个 Key 只能看到自己上传的素材。

POST
/api/v1/open/ListAssets

Authorization

BearerAuth
AuthorizationBearer <token>

Authorization: Bearer {your_api_key}

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://api.3hei.com/api/v1/open/ListAssets" \  -H "Content-Type: application/json" \  -d '{    "Model": "huoshan-seedance-2-0",    "Filter": {      "GroupType": "AIGC"    },    "PageNumber": 1,    "PageSize": 20  }'
{
  "ResponseMetadata": {
    "RequestId": "20260615203300C9CB",
    "Action": "ListAssets",
    "Error": {
      "Code": "InvalidParameter",
      "Message": "string"
    }
  },
  "Result": {
    "Items": [
      {
        "Id": "asset-20260615202842-k2l5m",
        "Name": "产品宣传视频",
        "Status": "Active",
        "AssetType": "Video",
        "URL": "https://cdn.example.com/asset/xxx.mp4",
        "CreateTime": "2026-06-15T12:28:42Z",
        "UpdateTime": "2026-06-15T12:29:10Z"
      }
    ],
    "TotalCount": 1,
    "PageNumber": 1,
    "PageSize": 20
  }
}