---
title: "How do I delete a webhook?"
description: "Easily delete webhooks in Alchemy using the dashboard or API!"
---

# How do I delete a webhook?

Deleting a webhook with Alchemy can be done in two ways: through the Alchemy Dashboard or via the Delete Webhook API. Below are the steps for both methods.

## Deleting a webhook via the Alchemy dashboard
Follow these steps to delete a webhook directly from your Alchemy Dashboard:

1. **Log in** to your Alchemy account at [Alchemy Dashboard](https://dashboard.alchemy.com/).
1. Select an Alchemy app.
1. On the left-hand panel, navigate to **Webhooks** under the **Data Services** section.
1. You’ll see a list of webhooks you’ve created. Find the webhook you want to delete.
1. Click on the **three dots** next to the webhook, then select **Delete** from the dropdown menu.
1. Confirm the deletion, and your webhook will be removed.

_Note:_ This section will be illustrated with images to guide you through the process.

## Deleting a webhook via the delete webhook API
You can also delete a webhook programmatically using Alchemy’s [Delete Webhook API](https://www.alchemy.com/docs/data/webhooks/webhooks-api-endpoints/notify-api-endpoints/delete-webhook).

Follow these steps:

1. **Find your webhook ID**: You’ll need the webhook_id of the webhook you wish to delete.
1. **Get your X-Alchemy-Token**:

1. Log in to the [Alchemy Dashboard](https://dashboard.alchemy.com/).
1. Click on **Webhooks** in the left panel under **Data Services**.
1. At the top-right corner of the Webhooks page, click on the **Auth Token** button.
1. Copy your **X-Alchemy-Token** from here.
1. **Make the API Call**: Use the deleteWebhook API and include the webhook_id and X-Alchemy-Token in the request. You can refer to the [API documentation](https://www.alchemy.com/docs/data/webhooks/webhooks-api-endpoints/notify-api-endpoints/delete-webhook) for more details on how to structure your call.

By following either of these methods, you can easily delete webhooks as needed.

<CalloutBlock>
  📘 For further assistance, please refer to our API documentation or open a
  ticket!
</CalloutBlock>
