Get Table Rows
curl --request GET \
--url https://api.example.com/v0/operator/mounts/{mountId}/tables/{slug}/rowsimport requests
url = "https://api.example.com/v0/operator/mounts/{mountId}/tables/{slug}/rows"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/v0/operator/mounts/{mountId}/tables/{slug}/rows', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.com/v0/operator/mounts/{mountId}/tables/{slug}/rows",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/v0/operator/mounts/{mountId}/tables/{slug}/rows"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.example.com/v0/operator/mounts/{mountId}/tables/{slug}/rows")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v0/operator/mounts/{mountId}/tables/{slug}/rows")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_bodyMount Tables
Get Table Rows
GET /v0/operator/mounts//tables//rows — Paginate, filter, sort rows on a mount-scoped table
GET
/
v0
/
operator
/
mounts
/
{mountId}
/
tables
/
{slug}
/
rows
Get Table Rows
curl --request GET \
--url https://api.example.com/v0/operator/mounts/{mountId}/tables/{slug}/rowsimport requests
url = "https://api.example.com/v0/operator/mounts/{mountId}/tables/{slug}/rows"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/v0/operator/mounts/{mountId}/tables/{slug}/rows', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.com/v0/operator/mounts/{mountId}/tables/{slug}/rows",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/v0/operator/mounts/{mountId}/tables/{slug}/rows"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.example.com/v0/operator/mounts/{mountId}/tables/{slug}/rows")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v0/operator/mounts/{mountId}/tables/{slug}/rows")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_bodyRead 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.
Comparisons use the column’s declared type, so
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 | Filters as key:value,key:value, ANDed. The key may carry an operator suffix — revenue[gte]:75. Each key must be a column in the table schema |
sort | string | column:asc or column:desc. Type-aware: number columns sort numerically, date columns chronologically. Also accepts createdAt, updatedAt, id |
limit | number | Default 100, max 500 |
after | string | Cursor: row UUID to start after |
before | string | Cursor: row UUID to page backward from. Cannot be combined with after |
fields | string | Comma-separated columns to return in each row’s data, e.g. slug,title |
include_total | boolean | 1 or true to also return total, the unpaginated count matching the filters |
Filter operators
| Operator | Meaning |
|---|---|
| (none) | Equal — status:new |
lt lte gt gte | Range — composite_score[gte]:8 |
ne | Not equal. Uses IS DISTINCT FROM, so rows missing the column still match |
in | Any of a comma-separated list — status[in]:new,seen |
contains / starts | Case-insensitive substring / prefix match |
composite_score[gte]:8 compares
numerically and a date column compares chronologically.
A
filter, sort, or fields naming a column the table does not have returns
400 — it is not silently ignored. Previously a mistyped filter returned every
row unfiltered.Response
{
"ok": true,
"data": [
{
"id": "f0c1e8e0-0000-0000-0000-000000000001",
"data": {
"url": "https://x.com/user/status/1001",
"title": "Need an AI agent for support tickets",
"composite_score": 8.6,
"status": "new"
},
"createdAt": "2026-05-20T05:00:00.000Z",
"createdBy": "rip1..."
}
],
"nextCursor": "f0c1e8e0-0000-0000-0000-00000000000a",
"prevCursor": null
}
nextCursor is null when no further rows exist. prevCursor is null on the
first page. total is present only when include_total was requested.
Ordering is total — the created_at, id tie-break is guaranteed — so paging is
stable even when many rows share a sort value.
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 |
400 | INVALID_FILTER_COLUMN | A filter names a column not in the table schema |
400 | INVALID_SORT_COLUMN | A sort names a column not in the table schema |
400 | INVALID_FIELD | fields names a column not in the table schema |
400 | INVALID_FILTER | A filter key is malformed or uses an unknown operator |
400 | INVALID_CURSOR | The cursor is not a row in this table |
400 | CONFLICTING_CURSORS | Both after and before were supplied |
Example
# Top-15 bid leads (only "new" status) sorted by composite score
curl -H "Authorization: Bearer rip_sk_..." \
"https://api.tokenrip.com/v0/operator/mounts/a7c1.../tables/upwork-leads/rows?filter=status:new&sort=composite_score:desc&limit=15"
after=<lastRowId> from the previous response.