Get a single governance signal by ID
curl --request GET \
--url https://api.mnemom.ai/v1/governance/signals/{signal_id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.mnemom.ai/v1/governance/signals/{signal_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.mnemom.ai/v1/governance/signals/{signal_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.mnemom.ai/v1/governance/signals/{signal_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.mnemom.ai/v1/governance/signals/{signal_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.mnemom.ai/v1/governance/signals/{signal_id}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.mnemom.ai/v1/governance/signals/{signal_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": "<string>",
"scope": "platform",
"scope_id": "<string>",
"source": "sideband.drift",
"pattern_type": "<string>",
"severity": "info",
"detected_at": "2023-11-07T05:31:56Z",
"detected_by": "<string>",
"org_id": "<string>",
"agent_ids": [
"<string>"
],
"detail": {},
"source_ref": {},
"status": "open",
"notification_state": {
"skipped": true
},
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"team_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"acknowledged_by": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"acknowledged_at": "2023-11-07T05:31:56Z",
"acknowledged_actor_role": "platform_admin",
"resolution_status": "action_taken",
"action_taken": "<string>",
"resolved_by": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"resolved_at": "2023-11-07T05:31:56Z",
"expires_at": "2023-11-07T05:31:56Z",
"webhook_delivery_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}Governance
Get a single governance signal by ID
Get a single governance signal by ID
GET
/
governance
/
signals
/
{signal_id}
Get a single governance signal by ID
curl --request GET \
--url https://api.mnemom.ai/v1/governance/signals/{signal_id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.mnemom.ai/v1/governance/signals/{signal_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.mnemom.ai/v1/governance/signals/{signal_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.mnemom.ai/v1/governance/signals/{signal_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.mnemom.ai/v1/governance/signals/{signal_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.mnemom.ai/v1/governance/signals/{signal_id}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.mnemom.ai/v1/governance/signals/{signal_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": "<string>",
"scope": "platform",
"scope_id": "<string>",
"source": "sideband.drift",
"pattern_type": "<string>",
"severity": "info",
"detected_at": "2023-11-07T05:31:56Z",
"detected_by": "<string>",
"org_id": "<string>",
"agent_ids": [
"<string>"
],
"detail": {},
"source_ref": {},
"status": "open",
"notification_state": {
"skipped": true
},
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"team_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"acknowledged_by": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"acknowledged_at": "2023-11-07T05:31:56Z",
"acknowledged_actor_role": "platform_admin",
"resolution_status": "action_taken",
"action_taken": "<string>",
"resolved_by": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"resolved_at": "2023-11-07T05:31:56Z",
"expires_at": "2023-11-07T05:31:56Z",
"webhook_delivery_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}Authorizations
BearerAuthApiKeyAuth
Supabase JWT token in Authorization: Bearer header
Path Parameters
Governance signal ID (gs-{12-hex}).
Pattern:
^gs-[0-9a-f]{12}$Response
Governance signal.
A governance signal row — operator-actionable observation per ADR-048.
Pattern:
^gs-[0-9a-f]{12}$Scope at which the signal is produced and routed (ADR-048 §1).
Available options:
platform, org, team, agent Source detector for the signal. Closed enum per ADR-048 §1. network.threat_level.changed added in migration 234.
Available options:
sideband.drift, sideband.coherence, sideband.fault_line, sideband.fleet, network.threat_level.changed Free-form per source.
Available options:
info, warn, high, critical Available options:
open, acknowledged, resolved, dismissed, expired Per-channel dispatch state populated by the notification dispatcher.
Show child attributes
Show child attributes
Audit-actor role per ADR-046.
Available options:
platform_admin, org_owner, org_admin, team_admin, member, system Available options:
action_taken, wont_fix, duplicate, false_positive, self_resolved