Get monitoring events
get_monitoring_eventsReturns the authenticated user's monitoring events: material reputation changes detected on their monitored addresses, oldest first, each with the change type, a summary, and the band transition. Also returns a deterministic digest that rolls up the window into one sentence. Page forward by passing the returned nextCursor as cursor. Bound the window with since and until, or restrict to one address with address. Costs zero credits.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Number of events (1-100, default 20) | |
| since | No | ISO-8601 lower bound. Only events at or after this time are returned. | |
| until | No | ISO-8601 upper bound. Only events at or before this time are returned. | |
| cursor | No | Pass the nextCursor from a prior call to page forward. | |
| address | No | Restrict to one monitored address (0x...). Omit for the whole portfolio. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| digest | Yes | Deterministic rollup of the events in this window | |
| events | Yes | Monitoring events in the window, oldest first | |
| hasMore | Yes | True when more events remain past this page | |
| nextCursor | Yes | Cursor for the next page, or null when none remain |