---
title: "List event deliveries"
method: GET
path: "/event-destinations/{destination_id}/event-deliveries"
tags: ["Event Destinations"]
---

# List event deliveries

`GET /event-destinations/{destination_id}/event-deliveries`

Returns a paginated list of event deliveries for a destination. Supports filtering by delivery status.

## Path parameters

- `destination_id` string, required

## Query parameters

- `limit` union
  - integer
  - string, int32
- `cursor` string
- `status` string
- `type` string

## Response `200`

OK

- PaginatedResponseOfEventDeliveryResponse
  - `data` EventDeliveryResponse[] — Array of resource objects for the current page.
    - `object` string — Always `event_delivery`.
    - `status` string — Delivery status: `success` or `failure`.
    - `event_type` string, nullable — The type of event that was delivered.
    - `event_id` string — The event that was delivered. Prefixed with `evt_`.
    - `event_destination_id` string — The destination the event was delivered to. Prefixed with `evtd_`.
    - `attempts` union — Number of delivery attempts.
      - integer
      - string, int32
    - `created_at` string, date-time — ISO 8601 timestamp of when the resource was created.
    - `delivered_at` string, date-time, nullable — ISO 8601 timestamp of successful delivery, if applicable.
  - `has_more` boolean — `true` if there are more results beyond this page.
  - `next_cursor` string, nullable — Opaque cursor string to pass as the `cursor` query parameter on the next request. `null` when there are no more pages.
  - `request_id` string, nullable — Unique identifier for the API request.

## Other responses

- `400` — Bad request — validation error or malformed input.
- `401` — Unauthorized.
- `403` — Forbidden.
- `404` — Not found — the requested resource does not exist.
- `409` — Conflict — the request is valid but cannot be completed in the current state.
- `422` — Unprocessable content — the request body is understood but contains invalid values.
- `429` — Too many requests or session concurrency exceeded. Retry with backoff; honor Retry-After and RateLimit headers when present.
- `500` — Internal server error.

---

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