check_links
Crawl all links on a page and report each one's URL, status code, and OK/broken result, catching 404s and dead anchors. Works on a session or URL.
Instructions
Crawl all links on a page and report each one's URL, status code, and OK/broken result — catching 404s and dead anchors. External links are skipped unless check_external=true. Returns the per-link results plus a broken-link summary. Works on a session or a URL.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | No | URL to check (use this or session_id) | |
| project | No | Project name (optional). With a project: runs in its shared, authenticated context. Without: runs in an isolated context (no shared cookies/login). | |
| max_links | No | Max links to check (default: 100) | |
| session_id | No | Session ID (use this or url) | |
| check_external | No | Also check external links (default: false) |