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

# Retrieve a webhook event type

> You can look up details about a webhook event type by specifying its ID in the following request.

# Step 2: retrieve a webhook event type

You can look up details about a webhook event type by specifying its ID in the following request.

<CodeGroup>
  ```bash Sandbox theme={null}
  curl -i -X GET \
    'https://api-sandbox.equalsmoney.com/v2/webhooks/event-types/{webhookEventTypeId}' \
    -H 'Authorization: ApiKey {apiKey}'
  ```

  ```bash Production theme={null}
  curl -i -X GET \
    'https://api.equalsmoney.com/v2/webhooks/event-types/{webhookEventTypeId}' \
    -H 'Authorization: ApiKey {apiKey}'
  ```
</CodeGroup>

If your request is successful, you'll receive a `200` response containing details about the webhook event type.

```json theme={null}
{
  "id": "7e71bf60-40f3-489f-bd09-e03035d5cd0a",
  "name": "AccountCreated",
  "enabled": true,
  "createdAt": "2023-03-29T12:46:41.000Z",
  "updatedAt": "2023-03-29T12:46:41.000Z"
}
```
