Get Recent Materializations
get_recent_materializationsRetrieve recent materializations for a Dagster asset, including run IDs, timestamps, and metadata, to check last run time or inspect recent run details.
Instructions
Get the most recent materializations for an asset, with metadata.
Returns a list of materializations, each with: runId, timestamp, assetKey, and metadataEntries (labels, numeric values, text).
asset_key: the asset name as a string (e.g. 'my_daily_report')
limit: max materializations to return (default 5)
When to use: to check when an asset was last materialized, track materialization frequency, or inspect metadata from recent runs. For a broader health view (including staleness and freshness), use get_asset_health instead.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| env | No | ||
| limit | No | ||
| asset_key | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |