POST
/
api
/
v0
/
transfers
/
direct-wallet
Create a direct wallet transfer
curl --request POST \
  --url https://api.devdraft.ai/api/v0/transfers/direct-wallet \
  --header 'Content-Type: application/json' \
  --header 'x-client-secret: <api-key>' \
  --data '{
  "walletId": "<string>",
  "network": "<string>",
  "stableCoinCurrency": "<string>",
  "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
walletId
string
required

The ID of the bridge wallet to transfer from

network
string
required

The network to use for the transfer

stableCoinCurrency
string
required

The stablecoin currency to use

amount
number
required

The amount to transfer

Response

The transfer has been successfully created.