跳转到主要内容
POST
/
volc
/
asset
/
GetAsset
查询素材
curl --request POST \
  --url https://www.anyfast.ai/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"
}

Documentation Index

Fetch the complete documentation index at: https://docs.anyfast.ai/llms.txt

Use this file to discover all available pages before exploring further.

授权

Authorization
string
header
必填

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

请求体

application/json
Id
string
必填

要查询的素材 ID。

示例:

"asset-20260528140922-d9646"

响应

查询成功

Id
string

素材 ID。

示例:

"asset-20260528140922-d9646"

Name
string

素材名称。

示例:

"character-reference"

URL
string

素材文件 URL。

示例:

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

AssetType
enum<string>

素材类型。

可用选项:
Image,
Video,
Audio
示例:

"Video"

GroupId
string

所属素材组 ID。

示例:

"group-20260528140601-tp9hw"

Status
enum<string>

素材状态。

可用选项:
Active,
Inactive
示例:

"Active"

ProjectName
string

项目名称。

示例:

"default"

CreateTime
string

创建时间。

示例:

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

UpdateTime
string

更新时间。

示例:

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