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>"
}
}
}
Transfer crypto from one wallet address to another
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>"
}
}
}
successful operation
The response is of type object
.