Get Withdrawal Fee Estimate

Endpoint to look up Fiat and Crypto withdrawal fees

Query Fiat and Crypto withdrawal fees

GET https://api.aquanow.io/accounts/v1/withdrawFeeEstimate

To view example requests for this endpoint, visit Aquanow's Postman documentation.

Query Parameters

NameTypeDescription

symbol

String

e.g., BTC

All uppercase letters. For the fee associated with a specific symbol. Endpoint will return all symbols and their fee if not specific.

network

String

e.g., XLM

For the network fee associated with a specific network.

Endpoint will return all networks and their fee if not specific. NOTE: Only applicable to crypto withdrawal fee estimates.

Returns an array of FeeEstimateObject.

[
  {
    "symbol": "BTC",
    "network": "BTC",
    "fee": 0.001518092472,
    "minimumWithdrawalAmount": 0.001
  }
]

Last updated