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

# Get partner withdrawals



## OpenAPI

````yaml https://api-partner.houdiniswap.com/v2/openapi.json get /withdrawals
openapi: 3.0.0
info:
  title: houdiniswap-backend
  version: 2.1.1
  description: Houdiniswap Backend
  license:
    name: ISC
  contact: {}
servers:
  - url: https://api-partner.houdiniswap.com/v2
security: []
paths:
  /withdrawals:
    get:
      tags:
        - Withdrawals
      summary: Get partner withdrawals
      operationId: GetWithdrawals
      parameters:
        - in: query
          name: page
          required: false
          schema:
            default: 1
            format: double
            type: number
            minimum: 1
            maximum: 10000
        - in: query
          name: pageSize
          required: false
          schema:
            default: 20
            format: double
            type: number
            minimum: 1
            maximum: 100
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WithdrawalsResponse'
        '403':
          description: Access Denied
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '422':
          description: Validation Failed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidationError'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
        - apiKey: []
components:
  schemas:
    WithdrawalsResponse:
      properties:
        withdrawals:
          items:
            $ref: '#/components/schemas/WithdrawalItemResponse'
          type: array
        total:
          type: number
          format: double
        totalPages:
          type: number
          format: double
      required:
        - withdrawals
        - total
        - totalPages
      type: object
      additionalProperties: false
    ErrorResponse:
      properties:
        message:
          type: string
        code:
          type: string
        requestId:
          type: string
      required:
        - message
        - code
      type: object
      additionalProperties: false
    ValidationError:
      properties:
        message:
          type: string
        code:
          type: string
        requestId:
          type: string
        fields:
          $ref: '#/components/schemas/FieldErrors'
      required:
        - message
        - code
        - fields
      type: object
      additionalProperties: false
    WithdrawalItemResponse:
      properties:
        id:
          type: string
        amountUsd:
          type: number
          format: double
        status:
          type: string
          enum:
            - pending
            - processing
            - completed
            - failed
        batchId:
          type: string
        processedTx:
          type: string
        created:
          type: string
          format: date-time
      required:
        - id
        - amountUsd
        - status
        - batchId
        - created
      type: object
      additionalProperties: false
    FieldErrors:
      properties: {}
      type: object
      additionalProperties:
        properties:
          value: {}
          message:
            type: string
        required:
          - message
        type: object
  securitySchemes:
    apiKey:
      type: apiKey
      name: Authorization
      in: header

````