`POST https://ark.cn-beijing.volcengineapi.com/?Action=GetAssetGroup&Version=2024-01-01`
获取单个Asset Group(素材资产组合)信息。
```mixin-react
return (
 [调用教程](https://www.volcengine.com/docs/82379/2333565)  [接口列表](https://www.volcengine.com/docs/82379/2333601)  [开通模型](https://console.volcengine.com/ark/region:ark+cn-beijing/openManagement?LLM=%7B%7D&OpenTokenDrawer=false)
`}>
);
```
---
## 请求参数
### 请求体
---
**Id** `string` %%require%%
Asset Group(素材资产组合)的 Id。
---
**ProjectName** `string`
需要查询的 Asset Group(素材资产组合)所属的项目名称,默认值为default。
若资源不在默认项目中,需填写正确的项目名称,获取项目名称,请查看 [文档](https://www.volcengine.com/docs/82379/1359411?lang=zh#03ec4a65)。
## 响应参数
---
**Id** `string`
Asset Group(素材资产组合)的 Id。
---
**Name** `string`
Asset Group(素材资产组合)的名称,上限为 64 个字符。
---
**Description** `string`
Asset Group(素材资产组合)的描述,上限为 300 字符。
---
**GroupType** `string`
Asset Group(素材资产组合)的类型。可选值:
* `AIGC`:虚拟人像
* `LivenessFace`:真人素材
---
**ProjectName** `string`
资源所属的项目名称。
---
**CreateTime** `string`
创建时间。
---
**UpdateTime** `string`
更新时间。
---
## 请求示例
```text
POST /?Action=GetAssetGroup&Version=2024-01-01 HTTP/1.1
Host: ark.cn-beijing.volcengineapi.com
Content-Type: application/json
X-Date: 20260328T000000Z
X-Content-Sha256: 287e874e******d653b44d21e
Authorization: HMAC-SHA256 Credential=AKLTYz******/20260328/cn-beijing/ark/request, SignedHeaders=content-type;host;x-content-sha256;x-date, Signature=47a7d934******e41085f
{
"Id": "group-2026**********-*****",
"ProjectName": "default"
}
```
## 响应示例
```json
{
"ResponseMetadata": {
"RequestId": "20260328000000000000000000000000",
"Action": "GetAssetGroup",
"Version": "2024-01-01",
"Service": "ark",
"Region": "cn-beijing"
},
"Result": {
"Id": "group-2026**********-*****",
"Name": "test",
"Description": "test",
"GroupType": "AIGC",
"ProjectName": "default",
"CreateTime": "2026-03-28T00:00:00Z",
"UpdateTime": "2026-03-28T00:00:00Z"
}
}
```