List Watches
curl --request GET \
--url https://api.signa.so/v1/watches \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.signa.so/v1/watches"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.signa.so/v1/watches', 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.signa.so/v1/watches",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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.signa.so/v1/watches"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
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.signa.so/v1/watches")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.signa.so/v1/watches")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"object": "list",
"data": [
{
"id": "wat_8kLm2nPq",
"object": "watch",
"name": "Class 9 filings (US/EU)",
"watch_type": "class",
"query": {
"version": "v2",
"filters": { "niceClasses": [9], "jurisdictions": ["US", "EU"] },
"trigger_events": ["trademark.created", "trademark.status_changed"]
},
"delivery_mode": "always_per_alert",
"status": "active",
"alert_count_24h": null,
"last_alerted_at": "2026-07-05T09:12:00.000Z",
"metadata": {},
"created_at": "2026-05-11T10:00:00.000Z",
"updated_at": "2026-05-11T10:00:00.000Z"
}
],
"has_more": false,
"pagination": { "cursor": null },
"request_id": "req_6tYpL2Qn"
}
Watches
List Watches
List watches for the calling organization, with cursor pagination
GET
/
v1
/
watches
List Watches
curl --request GET \
--url https://api.signa.so/v1/watches \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.signa.so/v1/watches"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.signa.so/v1/watches', 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.signa.so/v1/watches",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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.signa.so/v1/watches"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
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.signa.so/v1/watches")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.signa.so/v1/watches")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"object": "list",
"data": [
{
"id": "wat_8kLm2nPq",
"object": "watch",
"name": "Class 9 filings (US/EU)",
"watch_type": "class",
"query": {
"version": "v2",
"filters": { "niceClasses": [9], "jurisdictions": ["US", "EU"] },
"trigger_events": ["trademark.created", "trademark.status_changed"]
},
"delivery_mode": "always_per_alert",
"status": "active",
"alert_count_24h": null,
"last_alerted_at": "2026-07-05T09:12:00.000Z",
"metadata": {},
"created_at": "2026-05-11T10:00:00.000Z",
"updated_at": "2026-05-11T10:00:00.000Z"
}
],
"has_more": false,
"pagination": { "cursor": null },
"request_id": "req_6tYpL2Qn"
}
Overview
Returns the calling org’s watches with opaque cursor pagination. Requires theportfolios:manage scope.
Query Parameters
integer
default:"20"
Page size (1-100).
string
Opaque cursor returned in the previous response.
string
Filter by status:
active or paused. There’s a third status, disabled, that a watch moves
to when it’s deleted; disabled watches never
appear in this list, so disabled isn’t a valid filter value here.Response
string
Always
"list".object[]
Array of
Watch summaries (see Create Watch for the shape).boolean
True when more pages exist.
string
Request identifier.
Errors
| Status | type | When |
|---|---|---|
| 400 | validation_error | Invalid status, limit, or cursor |
Code Examples
curl "https://api.signa.so/v1/watches?status=active&limit=50" \
-H "Authorization: Bearer sig_YOUR_KEY"
import { Signa } from "@signa-so/sdk";
const signa = new Signa({ api_key: process.env.SIGNA_API_KEY });
const watches = await signa.watches.list({ status: "active", limit: 50 });
for await (const w of watches) {
console.log(w.id, w.name, w.watch_type);
}
{
"object": "list",
"data": [
{
"id": "wat_8kLm2nPq",
"object": "watch",
"name": "Class 9 filings (US/EU)",
"watch_type": "class",
"query": {
"version": "v2",
"filters": { "niceClasses": [9], "jurisdictions": ["US", "EU"] },
"trigger_events": ["trademark.created", "trademark.status_changed"]
},
"delivery_mode": "always_per_alert",
"status": "active",
"alert_count_24h": null,
"last_alerted_at": "2026-07-05T09:12:00.000Z",
"metadata": {},
"created_at": "2026-05-11T10:00:00.000Z",
"updated_at": "2026-05-11T10:00:00.000Z"
}
],
"has_more": false,
"pagination": { "cursor": null },
"request_id": "req_6tYpL2Qn"
}
Related Endpoints
- Create Watch - create a new watch
- Retrieve Watch - get a single watch, including its 24h alert count
- Bulk Create Watches - create up to 100 watches at once
⌘I