List Webhooks
curl --request GET \
--url https://www.trysignalbase.com/api/v2/webhooks \
--header 'Authorization: Bearer <token>'import requests
url = "https://www.trysignalbase.com/api/v2/webhooks"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://www.trysignalbase.com/api/v2/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://www.trysignalbase.com/api/v2/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://www.trysignalbase.com/api/v2/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://www.trysignalbase.com/api/v2/webhooks")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://www.trysignalbase.com/api/v2/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{
"success": true,
"data": [
{
"id": "b1f2c3d4-5e6f-4a7b-8c9d-0e1f2a3b4c5d",
"endpoint_url": "https://example.com/hooks/signalbase",
"event_types": [
"funding.created",
"hiring.created"
],
"filters": {
"countries": "US,GB"
},
"active": true,
"created_at": "2026-05-29T10:30:00.000Z",
"updated_at": "2026-05-29T10:30:00.000Z",
"last_modified_by": "user_2a9f8c7b6d5e4f3a",
"last_modified_via": "api",
"secret_preview": "…5a6b",
"stats": {
"total_deliveries": 42,
"successful_deliveries": 40,
"failed_deliveries": 2,
"last_success_at": "2026-05-29T12:00:00.000Z",
"last_failure_at": "2026-05-28T09:00:00.000Z",
"consecutive_failures": 0
}
}
],
"pagination": {
"limit": 100,
"offset": 0,
"count": 1
},
"meta": {
"endpoint": "webhooks.list",
"creditsUsed": 0
}
}{
"success": false,
"error": "Invalid API key. No key found.",
"code": "invalid_api_key"
}{
"success": false,
"error": "Subscription expired. Please upgrade your subscription: https://www.trysignalbase.com/#pricing",
"code": "subscription_expired"
}{
"success": false,
"error": "Too many requests. Please upgrade your plan or slow down.",
"code": "rate_limited",
"retryAfter": 60
}{
"success": false,
"error": "An unknown error occurred",
"code": "internal_error"
}Endpoints
List Webhooks
List the authenticated team’s active webhook subscriptions, newest first. Secrets are never returned here — each item includes only secret_preview. Free (0 credits).
GET
/
webhooks
List Webhooks
curl --request GET \
--url https://www.trysignalbase.com/api/v2/webhooks \
--header 'Authorization: Bearer <token>'import requests
url = "https://www.trysignalbase.com/api/v2/webhooks"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://www.trysignalbase.com/api/v2/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://www.trysignalbase.com/api/v2/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://www.trysignalbase.com/api/v2/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://www.trysignalbase.com/api/v2/webhooks")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://www.trysignalbase.com/api/v2/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{
"success": true,
"data": [
{
"id": "b1f2c3d4-5e6f-4a7b-8c9d-0e1f2a3b4c5d",
"endpoint_url": "https://example.com/hooks/signalbase",
"event_types": [
"funding.created",
"hiring.created"
],
"filters": {
"countries": "US,GB"
},
"active": true,
"created_at": "2026-05-29T10:30:00.000Z",
"updated_at": "2026-05-29T10:30:00.000Z",
"last_modified_by": "user_2a9f8c7b6d5e4f3a",
"last_modified_via": "api",
"secret_preview": "…5a6b",
"stats": {
"total_deliveries": 42,
"successful_deliveries": 40,
"failed_deliveries": 2,
"last_success_at": "2026-05-29T12:00:00.000Z",
"last_failure_at": "2026-05-28T09:00:00.000Z",
"consecutive_failures": 0
}
}
],
"pagination": {
"limit": 100,
"offset": 0,
"count": 1
},
"meta": {
"endpoint": "webhooks.list",
"creditsUsed": 0
}
}{
"success": false,
"error": "Invalid API key. No key found.",
"code": "invalid_api_key"
}{
"success": false,
"error": "Subscription expired. Please upgrade your subscription: https://www.trysignalbase.com/#pricing",
"code": "subscription_expired"
}{
"success": false,
"error": "Too many requests. Please upgrade your plan or slow down.",
"code": "rate_limited",
"retryAfter": 60
}{
"success": false,
"error": "An unknown error occurred",
"code": "internal_error"
}Authorizations
Signalbase API key. Include as a Bearer token in the Authorization header.
Query Parameters
Maximum number of webhooks to return. Minimum 1, maximum 100, default 100.
Required range:
1 <= x <= 100Number of webhooks to skip for pagination. Default 0.
Required range:
x >= 0⌘I
