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

# List persisted webhook events for the calling client

> Returns webhook events delivered (or attempted) to the caller's webhook URL. Use for backfill or replay verification. Results are id-desc; pass the last `nextCursor` to paginate.



## OpenAPI

````yaml https://raw.githubusercontent.com/rhinestonewtf/openapi/refs/heads/main/deposit-service.json get /webhooks/events
openapi: 3.1.0
info:
  title: Deposit Service API
  version: 1.0.0
  description: >-
    Cross-chain deposit processing service with automatic token bridging and gas
    sponsorship
servers:
  - url: https://v1.orchestrator.rhinestone.dev/deposit-processor
security: []
paths:
  /webhooks/events:
    get:
      tags:
        - Webhooks
      summary: List persisted webhook events for the calling client
      description: >-
        Returns webhook events delivered (or attempted) to the caller's webhook
        URL. Use for backfill or replay verification. Results are id-desc; pass
        the last `nextCursor` to paginate.
      parameters:
        - schema:
            type: string
            format: date-time
            description: Return events created at or after this ISO timestamp
          required: false
          description: Return events created at or after this ISO timestamp
          name: since
          in: query
        - schema:
            type: string
            minLength: 1
            description: Filter by webhook type (e.g. "bridge-started")
          required: false
          description: Filter by webhook type (e.g. "bridge-started")
          name: type
          in: query
        - schema:
            type: integer
            minimum: 1
            maximum: 200
            default: 50
            description: Max events to return (1-200, default 50)
            example: 50
          required: false
          description: Max events to return (1-200, default 50)
          name: limit
          in: query
        - schema:
            type: string
            minLength: 1
            description: >-
              Opaque cursor from a previous page. Returned events are id-desc;
              pass the lowest id from the previous page.
          required: false
          description: >-
            Opaque cursor from a previous page. Returned events are id-desc;
            pass the lowest id from the previous page.
          name: cursor
          in: query
        - schema:
            type: string
            description: API key for authentication
            example: your-api-key
          required: true
          description: API key for authentication
          name: x-api-key
          in: header
        - schema:
            type: string
            pattern: ^\d{4}-\d{2}\.[a-z0-9]+$
            description: >-
              API version identifier (e.g. "2026-04.amazon"). Optional today,
              will become required in a future release.
            example: 2026-04.amazon
          required: false
          description: >-
            API version identifier (e.g. "2026-04.amazon"). Optional today, will
            become required in a future release.
          name: x-api-version
          in: header
      responses:
        '200':
          description: Webhook events list
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListWebhookEventsResponse'
        '400':
          description: Invalid API key or malformed query
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '403':
          description: API key lacks required deposits scope
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    ListWebhookEventsResponse:
      type: object
      properties:
        events:
          type: array
          items:
            $ref: '#/components/schemas/WebhookEvent'
        nextCursor:
          type: string
          nullable: true
      required:
        - events
        - nextCursor
    ErrorResponse:
      type: object
      properties:
        error:
          type: string
        details:
          type: array
          items:
            type: object
            properties:
              message:
                type: string
              path:
                type: array
                items:
                  anyOf:
                    - type: string
                    - type: number
              code:
                type: string
            required:
              - message
      required:
        - error
    WebhookEvent:
      type: object
      properties:
        eventId:
          type: string
        type:
          type: string
        time:
          type: string
        status:
          type: string
          enum:
            - pending
            - delivered
            - failed
        attempts:
          type: number
        payload:
          nullable: true
        depositId:
          type: string
          nullable: true
        deliveredAt:
          type: string
          nullable: true
      required:
        - eventId
        - type
        - time
        - status
        - attempts
        - depositId
        - deliveredAt

````