Get Asset Details
get_asset_detailsRetrieve metadata for Dagster assets, including lineage, partitions, and dependencies. Use it to understand what an asset depends on, what depends on it, or whether it is partitioned.
Instructions
Get detailed metadata for one or more assets: description, lineage, and partitions.
asset_keys: list of asset name strings (e.g. ['my_extract', 'my_load'])
Returns per asset: assetKey, description, groupName, op name, isObservable, isPartitioned, partitionDefinition, dependencyKeys (upstream assets), dependedByKeys (downstream assets), and the latest materialization (runId + timestamp).
When to use: to understand an asset's lineage (what it depends on and what depends on it), check if it's partitioned, or get its description. Use search_assets first if you don't know the exact key.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| env | No | ||
| asset_keys | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |