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

# List Material Assets

> Lists Seedance material assets owned by the current organization.

List material assets owned by the authenticated organization. Filter by `library_type`, `group_id`, or `status` when you need to find assets for a specific generation workflow.

Use only assets whose `status` is `ACTIVE`. Returned inspection URLs can be temporary; some may expire after about 12 hours.

## Example Request

```bash theme={null}
curl "https://api.tokenlab.sh/v1/videos/assets?library_type=aigc_avatar&group_id=seedance_group_virtual_123&page_size=20" \
  -H "Authorization: Bearer $TOKENLAB_API_KEY"
```

## Example Response

```json theme={null}
{
  "assets": [
    {
      "id": "seedance_asset_123",
      "object": "seedance.material_asset",
      "group_id": "seedance_group_virtual_123",
      "library_type": "aigc_avatar",
      "asset_name": "Front view",
      "asset_type": "Image",
      "status": "ACTIVE",
      "ready": true,
      "created_at": 1782998400000
    }
  ],
  "next_page_token": null
}
```
