verify_url
Verify a URL's DNS and optional HTTP HEAD status in ~50ms, catching typos and dead domains before a 30s navigation timeout.
Instructions
Fast pre-check (DNS, optional HTTP HEAD) for a URL before go commits to a 30s navigation timeout. Catches typos and dead domains in ~50ms instead of 30s.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | Target URL to verify. | |
| lease | No | Optional lease token to present if the target session is leased (0.7.0). Threaded per-call; never read from the server's env. | |
| session | No | Optional session name to target (omit for the shared 'default'). On a daemon shared with other agents, pass a UNIQUE name for stateful multi-step work (go→click→fill) so you don't collide on 'default'. | |
| check_http | No | Also do HTTP HEAD (default false). | |
| timeout_ms | No | Per-stage timeout in ms. |