diff --git a/content/api-reference/data/webhooks/webhooks-overview.mdx b/content/api-reference/data/webhooks/webhooks-overview.mdx
index ed4d649dc..ab606b78a 100644
--- a/content/api-reference/data/webhooks/webhooks-overview.mdx
+++ b/content/api-reference/data/webhooks/webhooks-overview.mdx
@@ -1,6 +1,6 @@
---
title: Webhooks Overview
-description: Monitor onchain activity in real time with Alchemy webhooks for address, mined transaction, and dropped transaction events.
+description: Monitor onchain activity in real time with Alchemy webhooks for address activity, custom, and NFT activity events.
subtitle: Fast, consistent, and custom push notifications!
slug: reference/webhooks-overview
---
@@ -34,7 +34,7 @@ Alchemy webhooks provide real-time notifications for primarily onchain data. The

-## V2 webhook
+## Webhook event object
### Field definitions
@@ -44,12 +44,12 @@ Alchemy webhooks provide real-time notifications for primarily onchain data. The
| `id` | ID of the event. | `whevt_ogrc5v64myey69ux` |
| `createdAt` | The timestamp when webhook was created. | `2021-12-07T03:52:45.899Z` |
| `type` | Webhook event type. | `TYPE_STRING` |
-| `event` | Object-mined transaction. | `OBJECT` |
+| `event` | The webhook event payload. | `OBJECT` |
### Example
- ```shell V2
+ ```shell
{
"webhookId": "wh_octjglnywaupz6th",
"id": "whevt_ogrc5v64myey69ux",
@@ -60,30 +60,4 @@ Alchemy webhooks provide real-time notifications for primarily onchain data. The
```
-## V1 webhook event object
-
-### Field definitions
-
-| Field | Description | Value |
-| ------------- | ------------------------------------------------- | -------------------------- |
-| `app` | Alchemy app name sending the transaction webhook. | `Demo` |
-| `network` | Network for the webhook event. | `MAINNET` |
-| `webhookType` | The type of webhook. | `MINED_TRANSACTION` |
-| `timestamp` | Timestamp when the webhook was created. | `2020-07-29T00:29:18.414Z` |
-| `event name` | Webhook event type. | `OBJECT` |
-
For full dependencies and more code examples, see the [webhook examples GitHub repo](https://github.com/alchemyplatform/webhook-examples).
-
-### Example response
-
-
- ```shell v1
- {
- "app": "Demo",
- "network": "MAINNET",
- "webhookType": "MINED_TRANSACTION",
- "timestamp": "2020-07-29T00:29:18.414Z",
- "event name": OBJECT
- }
- ```
-