---
title: "List events for an endpoint"
method: GET
path: "/v1/webhooks/endpoints/{endpoint_id}/events"
tags: ["Webhooks"]
---

# List events for an endpoint

`GET /v1/webhooks/endpoints/{endpoint_id}/events`

List the events delivered (or attempted) to a specific endpoint. Requires the `webhooks:read` scope.

## Path parameters

- `endpoint_id` string, required

## Query parameters

- `limit` integer
- `offset` integer

## Response `200`

Events for the endpoint.

- WebhookEndpointEventsListResponse — A paginated list of events delivered to an endpoint.
  - `items` WebhookEndpointEventListItem[], required
    - `event_id` string, required — Unique identifier for the event.
    - `event_type` string, required — The event type.
    - `entity_id` string, nullable — The resource the event is about.
    - `attempts` integer, required — Delivery attempts to this endpoint.
    - `success` integer, required — Successful deliveries.
    - `failed` integer, required — Failed deliveries.
    - `last_attempt_status` string, nullable — Status of the last attempt.
    - `last_attempt_http_status` integer, nullable — HTTP status your endpoint returned on the last attempt.
    - `last_attempt_at` string, nullable — When delivery was last attempted, in UTC.
  - `total` integer, required — Total events for this endpoint.
  - `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)
