Saltar al contenido principal
POST
/
v1
/
wallets
/
{walletId}
/
withdraw
/
network-fee
Master Wallet 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
}

Autorizaciones

x-api-key
string
header
requerido

Parámetros de ruta

walletId
string
requerido
Ejemplo:

"{{walletId}}"

Cuerpo

application/json
address
string
Ejemplo:

"RECIPIENT_ADDRESSS"

amount
string
Ejemplo:

"AMOUNT_TO_SEND"

assetId
string
Ejemplo:

"WALLET_ASSET_ID"

Respuesta

200

data
object
message
string
Ejemplo:

"Network fee fetched successfully"

statusCode
number
Ejemplo:

200