Get Latest Table Row
curl --request GET \
--url https://api.example.com/v0/operator/mounts/{mountId}/tables/{slug}/rows/latestimport requests
url = "https://api.example.com/v0/operator/mounts/{mountId}/tables/{slug}/rows/latest"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/v0/operator/mounts/{mountId}/tables/{slug}/rows/latest', 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/latest",
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/latest"
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/latest")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v0/operator/mounts/{mountId}/tables/{slug}/rows/latest")
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 Latest Table Row
GET /v0/operator/mounts//tables//rows/latest — Single most-recent row on a table
GET
/
v0
/
operator
/
mounts
/
{mountId}
/
tables
/
{slug}
/
rows
/
latest
Get Latest Table Row
curl --request GET \
--url https://api.example.com/v0/operator/mounts/{mountId}/tables/{slug}/rows/latestimport requests
url = "https://api.example.com/v0/operator/mounts/{mountId}/tables/{slug}/rows/latest"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/v0/operator/mounts/{mountId}/tables/{slug}/rows/latest', 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/latest",
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/latest"
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/latest")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v0/operator/mounts/{mountId}/tables/{slug}/rows/latest")
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_bodyFetch the single most-recent row on a mount-scoped table (ordered by
created_at DESC). Used to drive “latest activity” tiles like the Demand-Scout dashboard’s run-health banner.
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 |
slug | string | Yes | Table slug |
Response
{
"ok": true,
"data": {
"id": "f0c1e8e0-0000-0000-0000-000000000001",
"data": {
"sources_succeeded": ["upwork", "jobboard"],
"sources_failed": [],
"new_leads": 23,
"run_at": "2026-05-20T03:01:00.000Z"
},
"createdAt": "2026-05-20T03:01:02.000Z",
"createdBy": "rip1..."
}
}
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 |
404 | NO_ROWS | The table is materialized but has no rows yet |
Example
# Drive a run-health banner from the demand-scout's activity table
curl -H "Authorization: Bearer rip_sk_..." \
https://api.tokenrip.com/v0/operator/mounts/a7c1.../tables/activity/rows/latest
⌘I