v1
latestOpenAPI 3.0.32026-07-26184851.6 MBGateway
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
| Variable | Type | Required | Description |
|---|---|---|---|
| addressId | string | Yes | The unique identifier of the gateway address. |
| walletId | string | Yes | The unique identifier of the wallet to deposit to. |
Body Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| amount | string | Yes | The amount to deposit. |
| reference | string | No | Optional reference code for tracking or reconciliation. |
| note | string | No | Optional note or message to associate with the deposit. |
| metadata | string | No | Optional metadata (as a string or JSON object) for additional information. |
post/v1/addresses/{addressId}/gateway/deposit/{walletId}/network-fee
Request body
Example request
{
"amount": "AMOUNT_TO_DEPOSIT",
"code": "OPTIONAL_2FA_CODE",
"metadata": "OPTIONAL_META_DATA",
"note": "OPTIONAL_NOTE",
"reference": "OPTIONAL_REFERENCE_CODE"
}Response
200
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
}