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": "Plaude 06 - Execution Status Polling",
"nodes": [
{
"parameters": {
"httpMethod": "POST",
"path": "plaude-execution-status",
"options": {}
},
"type": "n8n-nodes-base.webhook",
"typeVersion": 2.1,
"position": [
0,
0
],
"id": "webhook",
"name": "Webhook"
},
{
"parameters": {
"jsCode": "const headers = $input.first().json.headers || {};\nif (headers['x-plaude-api-key'] !== 'bac6629800415b8fd862660f709b7aae7e4fcfd1700418f2acfae4edeb61832a') throw new Error('Unauthorized');\nconst body = $input.first().json.body || $input.first().json;\nif (!body.execution_id) throw new Error('execution_id required');\nreturn [{ json: body }];"
},
"type": "n8n-nodes-base.code",
"typeVersion": 2,
"position": [
220,
0
],
"id": "validate",
"name": "Validate"
},
{
"parameters": {
"operation": "executeQuery",
"query": "SELECT * FROM agent_executions WHERE id = '{{ $json.execution_id }}' LIMIT 1",
"options": {}
},
"type": "n8n-nodes-base.postgres",
"typeVersion": 2.6,
"position": [
440,
0
],
"id": "fetch",
"name": "Fetch Execution",
"credentials": {
"postgres": {
"name": "<your credential>"
}
}
},
{
"parameters": {
"respondWith": "json",
"responseBody": "={{ JSON.stringify($json) }}"
},
"type": "n8n-nodes-base.respondToWebhook",
"typeVersion": 1.1,
"position": [
660,
0
],
"id": "respond",
"name": "Respond"
}
],
"connections": {
"Webhook": {
"main": [
[
{
"node": "Validate",
"type": "main",
"index": 0
}
]
]
},
"Validate": {
"main": [
[
{
"node": "Fetch Execution",
"type": "main",
"index": 0
}
]
]
},
"Fetch Execution": {
"main": [
[
{
"node": "Respond",
"type": "main",
"index": 0
}
]
]
}
},
"settings": {
"executionOrder": "v1"
},
"active": true
}
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
Plaude 06 - Execution Status Polling. Uses postgres. Webhook trigger; 4 nodes.
Source: https://github.com/Redpine-Internal/PlaudGoldMiner/blob/249f60364638204fbcafa3bc89fc8cd4e5e2b785/n8n-workflows/06-execution-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.
CMM. Uses httpRequest, postgres, redis. Webhook trigger; 90 nodes.
Scraping. Uses httpRequest, postgres, @apify/n8n-nodes-apify, respondToWebhook. Webhook trigger; 61 nodes.
Workflow B — AI Listing Engine. Uses httpRequest, postgres, errorTrigger. Webhook trigger; 47 nodes.
LogSentinel Workflow. Uses postgres, emailSend, httpRequest. Webhook trigger; 44 nodes.