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-42 scrape_url",
"nodes": [
{
"id": "trigger",
"name": "WF Input",
"type": "n8n-nodes-base.executeWorkflowTrigger",
"typeVersion": 1.1,
"position": [
0,
0
],
"parameters": {
"workflowInputs": {
"values": [
{
"name": "url",
"type": "string"
},
{
"name": "trigger",
"type": "string"
}
]
}
}
},
{
"id": "build",
"name": "Build urls",
"type": "n8n-nodes-base.code",
"typeVersion": 2,
"position": [
200,
0
],
"parameters": {
"mode": "runOnceForAllItems",
"jsCode": "const j = $input.first().json;\nconst url = String(j.url || '').trim();\nif (!url) return [{ json: { urls: [], trigger: j.trigger || 'agent', error: 'no url provided' } }];\nreturn [{ json: { urls: [{ url, source: 'manual' }], trigger: j.trigger || 'agent' } }];"
}
},
{
"id": "run20",
"name": "Run WF-20",
"type": "n8n-nodes-base.executeWorkflow",
"typeVersion": 1.2,
"position": [
400,
0
],
"parameters": {
"workflowId": {
"__rl": true,
"value": "NXWu2wqU6ifrFIpd",
"mode": "id"
},
"workflowInputs": {
"mappingMode": "defineBelow",
"value": {
"urls": "={{ $json.urls }}",
"trigger": "={{ $json.trigger }}",
"scope": "url"
},
"matchingColumns": [],
"schema": [
{
"id": "urls",
"displayName": "urls",
"required": false,
"defaultMatch": false,
"display": true,
"canBeUsedToMatch": true,
"type": "array"
},
{
"id": "trigger",
"displayName": "trigger",
"required": false,
"defaultMatch": false,
"display": true,
"canBeUsedToMatch": true,
"type": "string"
},
{
"id": "scope",
"displayName": "scope",
"required": false,
"defaultMatch": false,
"display": true,
"canBeUsedToMatch": true,
"type": "string"
}
]
},
"options": {
"waitForSubWorkflow": true
}
}
}
],
"connections": {
"WF Input": {
"main": [
[
{
"node": "Build urls",
"type": "main",
"index": 0
}
]
]
},
"Build urls": {
"main": [
[
{
"node": "Run WF-20",
"type": "main",
"index": 0
}
]
]
}
},
"settings": {
"executionOrder": "v1",
"errorWorkflow": "PNJMA4NbQGmp1xKv"
}
}
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
WF-42 scrape_url. Uses executeWorkflowTrigger. Event-driven trigger; 3 nodes.
Source: https://github.com/killerwaz/research-overseer/blob/master/workflows/wf42-scrape-url.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. Uses executeWorkflowTrigger, redis, n8n-nodes-evolution-api, dataTable. Event-driven trigger; 73 nodes.
Agendamiento. Uses n8n-nodes-evolution-api, redis, dataTable, executeWorkflowTrigger. Event-driven trigger; 60 nodes.
Prevent concurrent workflow runs using Redis. Uses executeWorkflowTrigger, manualTrigger, stickyNote, executeWorkflow. Event-driven trigger; 43 nodes.
This workflow sets a small "lock" value in Redis so that only one copy of a long job can run at the same time. If another trigger fires while the job is still busy, the workflow sees the lock, stops e
Cancelacion. Uses executeWorkflowTrigger, redis, n8n-nodes-evolution-api, dataTable. Event-driven trigger; 36 nodes.