> ## 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 Partner webhook endpoints

> Lists enabled and disabled owned endpoints using a newest-first opaque cursor. Signing secrets and encrypted material are never returned.



## OpenAPI

````yaml /openapi/openapi.json get /partner/webhooks
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/webhooks:
    get:
      tags:
        - Webhooks
      summary: List Partner webhook endpoints
      description: >-
        Lists enabled and disabled owned endpoints using a newest-first opaque
        cursor. Signing secrets and encrypted material are never returned.
      operationId: get_partner_webhooks
      parameters:
        - 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: Endpoint page
          content:
            application/json:
              schema:
                type: object
                required:
                  - status
                  - data
                properties:
                  data:
                    $ref: '#/components/schemas/PartnerWebhookEndpointsResponse'
                  status:
                    type: string
                    enum:
                      - success
              example:
                data:
                  items:
                    - created_at: '2026-07-12T11:00:00Z'
                      description: Production event receiver
                      event_types:
                        - deposit.success
                        - withdrawal.success
                      id: 01980d95-5537-76aa-88a8-ad59117632ef
                      secret_version: 1
                      status: enabled
                      updated_at: '2026-07-12T11:00:00Z'
                      url: https://partner.example.com/stabyl/events
                  next_cursor: null
                status: success
        '400':
          description: Invalid 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 `webhooks:view`
          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:
    PartnerWebhookEndpointsResponse:
      type: object
      required:
        - items
      properties:
        items:
          type: array
          items:
            $ref: '#/components/schemas/PartnerWebhookEndpointResponse'
        next_cursor:
          type:
            - string
            - 'null'
    PartnerWebhookEndpointResponse:
      type: object
      required:
        - id
        - url
        - status
        - event_types
        - secret_version
        - created_at
        - updated_at
      properties:
        created_at:
          type: string
          format: date-time
        description:
          type:
            - string
            - 'null'
        event_types:
          type: array
          items:
            $ref: '#/components/schemas/PartnerWebhookEventType'
        id:
          type: string
          format: uuid
        secret_version:
          type: integer
          format: int32
        status:
          $ref: '#/components/schemas/PartnerWebhookEndpointStatus'
        updated_at:
          type: string
          format: date-time
        url:
          type: string
    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
    PartnerWebhookEndpointStatus:
      type: string
      enum:
        - enabled
        - disabled
  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

````