v1
latestOpenAPI 3.0.32026-07-26184851.6 MBGateway
Master Wallet Withdraw Network Fee
This endpoint allows you get network fee for a gateway withdrawal.
Body Parameters
| Key | Required | Type | Description |
|---|---|---|---|
| amount | true | string | The amount to be deposited. |
| address | true | string | The receipient address. |
| blockchain | true | string | The blockchain network. |
| reference | false | string | This would be the transaction reference |
| metadata | false | object | This would be atteched to the transaction payload |
post/v1/gateway/withdraw/network-fee
Request body
Example request
{
"amount": "10"
}Response
200
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
}