Bulk Create Watches
curl --request POST \
--url https://api.signa.so/v1/watches/bulk \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"watches": [
{}
]
}
'import requests
url = "https://api.signa.so/v1/watches/bulk"
payload = { "watches": [{}] }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({watches: [{}]})
};
fetch('https://api.signa.so/v1/watches/bulk', 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/bulk",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'watches' => [
[
]
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.signa.so/v1/watches/bulk"
payload := strings.NewReader("{\n \"watches\": [\n {}\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.signa.so/v1/watches/bulk")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"watches\": [\n {}\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.signa.so/v1/watches/bulk")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"watches\": [\n {}\n ]\n}"
response = http.request(request)
puts response.read_body{
"object": "list",
"data": [
{
"id": "wat_8kLm2nPq",
"object": "watch",
"name": "Class 9 filings (US)",
"watch_type": "class",
"query": { "version": "v2", "filters": { "niceClasses": [9], "jurisdictions": ["US"] } },
"delivery_mode": "always_per_alert",
"status": "active",
"alert_count_24h": null,
"last_alerted_at": null,
"metadata": {},
"created_at": "2026-05-11T10:00:00.000Z",
"updated_at": "2026-05-11T10:00:00.000Z"
},
{
"id": "wat_3vXq7RmT",
"object": "watch",
"name": "Class 9 filings (EU)",
"watch_type": "class",
"query": { "version": "v2", "filters": { "niceClasses": [9], "jurisdictions": ["EU"] } },
"delivery_mode": "always_per_alert",
"status": "active",
"alert_count_24h": null,
"last_alerted_at": null,
"metadata": {},
"created_at": "2026-05-11T10:00:00.000Z",
"updated_at": "2026-05-11T10:00:00.000Z"
}
],
"request_id": "req_5tQmR2vX"
}
Watches
Bulk Create Watches
Create up to 100 watches in a single call
POST
/
v1
/
watches
/
bulk
Bulk Create Watches
curl --request POST \
--url https://api.signa.so/v1/watches/bulk \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"watches": [
{}
]
}
'import requests
url = "https://api.signa.so/v1/watches/bulk"
payload = { "watches": [{}] }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({watches: [{}]})
};
fetch('https://api.signa.so/v1/watches/bulk', 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/bulk",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'watches' => [
[
]
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.signa.so/v1/watches/bulk"
payload := strings.NewReader("{\n \"watches\": [\n {}\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.signa.so/v1/watches/bulk")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"watches\": [\n {}\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.signa.so/v1/watches/bulk")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"watches\": [\n {}\n ]\n}"
response = http.request(request)
puts response.read_body{
"object": "list",
"data": [
{
"id": "wat_8kLm2nPq",
"object": "watch",
"name": "Class 9 filings (US)",
"watch_type": "class",
"query": { "version": "v2", "filters": { "niceClasses": [9], "jurisdictions": ["US"] } },
"delivery_mode": "always_per_alert",
"status": "active",
"alert_count_24h": null,
"last_alerted_at": null,
"metadata": {},
"created_at": "2026-05-11T10:00:00.000Z",
"updated_at": "2026-05-11T10:00:00.000Z"
},
{
"id": "wat_3vXq7RmT",
"object": "watch",
"name": "Class 9 filings (EU)",
"watch_type": "class",
"query": { "version": "v2", "filters": { "niceClasses": [9], "jurisdictions": ["EU"] } },
"delivery_mode": "always_per_alert",
"status": "active",
"alert_count_24h": null,
"last_alerted_at": null,
"metadata": {},
"created_at": "2026-05-11T10:00:00.000Z",
"updated_at": "2026-05-11T10:00:00.000Z"
}
],
"request_id": "req_5tQmR2vX"
}
Overview
Bulk-create variant of Create Watch. The full set is validated upfront; there are no partial inserts. Counts against your plan’s watch limit. Requires theportfolios:manage scope.
Body Parameters
object[]
required
1-100 watch specifications. Each item has the same shape as the body of
Create Watch.
Response
string
Always
"list".object[]
Array of created
Watch objects, in input order.string
Request identifier.
Filter keys inside
query.filters are camelCase (niceClasses, jurisdictions, ownerId,
…). Unknown keys, including snake_case typos like nice_classes, are rejected with 400,
as is query.match in any form. See
the canonical query reference.Errors
| Status | type | When |
|---|---|---|
| 400 | validation_error | Any item fails validation (the whole batch is rejected) |
| 409 | resource_quota_exceeded | Your plan’s watch limit is exceeded |
| 413 | payload_too_large | Combined payload exceeds the per-request limit |
Code Examples
curl -X POST "https://api.signa.so/v1/watches/bulk" \
-H "Authorization: Bearer sig_YOUR_KEY" \
-H "Content-Type: application/json" \
-H "Idempotency-Key: bulk-class9-2026-06-12" \
-d '{
"watches": [
{ "name": "Class 9 filings (US)", "watch_type": "class",
"query": { "version": "v2", "filters": { "niceClasses": [9], "jurisdictions": ["US"] } } },
{ "name": "Class 9 filings (EU)", "watch_type": "class",
"query": { "version": "v2", "filters": { "niceClasses": [9], "jurisdictions": ["EU"] } } }
]
}'
import { Signa } from "@signa-so/sdk";
const signa = new Signa({ api_key: process.env.SIGNA_API_KEY });
const created = await signa.watches.bulk({
watches: [
{
name: "Class 9 filings (US)",
watch_type: "class",
query: { version: "v2", filters: { niceClasses: [9], jurisdictions: ["US"] } },
},
{
name: "Class 9 filings (EU)",
watch_type: "class",
query: { version: "v2", filters: { niceClasses: [9], jurisdictions: ["EU"] } },
},
],
});
{
"object": "list",
"data": [
{
"id": "wat_8kLm2nPq",
"object": "watch",
"name": "Class 9 filings (US)",
"watch_type": "class",
"query": { "version": "v2", "filters": { "niceClasses": [9], "jurisdictions": ["US"] } },
"delivery_mode": "always_per_alert",
"status": "active",
"alert_count_24h": null,
"last_alerted_at": null,
"metadata": {},
"created_at": "2026-05-11T10:00:00.000Z",
"updated_at": "2026-05-11T10:00:00.000Z"
},
{
"id": "wat_3vXq7RmT",
"object": "watch",
"name": "Class 9 filings (EU)",
"watch_type": "class",
"query": { "version": "v2", "filters": { "niceClasses": [9], "jurisdictions": ["EU"] } },
"delivery_mode": "always_per_alert",
"status": "active",
"alert_count_24h": null,
"last_alerted_at": null,
"metadata": {},
"created_at": "2026-05-11T10:00:00.000Z",
"updated_at": "2026-05-11T10:00:00.000Z"
}
],
"request_id": "req_5tQmR2vX"
}
Related Endpoints
- Create Watch - create a single watch
- Preview Watch - check match volume before bulk-creating
- List Watches - list the resulting watches
⌘I