> ## 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 an external stablecoin transfer



## OpenAPI

````yaml /swagger.yml post /api/v0/transfers/external-stablecoin-transfer
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/external-stablecoin-transfer:
    post:
      tags:
        - Transfers
      summary: Create an external stablecoin transfer
      operationId: TransferController_createExternalStablecoinTransfer
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateExternalStablecoinTransferDto'
      responses:
        '201':
          description: The external stablecoin 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:
    CreateExternalStablecoinTransferDto:
      type: object
      properties:
        sourceWalletId:
          type: string
          description: The ID of the source bridge wallet
        sourceCurrency:
          type: string
          description: The source currency
        destinationCurrency:
          type: string
          description: The destination currency
        blockchain_memo:
          type: string
          description: Blockchain memo for the transfer
        beneficiaryId:
          type: string
          description: Beneficiary ID for the stablecoin transfer
          example: beneficiary_12345
        amount:
          type: number
          description: The amount to transfer
      required:
        - sourceWalletId
        - sourceCurrency
        - destinationCurrency
        - beneficiaryId
  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.

````