n8n-nodes-http-status-checker
v1.0.1
Published
n8n node that checks HTTP response status and headers for any URL
Maintainers
Readme
n8n-nodes-http-status-checker
An n8n community node that checks HTTP response status and headers for any URL.
Features
- HEAD or GET request method selection
- Returns status code, response time, headers, redirect chain, content type, and server info
- Configurable timeout, redirect following, and custom user agent
- Works with any URL -- no credentials required
Installation
In your n8n instance:
- Go to Settings > Community Nodes
- Click Install
- Enter
n8n-nodes-http-status-checker - Click Install
Usage
Add the HTTP Status Checker node to your workflow and configure:
| Parameter | Description | Default | |------------------|----------------------------------------------|-----------| | URL | The URL to check | -- | | Method | HEAD (fast, headers only) or GET (full) | HEAD |
Options
| Option | Description | Default | |------------------|----------------------------------------------|-----------| | Timeout (ms) | Max time to wait for response | 10000 | | Follow Redirects | Automatically follow HTTP redirects | true | | User Agent | Custom user agent string | (default) |
Output
{
"url": "https://example.com",
"statusCode": 200,
"statusMessage": "OK",
"redirected": false,
"finalUrl": "https://example.com",
"responseTimeMs": 142,
"headers": { "content-type": "text/html", "server": "nginx", ... },
"contentType": "text/html",
"server": "nginx",
"success": true
}License
MIT
