shadwshadw/Docs
GuidesAPIGetting Started
Dashboard
shadw REST APIOverviewErrors
  • GETList webhooks
  • GETList webhook events
  • POSTInbound Git webhook
  • DELDelete a webhook
APIs & SDKs/shadw REST API/List webhooks

List webhooks

GEThttps://api.shadw.cloud/v1/webhooks

List outbound webhooks for the active team.

Authentication

AuthorizationbearerToken

A platform API key (hive_…, created under Settings → API Keys) or a short-lived JWT minted with POST /v1/token. An API key scopes the request to the team it was created under.

ts
const response = await fetch('https://api.shadw.cloud/v1/webhooks', {
  method: 'GET',
  headers: {
    'Authorization': 'Bearer YOUR_API_KEY', // hive_… (Settings → API Keys)
  },
});

const data = await response.json();
console.log(data);
Response
json
[
  { "id": "wh_1", "url": "https://example.com/hook", "events": ["deployment.ready"] }
]