---
title: "Get a delivery with its attempts"
method: GET
path: "/webhooks/{id}/deliveries/{deliveryId}"
tags: ["Webhook Deliveries"]
---

# Get a delivery with its attempts

`GET /webhooks/{id}/deliveries/{deliveryId}`

Returns a single delivery for a webhook subscription along with the full list of captured attempt records. Each attempt includes the request URL, method, headers and body, whether it was signed, and the response status, headers, and snippet.

## Path parameters

- `id` string, uuid, required
- `deliveryId` string, uuid, required

## Response `200`

Delivery with captured attempts

- object
  - `data` 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` object[], required
      - `attemptNo` number, required
      - `requestUrl` string, required
      - `requestMethod` string, required
      - `requestHeaders` object, nullable, required
      - `requestBody` string, nullable, required
      - `signed` boolean, required
      - `responseStatus` number, nullable, required
      - `responseHeaders` object, nullable, required
      - `responseSnippet` string, nullable, required
      - `durationMs` number, nullable, required
      - `error` string, nullable, required
      - `sentAt` string, 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

## Other responses

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

---

[API](https://skmtc.net/mobilerun/apis/workflows.md) · [All operations](https://skmtc.net/mobilerun/apis/workflows/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/mobilerun/workflows/revisions/1bc499aa8f99/schema)
