diff_crawl
Compare the current crawl against a previous baseline to list added, removed, or changed pages. Hash-based verdicts reveal exactly what changed after an incremental crawl.
Instructions
Return added/removed/changed pages between the latest crawl and the most recent crawl whose crawl_ended_at <= since. Hash-based verdicts from the SQLite history index. Pair with get_freshness: pass the last_crawl_ended_at value as since after running crawl_site with incremental set to true to see exactly what changed.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| since | Yes | RFC3339 timestamp; the most recent crawl whose crawl_ended_at <= since is the baseline (e.g. 2026-05-23T22:00:00Z) | |
| offset | No | Pagination offset, 0-based | |
| site_key | Yes | Site key from config | |
| max_results | No | Maximum diff entries to return (default 100, max 1000) |