POST
/
v1
/
wallets
/
{walletId}
/
addresses
/
{addressId}
/
withdraw
/
network-fee
curl --request POST \
  --url https://api.blockradar.co/v1/wallets/{walletId}/addresses/{addressId}/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
addressId
string
required

Body

application/json
address
string
amount
string
assetId
string

Response

200
application/json
200
data
object
message
string
statusCode
number