---
title: "List Deliveries"
method: GET
path: "/webhooks/{id}/deliveries"
tags: ["Webhooks"]
---

# List Deliveries

`GET /webhooks/{id}/deliveries`

Returns a paginated list of delivery attempts for a webhook, ordered by most recent first. Includes the request payload, response body, response code, and timing for each attempt.

## Query parameters

- `first` integer
- `after` string

## Response `200`

deliveries listed

- object
  - `data` WebhookDelivery[], required
    - `request_body` unknown, required
    - `resource_id` string, required — ID of the resource that triggered the webhook.
    - `response_body` unknown, required
    - `response_code` number, required — HTTP response code received from the webhook endpoint.
    - `sent_at` string, required — When the webhook was sent, as an ISO 8601 timestamp.
    - `total_time` number, required — Total time taken to send the webhook request, in seconds.
  - `page_info` object, required
    - `end_cursor` string, nullable, required
    - `has_next_page` boolean, required
    - `has_previous_page` boolean, required
    - `start_cursor` string, nullable, required

## Other responses

- `401` — Unauthorized
- `403` — Forbidden
- `404` — Resource not found

---

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