List Webhook Endpoints
curl --request GET \
--url https://api.signa.so/v1/webhooks \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.signa.so/v1/webhooks"
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/webhooks', 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/webhooks",
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/webhooks"
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/webhooks")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.signa.so/v1/webhooks")
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": "whk_2mR8vNkT",
"object": "webhook_endpoint",
"url": "https://hooks.auroradigital.example.com/signa",
"description": "Production alerts for Aurora Digital",
"enabled_events": ["alert.created"],
"status": "active",
"secret_version": 1,
"consecutive_failures": 0,
"last_success_at": "2026-07-05T09:12:31.000Z",
"last_failure_at": null,
"metadata": {},
"created_at": "2026-07-06T08:00:00.000Z",
"updated_at": "2026-07-06T08:00:00.000Z"
}
],
"has_more": false,
"pagination": { "cursor": null },
"request_id": "req_5tQmR2vX"
}
Webhooks
List Webhook Endpoints
List webhook endpoints (secrets redacted)
GET
/
v1
/
webhooks
List Webhook Endpoints
curl --request GET \
--url https://api.signa.so/v1/webhooks \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.signa.so/v1/webhooks"
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/webhooks', 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/webhooks",
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/webhooks"
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/webhooks")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.signa.so/v1/webhooks")
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": "whk_2mR8vNkT",
"object": "webhook_endpoint",
"url": "https://hooks.auroradigital.example.com/signa",
"description": "Production alerts for Aurora Digital",
"enabled_events": ["alert.created"],
"status": "active",
"secret_version": 1,
"consecutive_failures": 0,
"last_success_at": "2026-07-05T09:12:31.000Z",
"last_failure_at": null,
"metadata": {},
"created_at": "2026-07-06T08:00:00.000Z",
"updated_at": "2026-07-06T08:00:00.000Z"
}
],
"has_more": false,
"pagination": { "cursor": null },
"request_id": "req_5tQmR2vX"
}
Overview
Requires theportfolios:manage scope.
Query Parameters
integer
default:"20"
Page size (1-100).
string
Opaque cursor.
Response
object: "list" envelope of Webhook objects (see
Create Webhook Endpoint for the shape), with
secret redacted.
Errors
| Status | type | When |
|---|---|---|
| 400 | validation_error | Invalid limit or cursor |
Code Examples
curl "https://api.signa.so/v1/webhooks" \
-H "Authorization: Bearer sig_YOUR_KEY"
import { Signa } from "@signa-so/sdk";
const signa = new Signa({ api_key: process.env.SIGNA_API_KEY });
const endpoints = await signa.webhooks.list();
{
"object": "list",
"data": [
{
"id": "whk_2mR8vNkT",
"object": "webhook_endpoint",
"url": "https://hooks.auroradigital.example.com/signa",
"description": "Production alerts for Aurora Digital",
"enabled_events": ["alert.created"],
"status": "active",
"secret_version": 1,
"consecutive_failures": 0,
"last_success_at": "2026-07-05T09:12:31.000Z",
"last_failure_at": null,
"metadata": {},
"created_at": "2026-07-06T08:00:00.000Z",
"updated_at": "2026-07-06T08:00:00.000Z"
}
],
"has_more": false,
"pagination": { "cursor": null },
"request_id": "req_5tQmR2vX"
}
Related Endpoints
- Create Webhook Endpoint - register a new endpoint
- Retrieve Webhook Endpoint - get a single endpoint
⌘I