URL Changed
url_changedChecks if a public URL's content has changed since last visit by comparing current and stored hashes, returning status and timestamps.
Instructions
Compare a public HTTP or HTTPS URL with its previously stored normalized content hash. Creates a baseline on first use, then reports whether content changed and returns current and previous hashes with timestamps. JavaScript is not executed. Pass url as an absolute public HTTP(S) URL. Keep fresh=false to reuse cache; set fresh=true only for a new fetch.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | Absolute public HTTP or HTTPS URL to inspect. Private, loopback, link-local, metadata-service and otherwise SSRF-sensitive destinations are rejected. | |
| fresh | No | Set true only when a new upstream fetch is required; false allows the bounded cached result and is cheaper for the origin. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| changed | Yes | ||
| quality | No | ||
| checked_at | Yes | ||
| current_hash | Yes | ||
| first_seen_at | No | ||
| previous_hash | Yes | ||
| baseline_created | Yes | ||
| previous_checked_at | No |