---
title: "Get a delivery for an app webhook"
method: GET
path: "/app/hook/deliveries/{delivery_id}"
tags: ["apps"]
---

# Get a delivery for an app webhook

`GET /app/hook/deliveries/{delivery_id}`

Returns a delivery for the webhook configured for a GitHub App.

You must use a [JWT](https://docs.github.com/apps/building-github-apps/authenticating-with-github-apps/#authenticating-as-a-github-app) to access this endpoint.

## Path parameters

- `delivery_id` integer, required

## Response `200`

Response

- HookDelivery — Delivery made by a webhook.
  - `id` integer, required — Unique identifier of the delivery.
  - `guid` string, required — Unique identifier for the event (shared with all deliveries for all webhooks that subscribe to this event).
  - `delivered_at` string, date-time, required — Time when the delivery was delivered.
  - `redelivery` boolean, required — Whether the delivery is a redelivery.
  - `duration` number, required — Time spent delivering.
  - `status` string, required — Description of the status of the attempted delivery
  - `status_code` integer, required — Status code received when delivery was made.
  - `event` string, required — The event that triggered the delivery.
  - `action` string, nullable, required — The type of activity for the event that triggered the delivery.
  - `installation_id` integer, nullable, required — The id of the GitHub App installation associated with this event.
  - `repository_id` integer, nullable, required — The id of the repository associated with this event.
  - `throttled_at` string, date-time, nullable — Time when the webhook delivery was throttled.
  - `url` string — The URL target of the delivery.
  - `request` object, required
    - `headers` object, nullable, required — The request headers sent with the webhook delivery.
    - `payload` object, nullable, required — The webhook payload.
  - `response` object, required
    - `headers` object, nullable, required — The response headers received when the delivery was made.
    - `payload` string, nullable, required — The response payload received.

## Other responses

- `400` — Bad Request
- `422` — Validation failed, or the endpoint has been spammed.

---

[API](https://skmtc.net/github/apis/rest-api.md) · [All operations](https://skmtc.net/github/apis/rest-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/github/rest-api/versions/80850db290cd/schema)
