Skip to main content
Version: V3(BETA)

Get Coin Information

  • GET /api/v3/coins

Weight(IP): 5

Request parameters

NONE

Request example

curl "https://api-spot.weex.com/api/v3/coins"

Response parameters

FieldTypeDescription
coinStringCoin symbol, e.g. BTC.
nameStringCoin full name.
depositAllEnableBooleanWhether deposits are enabled.
withdrawAllEnableBooleanWhether withdrawals are enabled.
networkListArray<Object>Supported network information.
→ networkStringNetwork name (e.g. ERC20).
→ isDefaultBooleanWhether this is the default network.
→ depositEnableBooleanWhether deposits via this network are enabled.
→ withdrawEnableBooleanWhether withdrawals via this network are enabled.
→ withdrawFeeStringWithdrawal fee.
→ withdrawMinStringMinimum withdrawal amount.
→ withdrawIntegerMultipleBigDecimalRequired multiple for withdrawals.
→ minConfirmIntegerMinimum confirmations required for deposits.
→ withdrawTagBooleanWhether a tag/memo is required.
→ depositDustStringMinimum deposit amount that will be credited.
→ contractAddressStringContract address (if applicable).
→ contractAddressUrlStringExplorer URL for the contract.
→ depositDesc / withdrawDescStringOptional status messages when deposits/withdrawals are disabled.

Response example

[
{
"coin": "USDT",
"name": "USDT",
"depositAllEnable": true,
"withdrawAllEnable": true,
"networkList": [
{
"network": "BEP20(BSC)",
"coin": "USDT",
"withdrawIntegerMultiple": 1e-8,
"isDefault": false,
"depositEnable": true,
"withdrawEnable": true,
"depositDesc": null,
"withdrawDesc": null,
"name": "BEP20(BSC)",
"withdrawFee": "0.000002",
"withdrawMin": "0.00001",
"withdrawInternalMin": null,
"depositDust": "0.0001",
"minConfirm": 11,
"withdrawTag": false,
"contractAddressUrl": "https://bscscan.com/token/",
"contractAddress": "0x55d39832789f99059ff7545246999027b3197955"
}
]
}
]