v1
latestOpenAPI 3.0.32026-07-26184851.6 MBGateway
Master Wallet Deposit Network Fee
This endpoint allows you to get the network fee for a gateway deposit.
Body Parameters
| Key | Required | Type | Description |
|---|---|---|---|
| amount | true | string | The amount to be deposited. |
| reference | false | string | This would be the transaction reference |
| metadata | false | object | This would be atteched to the transaction payload |
post/v1/gateway/deposit/{walletId}/network-fee
Request body
Example request
{
"amount": "10"
}Response
200
Example response
{
"data": {
"estimatedArrivalTime": 10,
"nativeBalance": "0.498753988998669532",
"nativeBalanceInUSD": "0.4987041135997696650468",
"networkFee": "0.000000000000299004",
"networkFeeInUSD": "0.0000000000002989740996"
},
"message": "Deposit network fee fetched successfully",
"statusCode": 200
}