> ## Documentation Index
> Fetch the complete documentation index at: https://docs.collab-kit.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List Deliveries

> View the delivery log for a webhook.

Retrieve the delivery history for a specific webhook, including payload, status, and retry information.

## Endpoint

```
GET /v1/accounts/:accountId/webhooks/:id/deliveries
```

## Authentication

**Bearer token** required.

## Path Parameters

<ParamField path="id" type="string" required>
  The webhook's unique ID.
</ParamField>

## Query Parameters

<ParamField query="limit" type="number" default="50">
  Number of deliveries to return. Maximum `100`.
</ParamField>

<ParamField query="offset" type="number" default="0">
  Number of deliveries to skip.
</ParamField>

## Response

<ResponseField name="deliveries" type="WebhookDelivery[]">
  Array of delivery log entries. See [`WebhookDelivery`](/types/webhooks#webhookdelivery).
</ResponseField>

<ResponseField name="total" type="number">
  Total number of deliveries.
</ResponseField>

<ResponseField name="limit" type="number">
  The limit used.
</ResponseField>

<ResponseField name="offset" type="number">
  The offset used.
</ResponseField>

## Example

<CodeGroup>
  ```bash curl theme={null}
  curl "https://api.collab-kit.com/v1/accounts/${ACCOUNT_ID}/webhooks/wh_abc123/deliveries?limit=10" \
    -H "Authorization: Bearer ${TOKEN}"
  ```

  ```typescript JavaScript theme={null}
  const res = await fetch(
    `https://api.collab-kit.com/v1/accounts/${accountId}/webhooks/wh_abc123/deliveries?limit=10`,
    { headers: { 'Authorization': `Bearer ${token}` } }
  );
  const { data } = await res.json();
  ```
</CodeGroup>

```json Response theme={null}
{
  "type": "response",
  "success": true,
  "description": "Deliveries retrieved",
  "data": {
    "deliveries": [
      {
        "id": "del_001",
        "webhook_id": "wh_abc123",
        "event": "participant.joined",
        "payload": "{\"event\":\"participant.joined\",\"data\":{\"userId\":\"user-001\",\"roomId\":\"c3003c93-...\"}}",
        "status": "success",
        "attempts": 1,
        "last_attempt_at": "2026-05-29T10:06:00.000Z",
        "next_retry_at": null,
        "status_code": 200,
        "created_at": "2026-05-29T10:06:00.000Z"
      }
    ],
    "total": 1,
    "limit": 10,
    "offset": 0
  },
  "error": null
}
```
