Check a page is up and actually rendering
check_pageVerify a deployed page works by fetching its URL and reporting status, redirects, response time, and actual visible text rendered—catching misleading 200 responses that show users nothing.
Instructions
Fetch a URL and report whether it is genuinely working: status, redirect chain, response time, and — the part people miss — how much visible text it actually renders. A page can return 200, weigh half a megabyte and still show a human nothing. Also reports title, meta description, viewport, canonical, og:image and a stray noindex. Use this right after a deploy.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | The page to check, including http:// or https://. localhost works. | |
| timeoutMs | No | Give up after this many milliseconds. Default 15000. |