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

# List Stripe Payouts



## OpenAPI

````yaml POST /psp-payouts
openapi: 3.1.0
info:
  title: NestVet API
  version: '1.8'
  description: >-
    API for managing subscriptions, pet benefits, payment plans, products,
    invoices, and Stripe-integrated financial data.
servers:
  - url: https://nestvet.com/api/1.1/wf
security: []
paths:
  /psp-payouts:
    post:
      summary: List Stripe Payouts
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PayoutsRequest'
      responses:
        '200':
          description: Stripe payouts response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PayoutsResponse'
      security:
        - bearerAuth: []
components:
  schemas:
    PayoutsRequest:
      allOf:
        - $ref: '#/components/schemas/PaginationRequest'
        - type: object
          required:
            - clinic
          properties:
            clinic:
              type: string
            starting_after:
              type: string
            created.gte:
              type: integer
              format: int64
              description: Unix timestamp
            created.lte:
              type: integer
              format: int64
              description: Unix timestamp
            status:
              type: string
              enum:
                - pending
                - paid
                - failed
                - canceled
    PayoutsResponse:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/Payout'
        has_more:
          type: boolean
    PaginationRequest:
      type: object
      required:
        - organization
        - limit
        - offset
      properties:
        organization:
          type: string
        limit:
          type: integer
          format: int32
        offset:
          type: integer
          format: int32
    Payout:
      type: object
      additionalProperties: true
      properties:
        id:
          type: string
        object:
          type: string
          enum:
            - payout
        amount:
          type: integer
        arrival_date:
          type: integer
        automatic:
          type: boolean
        balance_transaction:
          type: string
        created:
          type: integer
          description: The timestamp of the payout creation in seconds since the Unix epoch
        currency:
          type: string
        description:
          type: string
          nullable: true
        destination:
          type: string
          nullable: true
        livemode:
          type: boolean
        metadata:
          type: object
          additionalProperties:
            type: string
        method:
          type: string
        reconciliation_status:
          type: string
        source_type:
          type: string
        status:
          type: string
        trace_id:
          type: object
          properties:
            status:
              type: string
            value:
              type: string
        type:
          type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````