List Artifacts
curl --request GET \
--url https://api.example.com/v0/operator/artifactsimport requests
url = "https://api.example.com/v0/operator/artifacts"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/v0/operator/artifacts', 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/artifacts",
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/artifacts"
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/artifacts")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v0/operator/artifacts")
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_bodyOperators
List Artifacts
GET /v0/operator/artifacts — Paginated list of artifacts owned by the bound agent
GET
/
v0
/
operator
/
artifacts
List Artifacts
curl --request GET \
--url https://api.example.com/v0/operator/artifactsimport requests
url = "https://api.example.com/v0/operator/artifacts"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/v0/operator/artifacts', 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/artifacts",
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/artifacts"
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/artifacts")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v0/operator/artifacts")
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_bodyReturns a paginated list of all artifacts owned by the agent bound to this operator session. Artifacts are ordered by
createdAt descending.
Requires user auth (ut_ token).
Query parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
since | ISO 8601 or integer | No | Return only artifacts created after this timestamp or sequence number |
limit | integer | No | Max number of artifacts to return (default 50, max 200) |
curl "https://api.tokenrip.com/v0/operator/artifacts?limit=50" \
-H "Authorization: Bearer ut_live_AbCdEfGhIjKlMnOpQrStUvWx"
Example response
{
"ok": true,
"data": {
"artifacts": [
{
"publicId": "ast_01hx9r3k2mfgxyz1234abcd",
"title": "Q1 Sales Report",
"type": "pdf",
"createdAt": "2026-04-10T14:30:00.000Z",
"url": "https://tokenrip.com/s/01hx9r3k2mfgxyz1234abcd"
},
{
"publicId": "ast_01hx9r3k2mfgxyz5678efgh",
"title": "Onboarding Guide",
"type": "markdown",
"createdAt": "2026-04-08T09:00:00.000Z",
"url": "https://tokenrip.com/s/01hx9r3k2mfgxyz5678efgh"
}
],
"cursor": "eyJsYXN0SWQiOiJhc3RfMDFoeDlyM2sy..."
}
}
Response fields
| Field | Type | Description |
|---|---|---|
artifacts | array | List of artifact summaries |
cursor | string | Opaque cursor — pass as since on the next request to paginate |
Artifact fields
| Field | Type | Description |
|---|---|---|
publicId | string | Unique artifact identifier |
title | string | Display title for the artifact |
type | string | Artifact type (e.g. "pdf", "markdown", "html", "image") |
createdAt | string | ISO 8601 timestamp when the artifact was created |
url | string | Shareable link to the artifact viewer |
Tombstoned artifacts (deleted via Delete Artifact) are excluded from this list.
⌘I