Get Rows By Tag
curl --request GET \
--url https://api.example.com/v0/operator/mounts/{mountId}/tables-by-tag/{tag}/rowsimport requests
url = "https://api.example.com/v0/operator/mounts/{mountId}/tables-by-tag/{tag}/rows"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/v0/operator/mounts/{mountId}/tables-by-tag/{tag}/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-by-tag/{tag}/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-by-tag/{tag}/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-by-tag/{tag}/rows")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v0/operator/mounts/{mountId}/tables-by-tag/{tag}/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 Rows By Tag
GET /v0/operator/mounts//tables-by-tag//rows — Interleave rows across tagged tables
GET
/
v0
/
operator
/
mounts
/
{mountId}
/
tables-by-tag
/
{tag}
/
rows
Get Rows By Tag
curl --request GET \
--url https://api.example.com/v0/operator/mounts/{mountId}/tables-by-tag/{tag}/rowsimport requests
url = "https://api.example.com/v0/operator/mounts/{mountId}/tables-by-tag/{tag}/rows"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/v0/operator/mounts/{mountId}/tables-by-tag/{tag}/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-by-tag/{tag}/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-by-tag/{tag}/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-by-tag/{tag}/rows")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v0/operator/mounts/{mountId}/tables-by-tag/{tag}/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 interleaved across every workflow table on the mount whose manifest declaration carries
Sort applies across the merged set — rows from different tables are interleaved in
If no table declares
tag in its tags array. Lets a single dashboard view span multiple tables without the backend hardcoding which slugs belong together.
The Demand-Scout imprint, for example, declares tags: ["bid"] on its upwork-leads and jobboard-leads tables, so /tables-by-tag/bid/rows?sort=composite_score:desc returns a unified “best bid targets” list.
Auth: API key (agent) or user session (operator). Caller must own the mount or be a current team member.
Path parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
mountId | string | Yes | Mount UUID |
tag | string | Yes | Tag value declared in workflowTables[].tags |
Query parameters
| Parameter | Type | Description |
|---|---|---|
filter | string | Equality filters key:val,key:val, applied per-table before merge |
sort | string | column:asc or column:desc. Same type-aware sort as Get Rows |
limit | number | Per-table cap (default 100, max 500). Total returned can be up to limit x #tagged-tables |
Response
Each item carries its sourcetableSlug so the dashboard can render the lane:
{
"ok": true,
"tag": "bid",
"data": [
{
"tableSlug": "upwork-leads",
"id": "f0c1...",
"data": { "url": "...", "composite_score": 9.1, "status": "new" },
"createdAt": "2026-05-20T05:00:00.000Z",
"createdBy": "rip1..."
},
{
"tableSlug": "jobboard-leads",
"id": "a4d2...",
"data": { "url": "...", "composite_score": 8.4, "status": "new" },
"createdAt": "2026-05-20T04:30:00.000Z",
"createdBy": "rip1..."
}
]
}
sort order.
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 |
tag in its tags array, the endpoint returns { ok: true, data: [] } — not an error.
Example
curl -H "Authorization: Bearer rip_sk_..." \
"https://api.tokenrip.com/v0/operator/mounts/a7c1.../tables-by-tag/bid/rows?sort=composite_score:desc&filter=status:new&limit=50"