Http request failure

My HTTP Request node keeps throwing ‘Node execution failed,’ but the exact same request works perfectly in Postman. Why

Describe the problem/error/question

What is the error message (if any)?

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

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:
1 Like

it works in Postman but fails in n8n, the issue is usually subtle configuration differences.

Check the following:

  • Make sure all required headers (especially Authorization and Content-Type) are explicitly defined.
  • Confirm the request body format matches the API expectations (JSON vs form-data vs raw).
  • Verify that credentials are correctly configured inside n8n.

If the API requires specific TLS or certificate handling, ensure your n8n environment allows it.

Sometimes Postman auto-adds headers that n8n does not, so compare both requests carefully.

2 Likes

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