> ## 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 Logs

> Returns paginated delivery logs for a specific webhook

## Get Webhook Logs

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

Returns paginated delivery logs for a specific webhook, showing every delivery attempt with status and timing.

### Path Parameters

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

### Query Parameters

| Parameter  | Type    | Default | Description              |
| ---------- | ------- | ------- | ------------------------ |
| `page`     | integer | `1`     | Page number              |
| `per_page` | integer | `20`    | Items per page (max 100) |

### Response

```json theme={"dark"}
{
  "data": [
    {
      "id": "log-uuid",
      "request_method": "POST",
      "request_path": "/services/T00/B00/xxx",
      "request_ip": "203.0.113.1",
      "response_status": 200,
      "response_time_ms": 342,
      "executed_at": "2026-03-10T14:22:01.000Z",
      "success": true,
      "error_message": null
    }
  ],
  "meta": {
    "total": 142,
    "page": 1,
    "per_page": 20,
    "total_pages": 8,
    "request_id": "550e8400-e29b-41d4-a716-446655440000"
  }
}
```

### Errors

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