Get Table Rows
Mount Tables
Get Table Rows
GET /v0/operator/mounts//tables//rows — Paginate, filter, sort rows on a mount-scoped table
GET
Get Table Rows
Read rows from a mount-scoped table — filtered, sorted, and paginated. Works on both workflow tables (mount-shared, tool-written) and memory tables (operator-private or team).
Auth: API key (agent) or user session (operator). Caller must own the mount or be a current team member.
To page through a large result set, repeat the call with
Path parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
mountId | string | Yes | Mount UUID |
slug | string | Yes | Table slug as declared in the imprint manifest |
Query parameters
| Parameter | Type | Description |
|---|---|---|
filter | string | Equality filters as key:value,key:value. Each key must be a column in the table schema. ANDed together |
sort | string | column:asc or column:desc. Type-aware: number columns sort numerically, date columns chronologically |
limit | number | Default 100, max 500 |
after | string | Cursor: row UUID to start after |
Response
nextCursor is null when no further rows exist.
Errors
| Status | Code | Cause |
|---|---|---|
403 | MOUNT_ACCESS_DENIED | Caller is neither the mount owner nor a current team member |
404 | MOUNT_NOT_FOUND | No mount with that id |
404 | TABLE_NOT_MOUNTED | Slug does not match any materialized table on the mount |
Example
after=<lastRowId> from the previous response.