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.
[
{
"symbol": "USDC",
"network": "tron",
"withdrawalFee": 0,
"minimumWithdrawalAmount": 100
},
{
"symbol": "USDT",
"network": "tron",
"withdrawalFee": 0.003,
"minimumWithdrawalAmount": 100
},
{
"symbol": "TRX",
"network": "tron",
"withdrawalFee": 0,
"minimumWithdrawalAmount": 1
}
]Returns an array of FeeEstimateObject.
[
{
"symbol": "BTC",
"network": "BTC",
"fee": 0.001518092472,
"minimumWithdrawalAmount": 0.001
}
]Returns an array of FeeEstimateObject.
{
"message": "Invalid network eth for symbol BTC"
}Returns an array of FeeEstimateObject.
[
{
"symbol": "USD",
"withdrawalFee": 0,
"minimumWithdrawalAmount": 0
},
{
"symbol": "CAD",
"withdrawalFee": 0,
"minimumWithdrawalAmount": 10
},
{
"symbol": "EUR",
"withdrawalFee": 0,
"minimumWithdrawalAmount": 0
},
{
"symbol": "GBP",
"withdrawalFee": 0,
"minimumWithdrawalAmount": 0
},
{
"symbol": "AUD",
"withdrawalFee": 0,
"minimumWithdrawalAmount": 0
},
{
"symbol": "JPY",
"withdrawalFee": 0,
"minimumWithdrawalAmount": 0
},
{
"symbol": "BTC",
"withdrawalFee": "0.03%",
"network": "BTC",
"minimumWithdrawalAmount": 100
},
{
"symbol": "USDC",
"withdrawalFee": 0,
"network": "eth",
"minimumWithdrawalAmount": 100
},
{
"symbol": "USDC",
"withdrawalFee": 0,
"network": "xlm",
"minimumWithdrawalAmount": 100
},
{
"symbol": "USDC",
"withdrawalFee": 0,
"network": "tron",
"minimumWithdrawalAmount": 100
},
...
]Returns an array of FeeEstimateObject.
{
"message": "Fiat symbols don't have a network"
}Returns an array of FeeEstimateObject.
{
"message": "Please enter an accountId"
}Returns an array of FeeEstimateObject.
{
"message": "Invalid network ABC"
}Returns an array of FeeEstimateObject.
{
"message": "Invalid symbol ABC"
}Last updated