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

# Get Withdrawal



## OpenAPI

````yaml /api-reference/manexx-merchant-api.json get /api/v1/external/withdrawals/{withdrawal_uuid}
openapi: 3.0.3
info:
  title: Manexx Merchant API
  version: 0.1.0
  description: Public merchant integration API (X-Api-Key).
servers:
  - url: https://api.manexx.com
security: []
tags:
  - name: Merchant API
    description: Merchant API
paths:
  /api/v1/external/withdrawals/{withdrawal_uuid}:
    get:
      tags:
        - Merchant API
      summary: Get Withdrawal
      operationId: get_withdrawal_api_v1_external_withdrawals__withdrawal_uuid__get
      parameters:
        - name: withdrawal_uuid
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Withdrawal Uuid
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Success_WithdrawalRead_'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKeyHeader: []
components:
  schemas:
    Success_WithdrawalRead_:
      properties:
        success:
          type: boolean
          title: Success
          default: true
        data:
          $ref: '#/components/schemas/WithdrawalRead'
      type: object
      required:
        - data
      title: Success[WithdrawalRead]
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    WithdrawalRead:
      properties:
        uuid:
          type: string
          format: uuid
          title: Uuid
          description: Withdrawal id.
          example: 3af1c2d4-5e6f-7a8b-9c0d-1e2f3a4b5c6d
        actor:
          type: string
          title: Actor
          description: Who requested it.
          example: merchant
        balance_type:
          $ref: '#/components/schemas/BalanceType'
          example: usdt
        token:
          type: string
          title: Token
          description: Payout asset.
          example: USDT
        network:
          type: string
          title: Network
          description: Blockchain network.
          example: TRC20
        logo_url:
          title: Logo Url
          description: Network/method logo.
          nullable: true
          type: string
          example: https://cdn.manexx.com/networks/trc20.png
        address:
          type: string
          title: Address
          description: Destination wallet address.
          example: TQ...destination
        amount:
          type: string
          title: Amount
          description: Requested amount.
          example: '500.00'
        network_commission:
          type: string
          title: Network Commission
          description: Network fee deducted.
          example: '1.00'
        amount_to_send:
          type: string
          title: Amount To Send
          description: Actually sent (amount minus network_commission).
          example: '499.00'
        status:
          $ref: '#/components/schemas/WithdrawalStatus'
          example: approved
        tx_hash:
          title: Tx Hash
          description: On-chain transaction hash. Present once approved.
          nullable: true
          type: string
          example: a1b2c3...
        reject_code:
          description: Rejection code (when rejected).
          nullable: true
          allOf:
            - $ref: '#/components/schemas/WithdrawalRejectCode'
        reject_reason:
          title: Reject Reason
          description: Free-text rejection reason (when no code applies).
          nullable: true
          type: string
        created_at:
          type: string
          format: date-time
          title: Created At
          example: '2026-07-16T09:24:11Z'
        processed_at:
          title: Processed At
          nullable: true
          type: string
          format: date-time
          example: '2026-07-16T09:40:02Z'
      type: object
      required:
        - uuid
        - actor
        - balance_type
        - token
        - network
        - address
        - amount
        - network_commission
        - amount_to_send
        - status
        - created_at
      title: WithdrawalRead
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
    BalanceType:
      type: string
      enum:
        - usdt
      title: BalanceType
      description: Balance type. Merchant withdrawals are always USDT.
    WithdrawalStatus:
      type: string
      enum:
        - pending
        - approved
        - rejected
      title: WithdrawalStatus
    WithdrawalRejectCode:
      type: string
      enum:
        - transfer_error
        - invalid_address
        - suspicious_activity
        - amount_issue
        - verification_required
      title: WithdrawalRejectCode
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: X-Api-Key

````