What changed since you last looked
data_changesFetch changes in a collection after a held position, returning individual events and a next_since token for continuous fetching. Omit a position to get the current sequence marker.
Instructions
What happened in a collection after a ledger position YOU hold — including edits the USER made in the widget, which never pass through you. Any mark you already have works as since: a write ack's seq, data_list's version, or the last call's next_since. Returns the contiguous run of events right after it (oldest first, whole events: actor, item id, fields) plus next_since to continue; omit since to just learn the current position.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | max events to return (default 50, max 500) | |
| since | No | your held mark — events strictly after this seq; omit to just learn latest_seq | |
| collection | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| eot | No | ||
| note | No | ||
| since | No | ||
| total | No | ||
| events | Yes | ||
| dropped | No | ||
| returned | No | ||
| collection | Yes | ||
| latest_seq | Yes | ||
| next_since | Yes |