POST
/
v1
/
wallets
/
{walletId}
/
withdraw
/
network-fee
curl --request POST \
  --url https://api.blockradar.co/v1/wallets/{walletId}/withdraw/network-fee \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "address": "RECIPIENT_ADDRESSS",
  "amount": "AMOUNT_TO_SEND",
  "assetId": "WALLET_ASSET_ID"
}'
{
  "data": {
    "nativeBalance": "0.04998428208321722",
    "networkFee": "0.000000021112014"
  },
  "message": "Network fee fetched successfully",
  "statusCode": 200
}

Authorizations

x-api-key
string
header
required

Path Parameters

walletId
string
required
Example:

"{{walletId}}"

Body

application/json
address
string
Example:

"RECIPIENT_ADDRESSS"

amount
string
Example:

"AMOUNT_TO_SEND"

assetId
string
Example:

"WALLET_ASSET_ID"

Response

200
application/json
200
data
object
message
string
Example:

"Network fee fetched successfully"

statusCode
number
Example:

200