---
api: 'Business API'
---

# Retrieve a webhook

Get the information about a specific webhook by ID.

For more information, see the guides: [About webhooks](/docs/guides/manage-accounts/webhooks/about-webhooks) and [Manage webhooks](/docs/guides/manage-accounts/webhooks/manage-webhooks#retrieve-a-specific-webhook).

## Endpoint

GET `/webhooks/{webhook_id}`

## Parameters

### path parameters

- `webhook_id` (string, required)
  The ID of the webhook to retrieve.

## Returns

### 200

The information about the webhook

#### Response attributes

- `id` (string)
    The ID of the webhook.
- `url` (string)
    The valid webhook URL that event notifications are sent to. The supported protocol is `https`.
- `events` (array of enum)
    The list of event types that you are subscribed to.
- `signing_secret` (string)
    The signing secret for the webhook.

## Error responses

| HTTP status code | Description |
| --- | --- |
| 400 | Bad Request |
| 404 | Not Found |
