list_flow_runs
Retrieve flow runs from the Prefect API with customizable filters. Use limit, offset, and flow_id parameters to manage and query workflow execution data effectively.
Instructions
Get a list of flow runs from the Prefect API.
Args:
limit: Maximum number of flow runs to return (default 20).
offset: Number of flow runs to skip (default 0).
flow_id: Optional ID of the flow to filter runs by.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
flow_id | No | ||
limit | No | ||
offset | No |
Input Schema (JSON Schema)
{
"properties": {
"flow_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Flow Id"
},
"limit": {
"default": 20,
"title": "Limit",
"type": "integer"
},
"offset": {
"default": 0,
"title": "Offset",
"type": "integer"
}
},
"title": "list_flow_runsArguments",
"type": "object"
}