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
accountId*
String
accountId of the account you are querying for
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": "USDC",
"network": "eth",
"withdrawalFee": 0,
"minimumWithdrawalAmount": 100
},
{
"symbol": "USDC",
"network": "tron",
"withdrawalFee": 0,
"minimumWithdrawalAmount": 100
},
{
"symbol": "USDC",
"network": "xlm",
"withdrawalFee": 0,
"minimumWithdrawalAmount": 100
}
]Returns an array of FeeEstimateObject.
Returns an array of FeeEstimateObject.
Returns an array of FeeEstimateObject.
Returns an array of FeeEstimateObject.
Returns an array of FeeEstimateObject.
Returns an array of FeeEstimateObject.
Returns an array of FeeEstimateObject.
Returns an array of FeeEstimateObject.
Last updated