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

# Get Webhook

> Returns the full configuration for a single webhook, including delivery statistics

## Get Webhook

```text theme={"dark"}
GET /v1/webhooks/:id
```

Returns the full configuration for a single webhook, including delivery statistics.

### Path Parameters

| Parameter | Type | Description    |
| --------- | ---- | -------------- |
| `id`      | uuid | The webhook ID |

### Response

```json theme={"dark"}
{
  "data": {
    "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
    "name": "Error Notifications",
    "description": "Notify Slack on 5xx errors",
    "url": "https://hooks.slack.com/services/T00/B00/xxx",
    "method": "POST",
    "event_types": ["request.error", "request.timeout"],
    "auth_type": "none",
    "request_headers": null,
    "route_filter": null,
    "include_request_body": true,
    "include_response_body": false,
    "include_headers": false,
    "timeout_seconds": 30,
    "retry_on_failure": true,
    "max_retries": 3,
    "enabled": true,
    "last_triggered_at": "2026-03-10T14:22:01.000Z",
    "last_success_at": "2026-03-10T14:22:01.000Z",
    "last_failure_at": "2026-02-28T08:15:00.000Z",
    "trigger_count": 142,
    "success_count": 140,
    "failure_count": 2,
    "created_at": "2026-01-20T10:00:00.000Z"
  },
  "meta": { "request_id": "550e8400-e29b-41d4-a716-446655440000" }
}
```

### Errors

| Status | Type        | Description       |
| ------ | ----------- | ----------------- |
| 404    | `not_found` | Webhook not found |
