List Webhook Subscriptions
curl --request GET \
--url https://api.coverwhale.dev/v1/webhook-subscriptions \
--header 'Accept: <accept>' \
--header 'AccessToken: <api-key>'import requests
url = "https://api.coverwhale.dev/v1/webhook-subscriptions"
headers = {
"Accept": "<accept>",
"AccessToken": "<api-key>"
}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Accept: '<accept>', AccessToken: '<api-key>'}};
fetch('https://api.coverwhale.dev/v1/webhook-subscriptions', 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.coverwhale.dev/v1/webhook-subscriptions",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Accept: <accept>",
"AccessToken: <api-key>"
],
]);
$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.coverwhale.dev/v1/webhook-subscriptions"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Accept", "<accept>")
req.Header.Add("AccessToken", "<api-key>")
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.coverwhale.dev/v1/webhook-subscriptions")
.header("Accept", "<accept>")
.header("AccessToken", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.coverwhale.dev/v1/webhook-subscriptions")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Accept"] = '<accept>'
request["AccessToken"] = '<api-key>'
response = http.request(request)
puts response.read_body[
{
"id": 42,
"company_id": 6042,
"endpoint_url": "https://hooks.yourapp.com/coverwhale",
"event_types": [
"submission.bind_completed",
"submission.canceled"
],
"active": true,
"secret_rotated_at": null,
"created_at": "2026-07-14T12:00:00+00:00",
"updated_at": "2026-07-14T12:00:00+00:00"
}
]Webhook Subscriptions
List Webhook Subscriptions
List every webhook subscription belonging to your account. The signing secret is never returned here — it is shown only once, when a subscription is created or its secret is rotated.
GET
/
webhook-subscriptions
List Webhook Subscriptions
curl --request GET \
--url https://api.coverwhale.dev/v1/webhook-subscriptions \
--header 'Accept: <accept>' \
--header 'AccessToken: <api-key>'import requests
url = "https://api.coverwhale.dev/v1/webhook-subscriptions"
headers = {
"Accept": "<accept>",
"AccessToken": "<api-key>"
}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Accept: '<accept>', AccessToken: '<api-key>'}};
fetch('https://api.coverwhale.dev/v1/webhook-subscriptions', 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.coverwhale.dev/v1/webhook-subscriptions",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Accept: <accept>",
"AccessToken: <api-key>"
],
]);
$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.coverwhale.dev/v1/webhook-subscriptions"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Accept", "<accept>")
req.Header.Add("AccessToken", "<api-key>")
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.coverwhale.dev/v1/webhook-subscriptions")
.header("Accept", "<accept>")
.header("AccessToken", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.coverwhale.dev/v1/webhook-subscriptions")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Accept"] = '<accept>'
request["AccessToken"] = '<api-key>'
response = http.request(request)
puts response.read_body[
{
"id": 42,
"company_id": 6042,
"endpoint_url": "https://hooks.yourapp.com/coverwhale",
"event_types": [
"submission.bind_completed",
"submission.canceled"
],
"active": true,
"secret_rotated_at": null,
"created_at": "2026-07-14T12:00:00+00:00",
"updated_at": "2026-07-14T12:00:00+00:00"
}
]Authorizations
JWT returned as AccessToken by the /authentication endpoint (the Cognito ID token carrying the email claim). It expires after 3600 seconds.
Response
200 - application/json
Your subscriptions
Example:
42
Example:
6042
Example:
"https://hooks.yourapp.com/coverwhale"
Example:
[
"submission.bind_completed",
"submission.canceled"
]
Example:
true
Example:
null
Example:
"2026-07-14T12:00:00+00:00"
Example:
"2026-07-14T12:00:00+00:00"