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

# Retrieve a Webhook

> Retrieve details for a specific webhook configuration

## Description

This endpoint retrieves details for a specific webhook configuration.

## Authentication

Requires API credentials:

* Client ID (header)
* Access Key (header)

## Path Parameters

| Parameter    | Type   | Required | Description                                      |
| ------------ | ------ | -------- | ------------------------------------------------ |
| `webhook_id` | string | Yes      | The unique identifier of the webhook to retrieve |

## Response

### Success Response (200 OK)

Returns webhook configuration details in JSON format.

```json theme={null}
{
  "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
  "name": "string",
  "webhook_url": "http://example.com/",
  "events": [
    "task-status-updated",
    "order-status-updated"
  ],
  "env_type": "dev",
  "created_at": "2022-05-04T11:30:00Z",
  "updated_at": "2022-05-04T12:00:00Z"
}
```

### Error Responses

**401 Unauthorized:** Authentication failed - invalid or missing credentials.

**403 Forbidden:** Access forbidden - insufficient permissions.

**404 Not Found:** Webhook not found.
