v1

latestOpenAPI 3.0.32026-07-26184851.6 MB
Gateway

Child Address Deposit Network Fee

Deposit Network Fee

This endpoint allows you to calculate or retrieve the network fee required to deposit funds into a specific gateway address within your Blockradar account. It is typically used before initiating a deposit to ensure you are aware of the associated network costs.


Path Variables

VariableTypeRequiredDescription
addressIdstringYesThe unique identifier of the gateway address.
walletIdstringYesThe unique identifier of the wallet to deposit to.

Body Parameters

ParameterTypeRequiredDescription
amountstringYesThe amount to deposit.
referencestringNoOptional reference code for tracking or reconciliation.
notestringNoOptional note or message to associate with the deposit.
metadatastringNoOptional metadata (as a string or JSON object) for additional information.
post/v1/addresses/{addressId}/gateway/deposit/{walletId}/network-fee

Request body

amountstring
codestring
metadatastring
notestring
referencestring

Example request

{
  "amount": "AMOUNT_TO_DEPOSIT",
  "code": "OPTIONAL_2FA_CODE",
  "metadata": "OPTIONAL_META_DATA",
  "note": "OPTIONAL_NOTE",
  "reference": "OPTIONAL_REFERENCE_CODE"
}

Response

200

messagestring
statusCodenumber

Example response

{
  "data": {
    "estimatedArrivalTime": 38,
    "nativeBalance": "0.498753988996157136",
    "nativeBalanceInUSD": "6.8329296492473527632",
    "networkFee": "0.000000000000181708",
    "networkFeeInUSD": "0.0000000000024893996",
    "transactionFee": "0"
  },
  "message": "Gateway deposit network fee fetched successfully",
  "statusCode": 200
}