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

# Delete a Webhook Endpoint — DELETE /webhooks/{id}

> Remove a webhook endpoint so it stops receiving events. Requires webhooks:write.

Deletes a webhook endpoint. It immediately stops receiving events. Requires the `webhooks:write` scope.

## Request

**`DELETE https://api.blockra.io/webhooks/{id}`**

### Path parameters

<ParamField path="id" type="string" required>
  The endpoint ID (prefixed `whk_`).
</ParamField>

## Response

<ResponseField name="id" type="string">
  The deleted endpoint's ID.
</ResponseField>

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

<RequestExample>
  ```bash cURL theme={null}
  curl https://api.blockra.io/webhooks/whk_3n4o5p6q7r8s9t0u \
    -X DELETE \
    -H "X-API-Key: bk_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "data": {
      "id": "whk_3n4o5p6q7r8s9t0u",
      "deleted": true
    },
    "error": null
  }
  ```
</ResponseExample>
