Skip to main content
GET
/
webhooks
List Webhooks
curl --request GET \
  --url https://api.kardow.com/webhooks \
  --header 'x-api-key: <api-key>'
{
  "data": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "target_url": "<string>",
      "is_enabled": true,
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ],
  "meta": {
    "total": 123
  }
}

Documentation Index

Fetch the complete documentation index at: https://kardow.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

Returns all webhook subscriptions configured for the organization associated with your API key.

Examples

cURL
curl --request GET \
  --url "https://api.kardow.com/webhooks" \
  --header "x-api-key: your-api-key-here"

Response

data
array
Array of subscription objects.
meta
object

Authorizations

x-api-key
string
header
required

API key for authentication. Get yours from Settings > API Keys in the Kardow dashboard.

Response

Success

data
object[]
required
meta
object
required