Http GET request node issue

Describe the problem/error/question

i have an active workflow called ( Data Usage Update ) which is updating Wordpress pages regularly every 1 hour and have an API GET http request nodes and suddenly i got an error message from 1 http request node it said:

Problem in node ‘Get Plan ID Top Up‘

The connection to the server was closed unexpectedly, perhaps it is offline. You can retry the request immediately or wait and retry later.

I checked and made the same http request using another platform and it seems it is working with no problem and it seems there is no problem with the server that I’m making this request with.

I noticed before also when i try to make a test workflow in the editor i got the same message error but when the workflow start auto execution i had no problem with it but now the workflow does not working well in both modes ( testing and auto )

What is the error message (if any)?

Please share your workflow

Share the output returned by the last node

Information on your n8n setup

  • n8n version:
  • Database (default: SQLite):
  • n8n EXECUTIONS_PROCESS setting (default: own, main):
  • Running n8n via (Docker, npm, n8n cloud, desktop app):
  • Operating system:

core

  • n8nVersion: 1.95.3
  • platform: docker (cloud)
  • nodeJsVersion: 20.19.2
  • database: sqlite
  • executionMode: regular
  • concurrency: 5
  • license: community
  • consumerId: 00000000-0000-0000-0000-000000000000

storage

  • success: all
  • error: all
  • progress: false
  • manual: true
  • binaryMode: filesystem

pruning

  • enabled: true
  • maxAge: 168 hours
  • maxCount: 2500 executions

client

  • userAgent: mozilla/5.0 (windows nt 10.0; win64; x64; rv:140.0) gecko/20100101 firefox/140.0
  • isTouchDevice: false

Generated at: 2025-07-17T06:28:31.152Z

hello @Datasky

If you are using n8n cloud, then most probably it works from some IPs and doesn’t work from another. As n8n has a dynamic IP range:
Cloud IP addresses | n8n Docs

Yes im using n8n cloud and i think you are right since the workflow i have its an active and the workflow getting trigger every 1 hour regularly, some times the i have a successful executions and sometimes it fails. So maybe the server im trying make the API http request from is blocking some IPs from n8n ? and if thats true do i have to contact them to unblock the IPs ? or what should i do ?

You can add additional node to get the current IP address, so you will see which one doesn’t work (if it’s the reason)

I dont know if its an IP issue because i just made an http POST request to the same API server from n8n and its working fine, although the http GET request that im having a problem with it now it was working fine not long time ago with the same setup i didn’t change anything but suddenly from yesterday it stopped from working.

And there something i want to mention, is that i tried the same http GET request im Postman and in Make.com and they both working correctly so the issue appear only happening in n8n workflow

How can i add a node to get the current IP address?

I’ve already provided the node. You will need to copy it and past into the workflow

I figured the issue and fixed it, it turned out that im sending to many GET requests to the server and what i did that i just lower the batch number to 1 batch and increased the interval time to 500 ms and now i don’t get any error

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.