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

# List webhook deliveries

> Returns recent delivery attempts for a webhook endpoint, most recent first.

<ParamField header="x-api-key" type="string" required>
  BOH API key with `admin:webhooks` scope.
</ParamField>

<ParamField path="webhookId" type="string" required>
  Webhook endpoint UUID.
</ParamField>

<ParamField query="limit" type="integer" default="50">
  Number of deliveries to return (1–100).
</ParamField>

<ResponseField name="deliveries" type="object[]">
  <Expandable title="delivery fields">
    <ResponseField name="id" type="string">Delivery UUID.</ResponseField>
    <ResponseField name="event_id" type="string">Source event UUID.</ResponseField>
    <ResponseField name="event_type" type="string">Event type string.</ResponseField>
    <ResponseField name="status" type="string">`PENDING`, `PROCESSING`, `DELIVERED`, `FAILED`, or `DEAD`.</ResponseField>
    <ResponseField name="attempts" type="integer">Number of delivery attempts so far.</ResponseField>
    <ResponseField name="next_retry_at" type="string">When the next attempt is scheduled (ISO 8601).</ResponseField>
    <ResponseField name="last_response_status" type="integer | null">HTTP status returned by your endpoint on the last attempt.</ResponseField>
    <ResponseField name="last_error" type="string | null">Error message from the last failed attempt.</ResponseField>
    <ResponseField name="created_at" type="string">When the delivery was created.</ResponseField>
  </Expandable>
</ResponseField>

<ResponseExample>
  ```json 200 theme={null}
  {
    "deliveries": [
      {
        "id": "del_01j5k...",
        "event_id": "evt_01j5k...",
        "event_type": "inventory_transaction.completed",
        "status": "DELIVERED",
        "attempts": 1,
        "next_retry_at": null,
        "last_response_status": 200,
        "last_error": null,
        "created_at": "2026-08-07T14:30:00.000Z"
      }
    ]
  }
  ```
</ResponseExample>
