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

# List Webhook Deliveries

> Returns the webhook deliveries for your entity across all subscriptions, most recent first.

Each row names what the delivery carried — `event_type`, the resource it
described (`resource_object` / `resource_id`), and its `sequence` — so you can
find and [redrive](/api-reference/webhooks/redrive-delivery) a failed delivery
without cross-referencing event IDs. The resource fields and `sequence` are
`null` for events that describe no resource (`webhook.test`,
`message.attempt.exhausted`).


## OpenAPI

````yaml GET /webhooks/deliveries
openapi: 3.1.0
info:
  title: Meow API
  description: >
    ## Overview


    The Meow API provides financial services and billing capabilities for your
    business.


    ### Core Features


    - **Financial data access**: access account information, transactions,
    balances, and payment networks.

    - **Crypto operations**: create and manage crypto contacts, and initiate
    USDC transfers across blockchain networks.


    ### Billing API


    The Billing API lets you create and manage invoices and collect payments:


    - **Product management**: create and manage products with custom pricing.

    - **Customer management**: maintain invoicing customers with their
    addresses.

    - **Invoice creation**: generate invoices with line items, discounts, and
    custom notes.

    - **Payment options**: accept payments via ACH, wire, international wire,
    card, and USDC.

    - **Collection accounts**: configure accounts for payment collection.


    ### Getting Started


    Authenticate by sending your API key in the `x-api-key` request header.


    To scope requests to a specific entity, include the `x-entity-id` header.
    Use the `/api-keys/accessible-entities` endpoint to list all entities
    accessible by your API key.


    ### Error Responses


    Errors return JSON with `code`, `message`, and `debug_message`. The `code`
    aligns with FDX where possible; use `debug_message` for troubleshooting
    only.


    Common error codes:


    - `500`: Internal server error

    - `501`: Subsystem unavailable

    - `503`: Scheduled maintenance

    - `601`: Data not found

    - `602`: Customer not authorized

    - `701`: Account not found

    - `703`: Invalid input (including invalid date ranges)

    - `704`: Account type not supported

    - `705`: Account is closed

    - `801`: Transaction not found
  contact:
    name: Meow
    url: https://meow.com/
    email: support@meow.com
  version: 1.0.0
  license:
    name: Proprietary
    url: https://www.meow.com/terms-of-service
servers:
  - url: https://api.meow.com/v1
    description: Meow API Production
  - url: https://api.sandbox.meow.com/v1
    description: Meow API Sandbox
security:
  - apiKeyAuth: []
tags:
  - name: API Keys
    description: Retrieve metadata about API keys and their accessible entities.
  - name: Accounts
    description: Access and manage accounts.
  - name: Approvals
  - name: Balances
    description: Retrieve account balances and available funds.
  - name: Bills
    description: View and manage bills for vendor payments.
  - name: Cards
    description: Manage virtual and physical cards, and view transactions and insights.
  - name: Collection Accounts
    description: Manage accounts for payment collection.
  - name: Contacts
    description: Manage contacts for crypto and USDC transfers.
  - name: Customers
    description: Manage invoicing customers and their details.
  - name: Entities
  - name: Invoices
    description: Create and manage invoices.
  - name: Limits
  - name: Line Items
    description: Manage invoice line items.
  - name: Partner Onboarding
    description: Onboard entities using your partner API key.
  - name: Partner Webhooks
  - name: Payment Methods
    description: View available payment method types.
  - name: Payment Networks
    description: Manage payment networks and routing information.
  - name: Products
    description: Manage products and pricing for invoicing.
  - name: Routing Numbers
    description: Validate routing numbers and retrieve bank information.
  - name: Security Policies
  - name: Simulations
    description: >-
      Trigger simulated events — inbound transfers, card authorizations,
      application approval — to test integrations end-to-end without real money
      movement. **Not available in production**: these endpoints exist only in
      sandbox and development environments and return `404 Not Found` in
      production.
  - name: Tax Forms
    description: Retrieve IRS tax forms (1099 family) issued for accounts.
  - name: Transactions
    description: Retrieve account transaction history and details.
  - name: Transfers
    description: >-
      Initiate ACH, wire, book, and crypto transfers, and retrieve transfer
      details.
  - name: Webhooks
    description: Manage webhook subscriptions and inspect delivery history.
paths:
  /webhooks/deliveries:
    get:
      tags:
        - Webhooks
      summary: List Webhook Deliveries
      description: >-
        Returns the webhook deliveries for your entity across all subscriptions,
        most recent first.
      operationId: list_deliveries_webhooks_deliveries_get
      parameters:
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 100
            minimum: 1
            default: 20
            title: Limit
        - name: offset
          in: query
          required: false
          schema:
            type: integer
            minimum: 0
            default: 0
            title: Offset
        - $ref: '#/components/parameters/EntityIdHeader'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WebhookDeliveryListResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - apiKeyAuth:
            - webhooks:read
components:
  parameters:
    EntityIdHeader:
      name: x-entity-id
      in: header
      required: false
      schema:
        type: string
        format: uuid
      description: Optional `entity_id` to scope requests to a specific entity.
  schemas:
    WebhookDeliveryListResponse:
      properties:
        items:
          items:
            $ref: '#/components/schemas/WebhookDeliveryResponse'
          type: array
          title: Items
        total_count:
          type: integer
          title: Total Count
        has_more:
          type: boolean
          title: Has More
      type: object
      required:
        - items
        - total_count
        - has_more
      title: WebhookDeliveryListResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    WebhookDeliveryResponse:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        event_id:
          type: string
          format: uuid
          title: Event Id
        subscription_id:
          type: string
          format: uuid
          title: Subscription Id
        status:
          $ref: '#/components/schemas/DeliveryStatus'
        attempt_count:
          type: integer
          title: Attempt Count
        next_attempt_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Next Attempt At
        last_attempted_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Last Attempted At
        created_time:
          type: string
          format: date-time
          title: Created Time
        updated_time:
          type: string
          format: date-time
          title: Updated Time
        event_type:
          $ref: '#/components/schemas/WebhookEventType'
        resource_object:
          anyOf:
            - type: string
            - type: 'null'
          title: Resource Object
        resource_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Resource Id
        sequence:
          anyOf:
            - type: integer
            - type: 'null'
          title: Sequence
      type: object
      required:
        - id
        - event_id
        - subscription_id
        - status
        - attempt_count
        - next_attempt_at
        - last_attempted_at
        - created_time
        - updated_time
        - event_type
        - resource_object
        - resource_id
        - sequence
      title: WebhookDeliveryResponse
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
    DeliveryStatus:
      type: string
      enum:
        - pending
        - retrying
        - in_progress
        - succeeded
        - failed_permanent
      title: DeliveryStatus
      x-enum-varnames:
        - pending
        - retrying
        - in_progress
        - succeeded
        - failed_permanent
    WebhookEventType:
      type: string
      enum:
        - ach_transfer.created
        - ach_transfer.updated
        - wire_transfer.created
        - wire_transfer.updated
        - inbound_ach_transfer.created
        - inbound_ach_transfer.updated
        - inbound_wire_transfer.created
        - inbound_wire_transfer.updated
        - check_deposit.created
        - check_deposit.updated
        - global_account_transfer.created
        - application.created
        - application.under_review
        - application.submitted
        - application.approved
        - application.rejected
        - identity_verification.action_required
        - identity_verification.approved
        - identity_verification.rejected
        - balance.updated
        - message.attempt.exhausted
        - webhook.test
      title: WebhookEventType
      x-enum-varnames:
        - ach_transfer_created
        - ach_transfer_updated
        - wire_transfer_created
        - wire_transfer_updated
        - inbound_ach_transfer_created
        - inbound_ach_transfer_updated
        - inbound_wire_transfer_created
        - inbound_wire_transfer_updated
        - check_deposit_created
        - check_deposit_updated
        - global_account_transfer_created
        - application_created
        - application_under_review
        - application_submitted
        - application_approved
        - application_rejected
        - identity_verification_action_required
        - identity_verification_approved
        - identity_verification_rejected
        - balance_updated
        - message_attempt_exhausted
        - webhook_test
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: Your Meow API key, sent in the `x-api-key` header for authentication.
      x-scopes:
        - accounts:read
        - accounts:write
        - accounts:payment-networks
        - accounts:transactions
        - accounts:balances
        - accounts:statements
        - accounts:tax-documents
        - entity:create
        - transfers:crypto:write
        - transfers:usdc:write
        - transfers:ach:write
        - transfers:wire:write
        - transfers:book:write
        - contacts:read
        - contacts:write
        - billing:products:read
        - billing:products:write
        - billing:customers:read
        - billing:customers:write
        - billing:invoices:read
        - billing:invoices:write
        - billing:accounts:read
        - billpay:read
        - billpay:write
        - onboarding:read
        - onboarding:write
        - cards:read
        - cards:write
        - webhooks:read
        - webhooks:write
        - partner:onboarding:read
        - partner:onboarding:write
        - partner:webhooks:read
        - partner:webhooks:write
        - simulations:write
        - banking:limits:read
        - banking:limits:write

````