v1

latestOpenAPI 3.0.32026-07-26184851.6 MB
Gateway

Master Wallet Withdraw Network Fee

This endpoint allows you get network fee for a gateway withdrawal.

Body Parameters

KeyRequiredTypeDescription
amounttruestringThe amount to be deposited.
addresstruestringThe receipient address.
blockchaintruestringThe blockchain network.
referencefalsestringThis would be the transaction reference
metadatafalseobjectThis would be atteched to the transaction payload
post/v1/gateway/withdraw/network-fee

Request body

amountstring

Example request

{
  "amount": "10"
}

Response

200

messagestring
statusCodenumber

Example response

{
  "data": {
    "estimatedArrivalTime": 10,
    "nativeBalance": "0.044395941712804974",
    "nativeBalanceInUSD": "0.0443915021186336935026",
    "networkFee": "0.00000013083861216",
    "networkFeeInUSD": "0.000000130825528298784",
    "transactionFee": 2.005999
  },
  "message": "Withdraw network fees calculated successfully",
  "statusCode": 200
}