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

# Get Webhook Endpoint

> Retrieve an active webhook endpoint

<Note>
  Deleted endpoints are not returned by this endpoint. Use the list endpoint to inspect their `deleted_at` timestamps.
  Signing secrets are never included.
</Note>

## Path Parameters

<ParamField path="customer_id" type="string" required>
  The customer's external ID (starts with `cus_`)
</ParamField>

<ParamField path="endpoint_id" type="string" required>
  The webhook endpoint's external ID (starts with `wh_`)
</ParamField>

## Response

<ResponseField name="id" type="string">
  Webhook endpoint identifier (starts with `wh_`)
</ResponseField>

<ResponseField name="object" type="string">
  Always returns `"webhook_endpoint"`
</ResponseField>

<ResponseField name="url" type="string">
  The webhook delivery URL
</ResponseField>

<ResponseField name="events" type="array">
  Subscribed event types
</ResponseField>

<ResponseField name="description" type="string">
  Webhook description, or `null`
</ResponseField>

<ResponseField name="created" type="string">
  ISO 8601 creation timestamp
</ResponseField>

<ResponseField name="updated" type="string">
  ISO 8601 last-update timestamp
</ResponseField>

<ResponseField name="created_by" type="string">
  Identifier of the actor that created the endpoint, or `null`
</ResponseField>

<ResponseField name="updated_by" type="string">
  Identifier of the actor that last updated the endpoint, or `null`
</ResponseField>

<ResponseField name="last_used_at" type="string">
  Timestamp of the most recent successful delivery, or `null`
</ResponseField>

<ResponseField name="deleted_at" type="string">
  Deletion timestamp. This is `null` for resources returned by this endpoint.
</ResponseField>

## Response Example

```json theme={null}
{
  "id": "wh_1234567890abcdefghijklmn",
  "object": "webhook_endpoint",
  "url": "https://api.mycompany.com/webhooks/hopnow",
  "events": ["deposit.received", "withdraw.completed", "account.created"],
  "description": "Production webhook for account activity",
  "created": "2026-07-15T02:00:00Z",
  "updated": "2026-07-15T02:00:00Z",
  "created_by": null,
  "updated_by": null,
  "last_used_at": null,
  "deleted_at": null
}
```
