Describe the problem/error/question
I have an AI Agent, that is connected with a subworkflow. The subworkflow is basically there to read a page via firecrawl and give the markdown back. When I take a look at the log, the subworkflow correctly gives back the output. But no matter what I do, the Agent always states, in the log that it cannot open the webpage as the return is empty. I tried several different formattings for the last node in the subworkflow - from json to now a simple “repsonse” field. All the time it’s the same. Any ideas what I am doing wrong?
I really appreciate any help, as I spend ours googling and interacting with chatgpt and could not find a solution.
What is the error message (if any)?
there are no error messages
Please share your workflow
{
“nodes”: [
{
“parameters”: {
“operation”: “scrape”,
“url”: “={{ $json.url }}”,
“scrapeOptions”: {
“options”: {
“formats”: {
“format”: [
{}
]
},
“onlyMainContent”: false,
“headers”: {}
}
},
“requestOptions”: {}
},
“type”: “@mendable/n8n-nodes-firecrawl.firecrawl”,
“typeVersion”: 1,
“position”: [
3824,
1024
],
“id”: “e32a33f2-d45e-4ec7-9f64-46920f10d713”,
“name”: “Scrape a url and get its content”,
“credentials”: {
“firecrawlApi”: {
“id”: “Yr36VsMFsF2PSBlW”,
“name”: “Firecrawl account”
}
}
},
{
“parameters”: {
“workflowInputs”: {
“values”: [
{
“name”: “url”
}
]
}
},
“id”: “d0b2aba6-bc89-4870-a444-000b7c76b350”,
“typeVersion”: 1.1,
“name”: “Start”,
“type”: “n8n-nodes-base.executeWorkflowTrigger”,
“position”: [
3616,
1024
]
},
{
“parameters”: {
“jsCode”: “const items = $input.all();\nconst jsonData = JSON.stringify(items.map((item) => item.json));\nreturn [{ json: { response: jsonData } }];\n”
},
“type”: “n8n-nodes-base.code”,
“typeVersion”: 2,
“position”: [
4032,
1024
],
“id”: “ccadd13d-85b4-4d65-88c7-9128ae9215ba”,
“name”: “Code in JavaScript”
}
],
“connections”: {
“Scrape a url and get its content”: {
“main”: [
[
{
“node”: “Code in JavaScript”,
“type”: “main”,
“index”: 0
}
]
]
},
“Start”: {
“main”: [
[
{
“node”: “Scrape a url and get its content”,
“type”: “main”,
“index”: 0
}
]
]
}
},
“pinData”: {},
“meta”: {
“instanceId”: “62947b45ec9e9a4b821cfdfd63fab4d2fcf72aad424e67e589a43e62136dbaac”
}
}
Share the output returned by the last node
I attempted to load the page Immobilien in Brandenburg im Überblick - IMMOBRA GmbH. However, the content returned blank, meaning that I am unable to follow the actual HTML structure and thus the detailed links to the two objects recognised in the crawler excerpt.
Information on your n8n setup
- n8n version: Running version [email protected]
- Database (default: SQLite): none
- n8n EXECUTIONS_PROCESS setting (default: own, main):
- Running n8n via (Docker, npm, n8n cloud, desktop app): n8n cloud
- Operating system:




