v1

latestOpenAPI 3.0.32026-07-26184851.6 MB
Gateway

Master Wallet Deposit Network Fee

This endpoint allows you to get the network fee for a gateway deposit.

Body Parameters

KeyRequiredTypeDescription
amounttruestringThe amount to be deposited.
referencefalsestringThis would be the transaction reference
metadatafalseobjectThis would be atteched to the transaction payload
post/v1/gateway/deposit/{walletId}/network-fee

Request body

amountstring

Example request

{
  "amount": "10"
}

Response

200

messagestring
statusCodenumber

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
}