list_watch_changes
List added, amended, or removed sections from a watched legal source, newest first, with pagination and filtering by change type.
Instructions
The sections this watch's source added, amended, or removed, newest first. This is the per-item detail behind the counts in a notification: not "3 sections changed" but which three.
Scoped to the watch's own lifetime, so it lists only changes the watch was subscribed for. Changes the source made before you started watching it are not included, because they were never notified.
Safe to poll alongside a webhook or email watch. This endpoint is read-only and there is no server-side 'last checked' state to interfere with: notifications fire when a corpus refresh completes, not by comparing against a watermark, and nothing here writes one. Polling cannot suppress, advance, or double-fire a delivery. (lastNotifiedAt on the watch records the outcome of the last delivery attempt for your visibility; it is never an input.)
Paging. Pass sinceId with meta.cursor from your previous page to get only what is new. meta.hasMore is true when the page filled to limit, so keep calling with the new cursor until it is false. Use order=asc while catching up.
changeKind is added (a new section), amended (its content was replaced), or removed (it disappeared from a full refresh of the source). citation and title are null for corpora that do not carry them.
Free.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max changes to return. | |
| order | No | `desc` (default) is newest first, for showing a recent-activity list. Use `asc` when catching up from a cursor: walking forward means a page that hits `limit` leaves the gap at a known end. | desc |
| since | No | Return only changes detected strictly after this ISO-8601 timestamp. Coarser than `sinceId` (a single refresh writes many rows at the same instant), but useful when all you kept was the `detectedAt` from a webhook body. Both may be combined. | |
| sinceId | No | Return only changes with an `id` greater than this. The cursor to build on: ids are a monotonic sequence, so this is exact, immune to clock skew, and cannot drop two changes that share a timestamp. Carry `meta.cursor` forward from your last page. | |
| watch_id | Yes | ||
| changeKind | No | Filter to these kinds. Repeat the parameter to pass several (`?changeKind=added&changeKind=amended`). Omit for all three. |