Tool
realtime_archive_get
Read a channel's durably archived history from Postgres (survives the Redis hot window).
Read a channel's durably archived history from Postgres (survives the Redis hot window). Offset-paginated: pass the returned next_offset as after_offset for the next page.
Behavior
- HTTP
GET /realtime/archive
Arguments
| Name | Type | Required | Description |
|---|---|---|---|
| limit | integer | — | No description in the catalog. |
| channel | string | • | Channel whose archived history to read |
| after_offset | string | — | Return entries strictly after this offset (from a previous page) |
Response
| Field | Type | Always | Description |
|---|---|---|---|
| channel | string | • | |
| entries | array | • | |
| next_offset | string | • | Pass as after_offset to fetch the next page; null = no more entries |
Try it
Read a channel's durably archived history from Postgres (survives the Redis hot window).