dag-runs
Retrieve collected outputs from a DAG-run
Fetches the outputs.json file containing all step outputs collected during the DAG-run execution. Returns the outputs as a JSON object where keys are the output names (converted from UPPER_CASE to camelCase by default, or custom key if specified) and values are the captured output strings.
get/dag-runs/{name}/{dagRunId}/outputs
Path parameters
namestring regex required
Name of the DAG
name of the DAG
dagRunIdstring required
Unique identifier for the DAG-run. The special value 'latest' can be used to reference the most recent DAG-run.
Example:latest
ID of the DAG-run or 'latest' to get the most recent DAG-run
Query parameters
remoteNodestring
name of the remote node
Response
Successfully retrieved outputs. Returns the collected outputs with metadata. If the DAG-run completed but captured no outputs, returns an empty outputs object.
Example response
{
"metadata": {
"dagRunId": "latest"
},
"outputs": {
"totalCount": "42",
"resultFile": "/path/to/result.txt",
"config": "{\"key\": \"value\"}"
}
}