Get Currency Detail
Request via this endpoint to get the currency details of a specified currency
TIP
This endpoint is temporarily offline (please switch to the old version of the endpoint, it is expected to reopen in mid-October), Get currency detail (opens new window)
HTTP REQUEST
GET /api/v3/currencies/{currency}
Example
GET /api/v3/currencies/BTC
{
"code": "200000",
"data": {
"currency": "BTC",
"name": "BTC",
"fullName": "Bitcoin",
"precision": 8,
"confirms": null,
"contractAddress": null,
"isMarginEnabled": true,
"isDebitEnabled": true,
"chains": [
{
"chainName": "BTC",
"withdrawalMinSize": "0.0008",
"withdrawalMinFee": "0.0005",
"isWithdrawEnabled": true,
"isDepositEnabled": true,
"confirms": 3,
"preConfirms": 1,
"contractAddress": "",
"chainId": "btc"
},
{
"chainName": "TRC20",
"withdrawalMinSize": "0.0005",
"withdrawalMinFee": "0.0001",
"isWithdrawEnabled": false,
"isDepositEnabled": false,
"confirms": 3,
"preConfirms": 3,
"contractAddress": "TN3W4H6rK2ce4vX9YnFQHwKENnHjoxb3m9",
"chainId": "trx"
}
]
}
}
REQUEST URL
This endpoint support Spot URL
REQUEST RATE LIMIT
Public weight
:3
PARAMETERS
Param | Type | Mandatory | Description |
---|---|---|---|
currency | String | Yes | Path parameter, Currency |
chain | String | No | Support for querying the chain of currency, e.g. The available value for USDT are OMNI, ERC20, TRC20. This only apply for multi-chain currency, and there is no need for single chain currency. |
RESPONSES
Param | Description |
---|---|
currency | A unique currency code that will never change |
name | Currency name, will change after renaming |
fullName | Full name of a currency, will change after renaming |
precision | Currency precision |
confirms | Number of block confirmations |
contractAddress | Contract address |
isMarginEnabled | Support margin or not |
isDebitEnabled | Support debit or not |
chains | chain list |
chainId | chain of currency |
chainName | chain name of currency |
withdrawalMinSize | Minimum withdrawal amount |
withdrawalMinFee | Minimum fees charged for withdrawal |
isWithdrawEnabled | Support withdrawal or not |
isDepositEnabled | Support deposit or not |
confirms | Number of block confirmations |
preConfirms | The number of blocks (confirmations) for advance on-chain verification |