> ## 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

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

Retrieve one material asset and inspect its processing status. The asset can be used for video generation only when `ready` is `true` and `status` is `ACTIVE`.

If video generation returns `Seedance material asset not found or not accessible`, verify that you passed this material asset `id`, not the material `group_id`.

## Example Request

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

## Example Response

```json theme={null}
{
  "id": "asset-20260720123456-qn7wr",
  "object": "seedance.material_asset",
  "group_id": "group-20260720123456-vrt01",
  "library_type": "aigc_avatar",
  "asset_name": "Front view",
  "asset_type": "Image",
  "status": "ACTIVE",
  "ready": true,
  "error_message": null,
  "metadata": null,
  "created_at": 1782998400000
}
```
