Files
n8n-docs/docs/data/expression-reference/httpresponse.md
Kartik Balasubramanian 96e6ba167d Revamp the data section of n8n docs (#4077)
Co-authored-by: cubic-dev-ai[bot] <191113872+cubic-dev-ai[bot]@users.noreply.github.com>
2026-02-25 14:30:33 +00:00

1.0 KiB
Raw Blame History

HTTPResponse

$response.body

Description: The body of the response object from the last HTTP call. Only available in the HTTP Request node

Syntax: $response.$response.body

Returns: Object

Source: Custom n8n functionality

$response.headers

Description: The headers returned by the last HTTP call. Only available in the HTTP Request node.

Syntax: $response.$response.headers

Returns: Object

Source: Custom n8n functionality

$response.statusCode

Description: The HTTP status code returned by the last HTTP call. Only available in the HTTP Request node.

Syntax: $response.$response.statusCode

Returns: Number

Source: Custom n8n functionality

$response.statusMessage

Description: An optional message regarding the request status. Only available in the HTTP Request node.

Syntax: $response.$response.statusMessage

Returns: String

Source: Custom n8n functionality