Skip to main content
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}/rows
import 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_body
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.

Path parameters

ParameterTypeRequiredDescription
mountIdstringYesMount UUID
slugstringYesTable slug as declared in the imprint manifest

Query parameters

ParameterTypeDescription
filterstringEquality filters as key:value,key:value. Each key must be a column in the table schema. ANDed together
sortstringcolumn:asc or column:desc. Type-aware: number columns sort numerically, date columns chronologically
limitnumberDefault 100, max 500
afterstringCursor: row UUID to start after

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"
}
nextCursor is null when no further rows exist.

Errors

StatusCodeCause
403MOUNT_ACCESS_DENIEDCaller is neither the mount owner nor a current team member
404MOUNT_NOT_FOUNDNo mount with that id
404TABLE_NOT_MOUNTEDSlug does not match any materialized table on the mount

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"
To page through a large result set, repeat the call with after=<lastRowId> from the previous response.