POST
/
api
/
v0
/
transfers
/
external-stablecoin-transfer
Create an external stablecoin transfer
curl --request POST \
  --url https://api.devdraft.ai/api/v0/transfers/external-stablecoin-transfer \
  --header 'Content-Type: application/json' \
  --header 'x-client-secret: <api-key>' \
  --data '{
  "sourceWalletId": "<string>",
  "sourceCurrency": "<string>",
  "destinationCurrency": "<string>",
  "blockchain_memo": "<string>",
  "beneficiaryId": "beneficiary_12345",
  "amount": 123
}'

Authorizations

x-client-secret
string
header
required

Your secret API key. Keep this secure and never expose it in client-side code.

Body

application/json
sourceWalletId
string
required

The ID of the source bridge wallet

sourceCurrency
string
required

The source currency

destinationCurrency
string
required

The destination currency

beneficiaryId
string
required

Beneficiary ID for the stablecoin transfer

Example:

"beneficiary_12345"

blockchain_memo
string

Blockchain memo for the transfer

amount
number

The amount to transfer

Response

The external stablecoin transfer has been successfully created.