> ## Documentation Index
> Fetch the complete documentation index at: https://docs.aisonar.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Material Asset Group

> Retrieves one Seedance material group by AI Sonar group ID.

Retrieve one material group. The `library_type` tells you whether the group is a virtual-avatar group or a real-person group.

Use this endpoint before uploading if you need to confirm that the group still exists and has `status: "ACTIVE"`.

## Example Request

```bash theme={null}
curl https://api.aisonar.dev/v1/videos/assets/groups/group-20260720123456-vrt01 \
  -H "Authorization: Bearer $API_KEY"
```

## Example Response

```json theme={null}
{
  "id": "group-20260720123456-vrt01",
  "object": "seedance.material_asset_group",
  "library_type": "aigc_avatar",
  "group_name": "Product references",
  "description": "Reusable product shots",
  "status": "ACTIVE",
  "metadata": null,
  "created_at": 1782998400000
}
```
