POST
/
wallet
/
transfer
curl --request POST \
  --url https://staging-biz.coinprofile.co/v2/wallet/transfer \
  --header 'Content-Type: application/json' \
  --header 'X-Api-Key: <api-key>' \
  --header 'X-Api-User: <api-key>' \
  --header 'X-User-Version: <api-key>' \
  --data '{
  "network": "<string>",
  "currency": "<string>",
  "address": "<string>",
  "amount": 123,
  "walletType": "<string>",
  "memo": "<string>"
}'
{
  "success": true,
  "message": "<string>",
  "data": {
    "transferDetail": {
      "transactionId": "<string>",
      "sender": "<string>",
      "type": "<string>",
      "status": "<string>",
      "date": "<string>",
      "toCurrency": "<string>",
      "fromCurrency": "<string>",
      "receiveAmount": 123,
      "amount": 123,
      "address": "<string>",
      "memo": "<string>",
      "username": "<string>"
    }
  }
}

Authorizations

X-Api-User
string
header
required
X-Api-Key
string
header
required
X-User-Version
string
header
required

Body

application/json
network
string
required

Network on which crypto is to be transferred

currency
string
required

Currency of the crypto to be transferred

address
string
required

Wallet address to transfer crypto

amount
number
required

Amount of crypto to be transferred

walletType
string

Wallet type

memo
string

Optional transaction memo

Response

200 - application/json
successful operation
success
boolean
message
string
data
object