Problemas with https request

Hello,
My HTTP Request nodes are reporting ‘Node executed successfully’ but the requests are not reaching any external destination.
I have confirmed this by testing with a public endpoint on Webhook.site (https://webhook.site/85d08c37-b719-4f33-aebb-8e3f584ffaa4), and the request never arrives. This proves the issue is not with my own server.
This behavior suggests an outbound network block or a silent firewall issue on the n8n Cloud platform that is affecting my account.
Could you please check the network egress rules for my instance? My workflow ID ishttps://sdise.app.n8n.cloud/workflow/iVCeq5YOeWScOa6B/0108fa (Lo encuentras en la URL del navegador al editar tu workflow).
Thank you.

Describe the problem/error/question

What is the error message (if any)?

Please share your workflow

Share the output returned by the last node

no output

Information on your n8n setup

  • n8n version: n8n cloud

Hi @Ricardo_Castro_Llore,

I tried setting up a similar HTTP Request node and I’m pretty sure mine worked:

Note the url I’m using is the same you provided: https://webhook.site/85d08c37-b719-4f33-aebb-8e3f584ffaa4

When I Execute step, the output I get is:

[
{
“data”: “This URL has no default content configured. <a href="``https://webhook.site/#!/edit/85d08c37-b719-4f33-aebb-8e3f584ffaa4\”``>Change response in Webhook.site."
}
]

Could you try a different URL such as https://httpbin.org/anything and do a POST Method, with a tiny JSON body content type, Specify Body: Using JSON and add:

{ "test": "hello from n8n", "timestamp": "{{$now}}" }

Then see if that works for you when you Execute?