get
https://api.liquiditytech.com/api/v1/asset/currencies
Retrieve information on supported currencies for deposit, withdrawal, and transfer across Funding Accounts, Trading Portfolios, Custody Accounts and Exchange Accounts.
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
Retrieve supported currencies and network details for transfers between accounts. Use fromAccount and toAccount to specify the transfer direction. The response shows deposit or withdrawal availability depending on the direction queried.
Note: At least one of
fromAccountortoAccountshould be provided for meaningful results.
Request Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
fromAccount | String | No | Source account. Examples: Funding Account, Trading Portfolio-Binance, Binance, OKX. |
toAccount | String | No | Destination account. Examples: Funding Account, Trading Portfolio-OKX, Gate. |
currency | String | No | Filter by asset symbol, e.g. USDT, BTC. If omitted, all supported currencies are returned. |
Response Fields
Route level (data[])
data[])| Field | Type | Description |
|---|---|---|
fromAccount | String | Source account. Empty string if not filtered. |
toAccount | String | Destination account. Empty string if not filtered. |
{currency} | Object | Per-currency object keyed by asset symbol (e.g. USDT, BTC), containing a networks array. |
Network level (data[].{currency}.networks[])
data[].{currency}.networks[])| Field | Type | Description |
|---|---|---|
network | String | Chain or network name, e.g. ERC20, TRC20, BTC, BSC, SOL. |
depositEnable | String | "true" if deposits are supported on this network for the queried direction. Empty string if deposit is not applicable (e.g. when querying fromAccount only). |
minDeposit | String | Minimum deposit amount. Empty string if deposit is not applicable. |
withdrawEnable | String | "true" if withdrawals are supported on this network for the queried direction. Empty string if withdrawal is not applicable (e.g. when querying toAccount only). |
minWithdraw | String | Minimum withdrawal amount. Empty string if withdrawal is not applicable. |
precision | Integer | Maximum number of decimal places supported for this network. |
estNetworkFee | String | Estimated on-chain network fee. "0" if fee is zero or not charged. Empty string if not applicable. |
estNetworkFeeCurrency | String | Currency of the estimated network fee. null if not applicable. |
Example Request
GET /api/v1/asset/currencies?fromAccount=Funding Account¤cy=USDT
Example Response
{
"code": 200,
"message": "success",
"data": [
{
"fromAccount": "Funding Account",
"toAccount": "",
"USDT": {
"networks": [
{
"network": "TRC20",
"depositEnable": "",
"minDeposit": "",
"withdrawEnable": "true",
"minWithdraw": "15",
"precision": 18,
"estNetworkFee": "0.3",
"estNetworkFeeCurrency": "TRX"
},
{
"network": "ERC20",
"depositEnable": "",
"minDeposit": "",
"withdrawEnable": "true",
"minWithdraw": "15",
"precision": 6,
"estNetworkFee": "0",
"estNetworkFeeCurrency": "ETH"
},
{
"network": "BSC",
"depositEnable": "",
"minDeposit": "",
"withdrawEnable": "true",
"minWithdraw": "15",
"precision": 18,
"estNetworkFee": "0",
"estNetworkFeeCurrency": "BNB"
},
{
"network": "ARBITRUM",
"depositEnable": "",
"minDeposit": "",
"withdrawEnable": "true",
"minWithdraw": "15",
"precision": 6,
"estNetworkFee": "0",
"estNetworkFeeCurrency": "ETH"
},
{
"network": "AVAXC",
"depositEnable": "",
"minDeposit": "",
"withdrawEnable": "true",
"minWithdraw": "15",
"precision": 6,
"estNetworkFee": "0",
"estNetworkFeeCurrency": "AVAX"
},
{
"network": "OPTIMISM",
"depositEnable": "",
"minDeposit": "",
"withdrawEnable": "true",
"minWithdraw": "15",
"precision": 6,
"estNetworkFee": "0",
"estNetworkFeeCurrency": "ETH"
}
]
}
}
]
}
