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

# Withdraw platform fees

> Initiate a payout of accumulated fees to your bank or wallet. Only the available balance can be withdrawn.



## OpenAPI

````yaml /openapi.json post /api/v1/admin/platform/withdraw
openapi: 3.0.0
info:
  title: Dexxify API
  description: >-
    Crypto Infrastructure API for Africa (Wallets, Payouts, Offramp, Onramp,
    KYC, KYB)
  version: '1.0'
  contact:
    name: Dexxify
    url: https://www.dexxify.com
    email: dexxifyhq@gmail.com
servers: []
security: []
tags: []
paths:
  /api/v1/admin/platform/withdraw:
    post:
      tags:
        - Admin
      summary: Withdraw platform fees
      description: >-
        Initiate a payout of accumulated fees to your bank or wallet. Only the
        available balance can be withdrawn.
      operationId: AdminController_withdraw
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/WithdrawFeesDto'
      responses:
        '201':
          description: Platform fee withdrawal initiated successfully.
        '400':
          description: Validation failed or the request body/params were malformed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponseDto'
        '403':
          description: Authenticated, but not permitted to perform this action.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponseDto'
      security:
        - admin-key: []
components:
  schemas:
    WithdrawFeesDto:
      type: object
      properties:
        amount:
          type: number
          description: Amount to withdraw
          example: 50000
        currency:
          type: string
          description: Currency
          enum:
            - NGN
            - USDT
            - USDC
          example: NGN
        recipient_id:
          type: string
          description: CC recipient ID for the destination bank or wallet
          example: rec_6a0ce75269321c4cb5eafe7d
        narration:
          type: string
          description: Narration on bank statement
          example: Dexxify revenue
      required:
        - amount
        - currency
        - recipient_id
    ErrorResponseDto:
      type: object
      properties:
        success:
          type: boolean
          example: false
        status:
          type: number
          example: 400
        message:
          type: string
          example: Validation failed.
        errors:
          type: object
          example:
            - amount must not be less than 0
        timestamp:
          type: string
          example: '2026-09-17T12:00:00.000Z'
      required:
        - success
        - status
        - message
        - timestamp

````