---
title: "List deliveries for a webhook"
method: GET
path: "/webhooks/{id}/deliveries"
tags: ["Webhook Deliveries"]
---

# List deliveries for a webhook

`GET /webhooks/{id}/deliveries`

Returns a paginated list of deliveries for a single webhook subscription, identified by its id. Each record reports the event, delivery status, attempt count, and the last response code or error. Results can be filtered by `eventId` (exact match against the originating event id).

## Path parameters

- `id` string, uuid, required

## Query parameters

- `page` integer
- `pageSize` integer
- `eventId` string — Exact text match against the originating event id.

## Response `200`

Deliveries

- object
  - `items` object[], required
    - `id` string, uuid, required
    - `endpointId` string, uuid, required
    - `eventId` string, required
    - `eventType` string, required
    - `source` string, required
    - `status` 'pending' | 'success' | 'skipped' | 'dead', required
    - `attempts` number, required
    - `lastStatusCode` number, nullable, required
    - `lastError` string, nullable, required
    - `durationMs` number, nullable, required
    - `isTest` boolean, required
    - `occurredAt` string, required
    - `createdAt` string, required
    - `completedAt` string, nullable, required
    - `createdBy` string, uuid, nullable, required — Id of the parent endpoint's creator. Null when the endpoint row is gone or its creator was never recorded.
  - `pagination` Pagination, required
    - `hasNext` boolean, required
    - `hasPrev` boolean, required
    - `page` integer, required
    - `pageSize` integer, required
    - `pages` integer, required
    - `total` integer, required

## Other responses

- `401` — Unauthorized
- `404` — Not Found
- `500` — Internal Server Error

---

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