Retrieve Alert
curl --request GET \
--url https://api.signa.so/v1/alerts/{id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.signa.so/v1/alerts/{id}"
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/alerts/{id}', 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/alerts/{id}",
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/alerts/{id}"
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/alerts/{id}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.signa.so/v1/alerts/{id}")
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{
"id": "alt_4tYpL2Qn",
"object": "alert",
"schema_version": "2026-06-01",
"watch": { "id": "wat_8kLm2nPq", "name": "Nike owner watch", "type": "owner" },
"customer_reference": null,
"event": {
"type": "trademark.status_changed",
"summary": "Status stage changed: published → registered",
"diff": [
{ "path": "status_stage", "op": "changed", "from": "published", "to": "registered" }
]
},
"match": null,
"trademark": {
"id": "tm_9vXq3Rmt",
"mark_text": "NIKE",
"mark_feature_type": "word",
"office_code": "US",
"status": { "primary": "active", "stage": "registered" },
"filing_date": "2024-02-01",
"registration_date": "2026-07-01",
"nice_classes": [25, 28],
"owner_name": "Nike, Inc.",
"as_of": "2026-07-05T09:10:00.000Z",
"links": { "self": "/v1/trademarks/tm_9vXq3Rmt" }
},
"deadline": { "severity": "high", "opposition_window_status": "open", "must_act_by": "2026-09-04" },
"timestamps": {
"occurred_at": "2026-07-05T09:10:00.000Z",
"ingested_at": "2026-07-05T09:12:00.000Z",
"created_at": "2026-07-05T09:12:30.000Z"
},
"links": { "trademark": "/v1/trademarks/tm_9vXq3Rmt", "watch": "/v1/watches/wat_8kLm2nPq" },
"evaluation_epoch": 0,
"request_id": "req_3vXq7RmT"
}
Alerts
Retrieve Alert
Get a single alert by ID
GET
/
v1
/
alerts
/
{id}
Retrieve Alert
curl --request GET \
--url https://api.signa.so/v1/alerts/{id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.signa.so/v1/alerts/{id}"
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/alerts/{id}', 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/alerts/{id}",
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/alerts/{id}"
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/alerts/{id}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.signa.so/v1/alerts/{id}")
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{
"id": "alt_4tYpL2Qn",
"object": "alert",
"schema_version": "2026-06-01",
"watch": { "id": "wat_8kLm2nPq", "name": "Nike owner watch", "type": "owner" },
"customer_reference": null,
"event": {
"type": "trademark.status_changed",
"summary": "Status stage changed: published → registered",
"diff": [
{ "path": "status_stage", "op": "changed", "from": "published", "to": "registered" }
]
},
"match": null,
"trademark": {
"id": "tm_9vXq3Rmt",
"mark_text": "NIKE",
"mark_feature_type": "word",
"office_code": "US",
"status": { "primary": "active", "stage": "registered" },
"filing_date": "2024-02-01",
"registration_date": "2026-07-01",
"nice_classes": [25, 28],
"owner_name": "Nike, Inc.",
"as_of": "2026-07-05T09:10:00.000Z",
"links": { "self": "/v1/trademarks/tm_9vXq3Rmt" }
},
"deadline": { "severity": "high", "opposition_window_status": "open", "must_act_by": "2026-09-04" },
"timestamps": {
"occurred_at": "2026-07-05T09:10:00.000Z",
"ingested_at": "2026-07-05T09:12:00.000Z",
"created_at": "2026-07-05T09:12:30.000Z"
},
"links": { "trademark": "/v1/trademarks/tm_9vXq3Rmt", "watch": "/v1/watches/wat_8kLm2nPq" },
"evaluation_epoch": 0,
"request_id": "req_3vXq7RmT"
}
Overview
Requires theportfolios:manage scope.
Path Parameters
string
required
Alert ID (
alt_*).Response
Returns a singleAlert (see List Alerts for the shape).
Errors
| Status | type | When |
|---|---|---|
| 404 | not_found | Alert doesn’t exist or belongs to another org |
Code Examples
curl "https://api.signa.so/v1/alerts/alt_4tYpL2Qn" \
-H "Authorization: Bearer sig_YOUR_KEY"
import { Signa } from "@signa-so/sdk";
const signa = new Signa({ api_key: process.env.SIGNA_API_KEY });
const alert = await signa.alerts.retrieve("alt_4tYpL2Qn");
{
"id": "alt_4tYpL2Qn",
"object": "alert",
"schema_version": "2026-06-01",
"watch": { "id": "wat_8kLm2nPq", "name": "Nike owner watch", "type": "owner" },
"customer_reference": null,
"event": {
"type": "trademark.status_changed",
"summary": "Status stage changed: published → registered",
"diff": [
{ "path": "status_stage", "op": "changed", "from": "published", "to": "registered" }
]
},
"match": null,
"trademark": {
"id": "tm_9vXq3Rmt",
"mark_text": "NIKE",
"mark_feature_type": "word",
"office_code": "US",
"status": { "primary": "active", "stage": "registered" },
"filing_date": "2024-02-01",
"registration_date": "2026-07-01",
"nice_classes": [25, 28],
"owner_name": "Nike, Inc.",
"as_of": "2026-07-05T09:10:00.000Z",
"links": { "self": "/v1/trademarks/tm_9vXq3Rmt" }
},
"deadline": { "severity": "high", "opposition_window_status": "open", "must_act_by": "2026-09-04" },
"timestamps": {
"occurred_at": "2026-07-05T09:10:00.000Z",
"ingested_at": "2026-07-05T09:12:00.000Z",
"created_at": "2026-07-05T09:12:30.000Z"
},
"links": { "trademark": "/v1/trademarks/tm_9vXq3Rmt", "watch": "/v1/watches/wat_8kLm2nPq" },
"evaluation_epoch": 0,
"request_id": "req_3vXq7RmT"
}
Related Endpoints
- List Alerts - browse alerts with filters and pagination
- Lookup Alerts - bulk-fetch alerts by ID
- Watch Diagnostics - explain why a specific trademark did or didn’t alert
⌘I