Aquanow
Latest
Latest
  • About Aquanow
    • Introduction
  • Version differences
    • Latest vs Legacy
  • User Guide
    • Trading
      • Order Book
      • Submitting Orders
      • Order Types / Strategies
      • Trade Management
    • Automated Conversions
      • Autopilot
    • Deposits & Withdrawals
      • Deposits
      • Withdrawals
      • Balances
      • Transaction History
      • Approval Workflows
    • Account Management
      • CSV Exports
      • Address Management
      • IP Whitelisting
      • User List
  • Integration Guide
    • API Keys
      • Rate and API Key Limits
    • Authentication
    • Staging environment
    • Postman
    • Supported Assets and Tickers
    • Testnet and Faucet
  • API Endpoints | V1.0
    • Accounts API
      • Trade Credit Balances
      • Company Profile Configuration
        • Company profile settings
        • Accounts settings
        • Users settings
      • User Balances
      • API Keys
    • Transaction API
      • Get Transactions
      • Create Transactions
      • Transfers
      • Approvals
      • Get Withdrawal Fee Estimate
    • Executions API
      • GET or Query Orders
      • Trading Strategies
    • Market Data API
      • Authorized Market Data
  • API Endpoints | V2.0
    • Transaction API
      • Get Transactions
    • Executions API
      • GET or Query Orders
      • Trading Strategies
  • Webhooks
    • Subscribing to Webhooks
    • Transaction Webhook
  • Websockets
    • Introduction
    • Authenticated Websockets
      • Market Data Websocket
      • Reporting Websocket
  • Data Objects & Statuses
    • Websocket Objects
    • Transaction Objects
      • Approval Objects
      • Fee Estimate Objects
    • Accounts Objects
    • Executions Objects
      • Duration Order Objects
    • Market Data Objects
    • Statuses
  • FAQs and Misc. Information
    • FAQs
    • Misc. Information
Powered by GitBook
On this page
  1. API Endpoints | V1.0
  2. Transaction API

Get Withdrawal Fee Estimate

Endpoint to look up Fiat and Crypto withdrawal fees

PreviousApprovalsNextExecutions API

Last updated 11 months ago

Query Fiat and Crypto withdrawal fees

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

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

Query Parameters

Name
Type
Description

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 .

[
    {
        "symbol": "USDC",
        "network": "eth",
        "withdrawalFee": 0,
        "minimumWithdrawalAmount": 100
    },
    {
        "symbol": "USDC",
        "network": "tron",
        "withdrawalFee": 0,
        "minimumWithdrawalAmount": 100
    },
    {
        "symbol": "USDC",
        "network": "xlm",
        "withdrawalFee": 0,
        "minimumWithdrawalAmount": 100
    }
]
[
    {
        "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
    }
]
[
  {
    "symbol": "BTC",
    "network": "BTC",
    "fee": 0.001518092472,
    "minimumWithdrawalAmount": 0.001
  }
]
{
    "message": "Invalid network eth for symbol BTC"
}
[
    {
        "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
    },
    ...
]
{
    "message": "Fiat symbols don't have a network"
}
{
    "message": "Please enter an accountId"
}
{
    "message": "Invalid network ABC"
}
{
    "message": "Invalid symbol ABC"
}

Returns an array of .

Returns an array of .

Returns an array of .

Returns an array of .

Returns an array of .

Returns an array of .

Returns an array of .

Returns an array of .

Postman
FeeEstimateObject
FeeEstimateObject
FeeEstimateObject
FeeEstimateObject
FeeEstimateObject
FeeEstimateObject
FeeEstimateObject
FeeEstimateObject
FeeEstimateObject