Describe the problem/error/question
I encountered a rate-limiting issue while working with n8n. The first HTTP module request works fine, but when I attempt a second request to fetch the list of categories, it fails with a “too many requests” error. Interestingly, the same workflow works perfectly in Make.com.
Here’s the error message I received:
What is the error message (if any)?
{
"errorMessage": "The service is receiving too many requests from you [item 51]",
"errorDescription": "Try spacing your requests out using the batching settings under 'Options'",
"errorDetails": {
"rawErrorMessage": [
"Try spacing your requests out using the batching settings under 'Options'"
],
"httpCode": "429"
},
"n8nDetails": {
"nodeName": "HTTP Request1",
"nodeType": "n8n-nodes-base.httpRequest",
"nodeVersion": 4.2,
"itemIndex": 51,
"time": "2/28/2025, 1:28:25 PM",
"n8nVersion": "1.79.2 (Cloud)",
"binaryDataMode": "filesystem",
"stackTrace": [
"NodeApiError: The service is receiving too many requests from you",
" at ExecuteContext.execute (/usr/local/lib/node_modules/n8n/node_modules/n8n-nodes-base/dist/nodes/HttpRequest/V3/HttpRequestV3.node.js:525:33)",
" at processTicksAndRejections (node:internal/process/task_queues:95:5)",
" at WorkflowExecute.runNode (/usr/local/lib/node_modules/n8n/node_modules/n8n-core/dist/execution-engine/workflow-execute.js:627:19)",
" at /usr/local/lib/node_modules/n8n/node_modules/n8n-core/dist/execution-engine/workflow-execute.js:878:51",
" at /usr/local/lib/node_modules/n8n/node_modules/n8n-core/dist/execution-engine/workflow-execute.js:1211:20"
]
}
}
Please share your workflow
(Select the nodes on your canvas and use the keyboard shortcuts CMD+C/CTRL+C and CMD+V/CTRL+V to copy and paste the workflow.)
Share the output returned by the last node
Is there a way to get all inputs from the previous node only? ithink the {{$input.all()}} gets the output of all previous nodes.
Information on your n8n setup
- n8n version:
- Database (default: SQLite):
- n8n EXECUTIONS_PROCESS setting (default: own, main): own
- Running n8n via (Docker, npm, n8n cloud, desktop app): website - n8n cloud
- Operating system: windows






