n8n - 💡(How to fix) Fix HTTP Request node in some cases fails to display details for the 400 Bad Request response

Official PRs (…)
ON THIS PAGE

Recommended Tools

×6

Utilities matched from this issue’s tags and category — try them while you read without losing context.

GitHub issue graph ai analysis

Paste a GitHub issue URL. We fetch that issue, discover linked issues from bodies/comments/timeline, collect linked pull requests, and produce a structured English report.

The report is written in English Markdown for sharing and archival.

Helpful · Quick feedback

Loading…

Error Message

When the HTTP Request node is configured to continue on error, and a 400 Bad Request status is returned from a server, its output panel only shows the generic "error": { but no Error details with From HTTP Request section that would be shown otherwise. The description field of the generic message above might display the returned json as a string - truncated. Or not at all if the returned json contains an "error" string which then takes its place as in the example above. "error": "Bad Request" 2. Create a HTTP Request node and choose Continue for its On Error dropbox.

Code Example

[
  {
    "error": {
      "message": "Bad request - please check your parameters",
      "timestamp": 1778581582757,
      "name": "NodeApiError",
      "description": "Bad Request",
      "context": {}
    }
  }
]

---

{
  "error": "Bad Request"
}
RAW_BUFFERClick to expand / collapse

Bug Description

When the HTTP Request node is configured to continue on error, and a 400 Bad Request status is returned from a server, its output panel only shows the generic

[
  {
    "error": {
      "message": "Bad request - please check your parameters",
      "timestamp": 1778581582757,
      "name": "NodeApiError",
      "description": "Bad Request",
      "context": {}
    }
  }
]

but no Error details with From HTTP Request section that would be shown otherwise. This doesn't just make the debugging harder by hiding the reason of the response, but in fact obscures that there were are any useful data at all provided with it.

The description field of the generic message above might display the returned json as a string - truncated. Or not at all if the returned json contains an "error" string which then takes its place as in the example above.

To Reproduce

  1. Configure a Webhook-Respond pair returning code 400 and
{
  "error": "Bad Request"
}

as the response body and run it. 2. Create a HTTP Request node and choose Continue for its On Error dropbox. 3. Run HTTP request

Expected behavior

The full response data is accessible for inspection in some way at all times.

Debug Info

Operating System

Windows 22H2

n8n Version

2.18.5

Node.js Version

24.14.1

Database

SQLite (default)

Execution mode

main (default)

Hosting

self hosted

Vote matrix · Quick signals

Works
Did the solution work? Tap to confirm.
Easy Fix
Was it a quick fix?
Time Saver
Did it save you time?
Blocking
Was it severely blocking?
Common Issue
Are others likely hitting this too?
Flaky / Intermittent
Is it intermittent?
Verified / Reproducible
Can you reproduce it reliably?
Loading…

FAQ

Expected behavior

The full response data is accessible for inspection in some way at all times.

Still need to ship something?

×6

Another batch ranked right after the header list — different links, same matching logic.

Back to top recommendations

TRENDING