---
title: "List deliveries for a repository webhook"
method: GET
path: "/repos/{owner}/{repo}/hooks/{hook_id}/deliveries"
tags: ["repos"]
---

# List deliveries for a repository webhook

`GET /repos/{owner}/{repo}/hooks/{hook_id}/deliveries`

Returns a list of webhook deliveries for a webhook configured in a repository.

## Path parameters

- `owner` string, required
- `repo` string, required
- `hook_id` integer, required

## Query parameters

- `per_page` integer
- `cursor` string
- `status` 'success' | 'failure'

## Response `200`

Response

- HookDeliveryItem[]
  - `id` integer, required — Unique identifier of the webhook 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 webhook delivery occurred.
  - `redelivery` boolean, required — Whether the webhook delivery is a redelivery.
  - `duration` number, required — Time spent delivering.
  - `status` string, required — Describes the response returned after attempting the 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.

## 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)
