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

# List projected Partner webhook events

> Lists slim event history in `occurred_at DESC, id DESC` order. History is eventually consistent with live delivery. Unfiltered results include only wallet and/or exchange domains allowed by the caller's read scopes.



## OpenAPI

````yaml /openapi/openapi.json get /partner/webhook/events
openapi: 3.1.0
info:
  title: Stabyl API
  description: >-
    REST API for approved Stabyl accounts to automate exchange, wallet, and
    non-production simulation workflows.
  contact:
    name: Stabyl Support
    email: support@stabyl.com
  license:
    name: Proprietary
  version: 1.0.0
servers:
  - url: https://api.stabyl.com/v1
    description: Production
  - url: https://api-staging.stabyl.com/v1
    description: Staging
security: []
tags:
  - name: Exchange
    description: Trading market data and order management for account automation.
  - name: Wallets
    description: >-
      Supported routes, deposit destinations, balances, transactions, and saved
      recipients.
  - name: Webhooks
    description: >-
      Outbound event delivery configuration and eventually consistent delivery
      history. Verify Standard Webhooks webhook-id, webhook-timestamp, and
      webhook-signature headers against the unchanged raw request body before
      parsing JSON.
  - name: Simulation
    description: Non-production endpoints for testing integration behavior.
paths:
  /partner/webhook/events:
    get:
      tags:
        - Webhooks
      summary: List projected Partner webhook events
      description: >-
        Lists slim event history in `occurred_at DESC, id DESC` order. History
        is eventually consistent with live delivery. Unfiltered results include
        only wallet and/or exchange domains allowed by the caller's read scopes.
      operationId: get_partner_webhook_events
      parameters:
        - name: type
          in: query
          description: Exact event topic filter.
          required: false
          schema:
            oneOf:
              - type: 'null'
              - $ref: '#/components/schemas/PartnerWebhookEventType'
        - name: date_from
          in: query
          description: >-
            Inclusive lower time bound. Accepts RFC3339 or date-only
            `YYYY-MM-DD`; date-only values start at midnight UTC.
          required: false
          schema:
            type:
              - string
              - 'null'
        - name: date_to
          in: query
          description: >-
            Inclusive upper time bound. Accepts RFC3339 or date-only
            `YYYY-MM-DD`; date-only values include the full UTC day.
          required: false
          schema:
            type:
              - string
              - 'null'
        - name: cursor
          in: query
          description: >-
            Opaque cursor returned as `next_cursor` by the previous response for
            this endpoint.
          required: false
          schema:
            type:
              - string
              - 'null'
        - name: limit
          in: query
          description: Page size, clamped to `1..=100` (default `20`).
          required: false
          schema:
            type:
              - integer
              - 'null'
            format: int32
            minimum: 0
      responses:
        '200':
          description: Event history page
          content:
            application/json:
              schema:
                type: object
                required:
                  - status
                  - data
                properties:
                  data:
                    $ref: '#/components/schemas/PartnerWebhookEventsResponse'
                  status:
                    type: string
                    enum:
                      - success
              example:
                data:
                  items:
                    - emitted_at: '2026-07-12T11:05:00Z'
                      id: d1232fb7-a993-52ec-a8f0-0ec026397553
                      occurred_at: '2026-07-12T11:05:00Z'
                      type: exchange.accepted
                      version: 1
                  next_cursor: null
                status: success
        '400':
          description: Invalid filter or cursor
          content:
            application/json:
              schema:
                type: object
                required:
                  - status
                  - error
                properties:
                  error:
                    type: object
                    required:
                      - code
                      - message
                    properties:
                      code:
                        type: string
                        example: VALIDATION_FAILED
                      message:
                        type: string
                        example: invalid request parameters
                  status:
                    type: string
                    enum:
                      - error
              example:
                error:
                  code: VALIDATION_FAILED
                  message: invalid request parameters
                status: error
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                type: object
                required:
                  - status
                  - error
                properties:
                  error:
                    type: object
                    required:
                      - code
                      - message
                    properties:
                      code:
                        type: string
                        example: UNAUTHORIZED
                      message:
                        type: string
                        example: missing X-Api-Key header
                  status:
                    type: string
                    enum:
                      - error
              example:
                error:
                  code: UNAUTHORIZED
                  message: missing X-Api-Key header
                status: error
        '403':
          description: Missing webhook or requested domain scope
          content:
            application/json:
              schema:
                type: object
                required:
                  - status
                  - error
                properties:
                  error:
                    type: object
                    required:
                      - code
                      - message
                    properties:
                      code:
                        type: string
                        example: MISSING_SCOPE
                      message:
                        type: string
                        example: missing_scope
                  status:
                    type: string
                    enum:
                      - error
              example:
                error:
                  code: MISSING_SCOPE
                  message: missing_scope
                status: error
      security:
        - api_key: []
components:
  schemas:
    PartnerWebhookEventType:
      type: string
      description: Exact Partner webhook topics supported by the V1 public contract.
      enum:
        - deposit.action_required
        - deposit.success
        - deposit.failed
        - withdrawal.success
        - withdrawal.failed
        - exchange.accepted
        - exchange.filled
        - exchange.replaced
        - exchange.cancelled
        - exchange.rejected
    PartnerWebhookEventsResponse:
      type: object
      required:
        - items
      properties:
        items:
          type: array
          items:
            $ref: '#/components/schemas/PartnerWebhookEventListItem'
        next_cursor:
          type:
            - string
            - 'null'
    PartnerWebhookEventListItem:
      type: object
      required:
        - id
        - type
        - version
        - occurred_at
        - emitted_at
      properties:
        emitted_at:
          type: string
          format: date-time
        id:
          type: string
          format: uuid
        occurred_at:
          type: string
          format: date-time
        type:
          $ref: '#/components/schemas/PartnerWebhookEventType'
        version:
          type: integer
          format: int32
  securitySchemes:
    api_key:
      type: apiKey
      in: header
      name: X-Api-Key
      description: >-
        API credential. Withdrawal quote and submit operations additionally
        require the documented Ed25519 timestamp, nonce, and signature headers.
      x-default: sb_test_your_key

````