network_website_status_checker
Checks a website's HTTP status, accessibility, and response time by making a live GET request. Reveals the redirect chain and response headers for debugging.
Instructions
Website Status & Uptime Checker. Checks whether a website is up by making a live outbound HTTP GET request to the given URL and reporting the final HTTP status code, accessibility (up/down) flag, response time in milliseconds, the full redirect chain, and the final response headers. Use this for HTTP-level reachability, status codes, and latency; use network_ping for ICMP host reachability, network_ssl_certificate to inspect the TLS certificate, and network_dns_lookup for DNS records. Makes a real network request (the host is pinned to a resolved public IP for SSRF safety; private, loopback, and reserved addresses and redirect targets are rejected, and TLS verification stays on), so results reflect the site's current state. CAPTCHA-gated and rate-limited (anonymous 30/min, 180/hour, 500/day). Key output includes status_code, response_time_ms, and accessible.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | Absolute URL to check, including scheme, e.g. https://example.com. Must be a valid public URL; redirects to private or reserved hosts are blocked. | |
| worker_id | No | Optional registered healthy worker peer ID. Omit to use the default master-server behavior. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| success | No | True when the check completed. | |
| error | No | Error message present only when success is false. | |
| data | No | Status result fields. |