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

# List webhooks

> List webhook endpoints for the account.

<RequestExample>
  ```bash cURL theme={null}
  curl "https://api.wadial.com/api/v1/webhooks" \
    -H "Authorization: Bearer $WADIAL_API_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```json theme={null}
  {
    "data": [
      {
        "id": "019f...",
        "url": "https://example.com/wadial/webhook",
        "events": ["message.received", "message.receipt"],
        "isActive": true,
        "lastDeliveryStatus": 200
      }
    ]
  }
  ```
</ResponseExample>
