Skip to main content
POST
/
v1
/
addresses
/
{addressId}
/
gateway
/
deposit
/
{walletId}
/
network-fee
Child Address Deposit Network Fee
curl --request POST \
  --url https://api.blockradar.co/v1/addresses/{addressId}/gateway/deposit/{walletId}/network-fee \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "amount": "AMOUNT_TO_DEPOSIT",
  "code": "OPTIONAL_2FA_CODE",
  "metadata": "OPTIONAL_META_DATA",
  "note": "OPTIONAL_NOTE",
  "reference": "OPTIONAL_REFERENCE_CODE"
}
'
{
  "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
}

Authorizations

x-api-key
string
header
required

Path Parameters

addressId
string
required
Example:

"YOUR_ADDRESS_ID"

walletId
string
required
Example:

"YOUR_WALLET_ID"

Body

application/json
amount
string
Example:

"AMOUNT_TO_DEPOSIT"

code
string
Example:

"OPTIONAL_2FA_CODE"

metadata
string
Example:

"OPTIONAL_META_DATA"

note
string
Example:

"OPTIONAL_NOTE"

reference
string
Example:

"OPTIONAL_REFERENCE_CODE"

Response

200 - application/json

200

data
object
message
string
Example:

"Gateway deposit network fee fetched successfully"

statusCode
number
Example:

200