Skip to main content
GET
/
v0
/
operator
/
mounts
/
{mountId}
/
tables
List Mount Tables
curl --request GET \
  --url https://api.example.com/v0/operator/mounts/{mountId}/tables
import requests

url = "https://api.example.com/v0/operator/mounts/{mountId}/tables"

response = requests.get(url)

print(response.text)
const options = {method: 'GET'};

fetch('https://api.example.com/v0/operator/mounts/{mountId}/tables', 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",
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"

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")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.example.com/v0/operator/mounts/{mountId}/tables")

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
List every table materialized on a mount — workflow and memory — along with the manifest metadata (slug, scope, schema, tags) the operator dashboard needs to render views. Auth: API key (agent) or user session (operator). Caller must own the mount or be a current team member.

Path parameters

ParameterTypeRequiredDescription
mountIdstringYesMount UUID

Response

{
  "ok": true,
  "data": [
    {
      "slug": "upwork-leads",
      "scope": "mount-shared",
      "templateKind": "workflow_table",
      "artifactPublicId": "1a2b3c4d-5e6f-7890-abcd-ef1234567890",
      "artifactAlias": "myop-ds-upwork",
      "schema": [
        { "name": "url", "type": "text" },
        { "name": "title", "type": "text" }
      ],
      "tags": ["bid"]
    }
  ]
}
FieldTypeDescription
slugstringTable slug as declared in the imprint manifest
scopeenummount-shared (workflow tables), operator-private / team / shared (memory)
templateKindenumworkflow_table or memory_table
artifactPublicIdstringPublic UUID of the underlying artifact (for use with GET /v0/artifacts/:publicId/rows if direct artifact access is needed)
artifactAliasstring | nullAlias if one was assigned at materialization
schemaarrayColumn definitions from the manifest
tagsstring[]Free-form labels; used to drive multi-table “by-tag” views (see Get Rows By Tag)

Errors

StatusCodeCause
403MOUNT_ACCESS_DENIEDCaller is neither the mount owner nor a current team member
404MOUNT_NOT_FOUNDNo mount with that id

Example

curl -H "Authorization: Bearer rip_sk_..." \
  https://api.tokenrip.com/v0/operator/mounts/a7c1.../tables