Skip to main content
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}/rows
import 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_body
Read rows interleaved across every workflow table on the mount whose manifest declaration carries 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

ParameterTypeRequiredDescription
mountIdstringYesMount UUID
tagstringYesTag value declared in workflowTables[].tags

Query parameters

ParameterTypeDescription
filterstringEquality filters key:val,key:val, applied per-table before merge
sortstringcolumn:asc or column:desc. Same type-aware sort as Get Rows
limitnumberPer-table cap (default 100, max 500). Total returned can be up to limit x #tagged-tables

Response

Each item carries its source tableSlug 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 applies across the merged set — rows from different tables are interleaved in sort order.

Errors

StatusCodeCause
403MOUNT_ACCESS_DENIEDCaller is neither the mount owner nor a current team member
404MOUNT_NOT_FOUNDNo mount with that id
If no table declares 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"