Skip to main content
POST
/
api
/
v1
/
wallet
/
transfer
cURL
curl --request POST \
  --url https://dash.betteruseblockchain.com/api/v1/wallet/transfer \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "network": "<string>",
  "to": "<string>",
  "fromPrivateKey": "<string>",
  "amount": "<string>"
}'
{
  "data": {
    "txId": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
  • ETH, BSC, POL and XDC Request
  • BTC Request
  • ALGO Request
network
string
required

The blockchain network (e.g., ETH, BSC, POL, XDC, ALGO)

to
string
required

The recipient's address

fromPrivateKey
string
required

The sender's private key

amount
string
required

The amount to transfer

Response

Transfer successful

data
object
I