> ## Documentation Index
> Fetch the complete documentation index at: https://api-tools.memories.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# List Webhook Deliveries

> Inspect webhook delivery attempts

<Info>
  **Product**: Video Datalake
  **Host**: `https://api.memories.ai/datalake/v1`
  **Auth**: `Authorization: sk-mai-...`
</Info>

Inspect the webhook delivery attempts for an operation (for debugging callbacks). See [Webhooks](/datalake/reference/webhooks) for the retry/backoff schedule.

<Note>
  **Pricing:** Free — management / read (no charge). · See [Pricing](/datalake/pricing) for the full model.
</Note>

## Response Fields

<ResponseField name="deliveries" type="array">Attempt records.</ResponseField>
<ResponseField name="deliveries[].status" type="string">`waiting` | `success` | `fail` | `dead` (retries exhausted).</ResponseField>


## OpenAPI

````yaml GET /datalake/v1/operations/{id}/deliveries
openapi: 3.1.0
info:
  title: Memories.ai DataLake API 2.0
  version: 2026-08
  description: OpenAPI mapping used by Mintlify Try it for the DataLake API 2.0 docs.
servers:
  - url: https://api.memories.ai
security:
  - ApiKeyAuth: []
paths:
  /datalake/v1/operations/{id}/deliveries:
    get:
      tags:
        - Operations & Usage
      summary: Inspect webhook delivery attempts
      description: >-
        Inspect the webhook delivery attempts for an operation (for debugging
        callbacks). See [Webhooks](/datalake/reference/webhooks) for the
        retry/backoff schedule.
      operationId: list_deliveries
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
          description: Operation ID.
      responses:
        '200':
          description: Success
          content:
            application/json:
              example:
                deliveries:
                  - id: …
                    url: https://…
                    status: waiting|success|fail|dead
                    attempt: 3
                    response_code: 500
                    message: …
                    created_at: …
                    updated_at: …
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: Authorization
      description: 'Send `Authorization: sk-mai-...`'

````