> ## Documentation Index
> Fetch the complete documentation index at: https://docs.bunship.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List Webhook Endpoints

> Get all webhook endpoints for the organization

Returns all registered webhook endpoints for the organization. Secrets are not included in the list response -- they are only returned at creation time.

## Auth

<Note>Requires a valid Bearer token. User must be a member of the organization.</Note>

## Path Parameters

<ParamField path="orgId" type="string" required>
  Organization identifier.
</ParamField>

## Response

<ResponseField name="success" type="boolean">Always `true` on success.</ResponseField>

<ResponseField name="data" type="array">
  Array of webhook endpoint objects.

  <Expandable title="endpoint properties">
    <ResponseField name="id" type="string">Webhook endpoint identifier.</ResponseField>
    <ResponseField name="organizationId" type="string">Organization identifier.</ResponseField>
    <ResponseField name="url" type="string">Webhook delivery URL.</ResponseField>
    <ResponseField name="description" type="string | null">Endpoint description.</ResponseField>
    <ResponseField name="events" type="string[]">Subscribed event types. Empty array means all events.</ResponseField>
    <ResponseField name="isActive" type="boolean">Whether the endpoint is active.</ResponseField>
    <ResponseField name="createdAt" type="string">ISO 8601 creation timestamp.</ResponseField>
    <ResponseField name="updatedAt" type="string">ISO 8601 last update timestamp.</ResponseField>
  </Expandable>
</ResponseField>

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true,
    "data": [
      {
        "id": "wh_abc123",
        "organizationId": "org_cld2abc123def456",
        "url": "https://example.com/webhooks/bunship",
        "description": "Production webhook handler",
        "events": ["member.added", "member.removed", "subscription.updated"],
        "isActive": true,
        "createdAt": "2024-01-15T10:00:00Z",
        "updatedAt": "2024-01-15T10:00:00Z"
      }
    ]
  }
  ```
</ResponseExample>

## Example

```bash theme={null}
curl https://api.bunship.com/api/v1/organizations/org_cld2abc123def456/webhooks \
  -H "Authorization: Bearer eyJhbGciOiJIUzI1NiIs..."
```
