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

# List Webhook Deliveries V1

> Audit log of delivery attempts against a webhook endpoint. Useful for debugging 'why didn't my webhook fire?' — surfaces the HTTP status the receiver returned,…

Audit log of delivery attempts against a webhook endpoint.

Useful for debugging 'why didn't my webhook fire?' — surfaces the
HTTP status the receiver returned, retry counts, and the next retry
time on failed rows. Sorted newest-first.

### Path parameters

<ParamField path="endpoint_id" type="string (uuid)" required />

### Query parameters

<ParamField query="limit" type="integer" />

<ParamField query="status" type="string,null">
  Filter to one of: pending, success, failed.
</ParamField>

### Response

`WebhookDeliverySummary[]` — each element:

<ResponseField name="id" type="string" required />

<ResponseField name="endpoint_id" type="string" required />

<ResponseField name="event_type" type="string" required />

<ResponseField name="status" type="string" required>
  pending | success | failed
</ResponseField>

<ResponseField name="response_code" type="integer,null">
  HTTP status from the receiver, if a response was received.
</ResponseField>

<ResponseField name="attempts" type="integer" required>
  Total attempts so far (1..3).
</ResponseField>

<ResponseField name="next_retry_at" type="string,null">
  Scheduled retry time, ISO 8601 UTC, when status == 'failed'.
</ResponseField>

<ResponseField name="created_at" type="string" required />

### Status codes

| Code  | Meaning             |
| ----- | ------------------- |
| `200` | Successful Response |
| `422` | Validation Error    |

<RequestExample>
  ```bash cURL theme={null}
  curl --request GET \
    --url 'https://api.computer.stateset.app/api/v1/webhooks/{endpoint_id}/deliveries' \
    --header 'X-API-Key: YOUR_API_KEY'
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  [
    {
      "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
      "endpoint_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
      "event_type": "string",
      "status": "pending",
      "response_code": 1,
      "attempts": 1,
      "next_retry_at": "2026-08-31T14:22:05Z",
      "created_at": "2026-08-31T14:22:05Z"
    }
  ]
  ```
</ResponseExample>
