POST
/
v1
/
wallets
/
{walletId}
/
salvage
curl --request POST \
  --url https://api.blockradar.co/v1/wallets/{walletId}/salvage \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "amount": "AMOUNT_TO_SEND",
  "blockchainId": "BLOCKCHAIN_ID",
  "recipientAddress": "RECIPIENT_ADDERESS",
  "senderAddress": "BLOCKRADAR_CHILD_ADDRESS",
  "tokenAddress": "TOKEN_ADDRESS"
}'
{
  "message": "Salvage asset initiated successfully",
  "statusCode": 200
}

Authorizations

x-api-key
string
header
required

Path Parameters

walletId
string
required
Example:

"WALLET_ID"

Body

application/json
amount
string
Example:

"AMOUNT_TO_SEND"

blockchainId
string
Example:

"BLOCKCHAIN_ID"

recipientAddress
string
Example:

"RECIPIENT_ADDERESS"

senderAddress
string
Example:

"BLOCKRADAR_CHILD_ADDRESS"

tokenAddress
string
Example:

"TOKEN_ADDRESS"

Response

200 - application/json
200 - Native Asset / 200 - Token
message
string
Example:

"Salvage asset initiated successfully"

statusCode
number
Example:

200