Skip to main content
POST
/
volc
/
asset
/
GetAsset
查询素材
curl --request POST \
  --url https://www.anyfast.com.cn/volc/asset/GetAsset \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "Id": "asset-20260528140922-d9646"
}
'
{
  "Id": "asset-20260528140922-d9646",
  "Name": "character-reference",
  "URL": "https://ark-media-asset.tos-cn-beijing.volces.com/...",
  "AssetType": "Video",
  "GroupId": "group-20260528140601-tp9hw",
  "Status": "Active",
  "ProjectName": "default",
  "CreateTime": "2026-05-28T06:09:22Z",
  "UpdateTime": "2026-05-28T06:09:31Z"
}

Authorizations

Authorization
string
header
required

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

Body

application/json
Id
string
required

要查询的素材 ID。

Example:

"asset-20260528140922-d9646"

Response

查询成功

Id
string

素材 ID。

Example:

"asset-20260528140922-d9646"

Name
string

素材名称。

Example:

"character-reference"

URL
string

素材文件 URL。

Example:

"https://ark-media-asset.tos-cn-beijing.volces.com/..."

AssetType
enum<string>

素材类型。

Available options:
Image,
Video,
Audio
Example:

"Video"

GroupId
string

所属素材组 ID。

Example:

"group-20260528140601-tp9hw"

Status
enum<string>

素材状态。

Available options:
Active,
Inactive
Example:

"Active"

ProjectName
string

项目名称。

Example:

"default"

CreateTime
string

创建时间。

Example:

"2026-05-28T06:09:22Z"

UpdateTime
string

更新时间。

Example:

"2026-05-28T06:09:31Z"