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

# Create a direct wallet transfer



## OpenAPI

````yaml /swagger.yml post /api/v0/transfers/direct-wallet
openapi: 3.0.0
info:
  title: Devdraft AI Payment & Business Management API
  description: >-

    A comprehensive payment processing and business management API that enables
    seamless integration of cryptocurrency and traditional payment methods.
        
  version: 1.0.0
  contact: {}
servers:
  - url: https://api.devdraft.ai
    description: Production Server
security: []
tags: []
paths:
  /api/v0/transfers/direct-wallet:
    post:
      tags:
        - Transfers
      summary: Create a direct wallet transfer
      operationId: TransferController_createDirectWalletTransfer
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateDirectWalletTransferDto'
      responses:
        '201':
          description: The transfer has been successfully created.
        '400':
          description: Bad Request - Invalid input
        '404':
          description: Not Found - Bridge wallet not found
      security:
        - x-client-secret: []
        - x-client-key: []
components:
  schemas:
    CreateDirectWalletTransferDto:
      type: object
      properties:
        walletId:
          type: string
          description: The ID of the bridge wallet to transfer from
        network:
          type: string
          description: The network to use for the transfer
        stableCoinCurrency:
          type: string
          description: The stablecoin currency to use
        amount:
          type: number
          description: The amount to transfer
      required:
        - walletId
        - network
        - stableCoinCurrency
        - amount
  securitySchemes:
    x-client-secret:
      type: apiKey
      in: header
      name: x-client-secret
      description: >-
        Your secret API key. Keep this secure and never expose it in client-side
        code.
    x-client-key:
      type: apiKey
      in: header
      name: x-client-key
      description: Your unique client API key. Obtain this from your Devdraft AI dashboard.

````