> ## Documentation Index
> Fetch the complete documentation index at: https://docs.opencomputer.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# List Deliveries

List a destination's most recent delivery attempts (up to 50). Each entry is a delivery-provider
attempt record. The attempt index lags actual delivery by a few seconds, and resolving a single
message ([get](/api-reference/webhooks/delivery-get)) / [redeliver](/api-reference/webhooks/redeliver)
can lag longer (\~30s+) — retry with backoff. See [Webhooks](/sandboxes/webhooks#deliveries).

<ParamField path="id" type="string" required>
  Destination ID (`whk_…`).
</ParamField>

<ResponseField name="data[].id" type="string">
  The message id — the key for [get](/api-reference/webhooks/delivery-get) / [redeliver](/api-reference/webhooks/redeliver); equals the `svix-id` header on the delivery.
</ResponseField>

<ResponseField name="data[].attemptId" type="string">
  The id of this specific attempt.
</ResponseField>

<ResponseField name="data[].status" type="string">
  One of `success`, `pending`, or `failed`.
</ResponseField>

<ResponseField name="data[].responseStatusCode" type="integer">
  The consumer's HTTP response code, when the attempt reached it.
</ResponseField>

<ResponseExample>
  ```json 200 theme={null}
  {
    "data": [
      {
        "id": "msg_2aB…",
        "attemptId": "atmpt_9fE…",
        "status": "success",
        "responseStatusCode": 200,
        "timestamp": "2026-06-24T12:00:01Z"
      }
    ]
  }
  ```
</ResponseExample>
