Skip to main content
GET
/
api
/
webhooks
/
{id}
/
deliveries
List Deliveries
curl --request GET \
  --url https://app.opencomputer.dev/api/webhooks/{id}/deliveries \
  --header 'X-API-Key: <api-key>'
{
  "data": [
    {
      "id": "msg_2aB…",
      "attemptId": "atmpt_9fE…",
      "status": "success",
      "responseStatusCode": 200,
      "timestamp": "2026-06-24T12:00:01Z"
    }
  ]
}
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) / redeliver can lag longer (~30s+) — retry with backoff. See Webhooks.
id
string
required
Destination ID (whk_…).
data[].id
string
The message id — the key for get / redeliver; equals the svix-id header on the delivery.
data[].attemptId
string
The id of this specific attempt.
data[].status
string
One of success, pending, or failed.
data[].responseStatusCode
integer
The consumer’s HTTP response code, when the attempt reached it.
{
  "data": [
    {
      "id": "msg_2aB…",
      "attemptId": "atmpt_9fE…",
      "status": "success",
      "responseStatusCode": 200,
      "timestamp": "2026-06-24T12:00:01Z"
    }
  ]
}