This workflow follows the Execute Workflow Trigger → Postgres recipe pattern — see all workflows that pair these two integrations.
The workflow JSON
Copy or download the full n8n JSON below. Paste it into a new n8n workflow, add your credentials, activate. Full import guide →
{
"name": "WF-32 run_status",
"nodes": [
{
"parameters": {
"workflowInputs": {
"values": [
{
"name": "limit",
"type": "string"
}
]
}
},
"id": "trigger",
"name": "WF Input",
"type": "n8n-nodes-base.executeWorkflowTrigger",
"typeVersion": 1.1,
"position": [
0,
0
]
},
{
"parameters": {
"operation": "executeQuery",
"query": "select id, trigger, scope, started_at, finished_at, status, urls_found, urls_new, urls_scraped, items_created, error from runs order by started_at desc limit coalesce(nullif($1,'')::int, 5)",
"options": {
"queryReplacement": "={{ $json.limit || '' }}"
}
},
"id": "select",
"name": "Select runs",
"type": "n8n-nodes-base.postgres",
"typeVersion": 2.4,
"position": [
220,
0
],
"credentials": {
"postgres": {
"name": "<your credential>"
}
},
"executeOnce": true,
"alwaysOutputData": true
},
{
"parameters": {
"mode": "runOnceForAllItems",
"jsCode": "const rows = $input.all().map(i => i.json).filter(j => j && j.id);\nif (!rows.length) return [{ json: { count: 0, runs: [], note: 'no runs recorded yet' } }];\nreturn [{ json: { count: rows.length, runs: rows } }];"
},
"id": "shape",
"name": "Shape result",
"type": "n8n-nodes-base.code",
"typeVersion": 2,
"position": [
440,
0
]
}
],
"connections": {
"WF Input": {
"main": [
[
{
"node": "Select runs",
"type": "main",
"index": 0
}
]
]
},
"Select runs": {
"main": [
[
{
"node": "Shape result",
"type": "main",
"index": 0
}
]
]
}
},
"settings": {
"executionOrder": "v1",
"errorWorkflow": "PNJMA4NbQGmp1xKv"
}
}
Credentials you'll need
Each integration node will prompt for credentials when you import. We strip credential IDs before publishing — you'll add your own.
postgres
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
WF-32 run_status. Uses executeWorkflowTrigger, postgres. Event-driven trigger; 3 nodes.
Source: https://github.com/killerwaz/research-overseer/blob/master/workflows/wf32-run-status.json — original creator credit. Request a take-down →
Related workflows
Workflows that share integrations, category, or trigger type with this one. All free to copy and import.
Reagendamiento_v2. Uses executeWorkflowTrigger, redis, httpRequest, n8n-nodes-evolution-api. Event-driven trigger; 89 nodes.
Agendamiento_v2. Uses n8n-nodes-evolution-api, redis, httpRequest, executeWorkflowTrigger. Event-driven trigger; 59 nodes.
Cancelacion_v2. Uses executeWorkflowTrigger, redis, httpRequest, n8n-nodes-evolution-api. Event-driven trigger; 46 nodes.
Save_Extraction. Uses executeWorkflowTrigger, postgres, httpRequest. Event-driven trigger; 22 nodes.
Youtube Searcher. Uses splitInBatches, httpRequest, manualTrigger, executeWorkflowTrigger. Event-driven trigger; 21 nodes.