---
title: "List webhook events"
method: GET
path: "/v1/webhooks/events"
tags: ["Webhooks"]
---

# List webhook events

`GET /v1/webhooks/events`

List all webhook events for your organization, across every endpoint. Requires the `webhooks:read` scope.

## Query parameters

- `limit` integer
- `offset` integer

## Response `200`

Your webhook events.

- WebhookEventsListResponse — A paginated list of webhook events.
  - `items` WebhookEventListItem[], required
    - `event_id` string, required — Unique identifier for the event.
    - `event_type` string, required — The event type.
    - `entity_type` string, nullable — The kind of resource the event is about.
    - `entity_id` string, nullable — The resource the event is about.
    - `created_at` string, required — When the event occurred, in UTC.
    - `attempts` integer, required — Total delivery attempts across endpoints.
    - `success` integer, required — Successful deliveries.
    - `failed` integer, required — Failed deliveries.
    - `last_attempt_at` string, nullable — When delivery was last attempted, in UTC.
  - `total` integer, required — Total events matching the query.
  - `limit` integer, required — The page size applied.
  - `offset` integer, required — The offset applied.

---

[API](https://skmtc.dev/bachs/apis/bachs-api.md) · [All operations](https://skmtc.dev/bachs/apis/bachs-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/bachs/bachs-api/revisions/f29efa8a22df/schema)
