Query the currency information
Returns detailed coin information and contract addresses.
HTTP Request
- GET
/api/v3/capital/config/getall
Required Permission: SPOT_WITHDRAW_READ
Weight(IP): 10
Request Parameters
None
Response Parameters
| Name | Description |
|---|---|
| coin | Coin symbol |
| depositDesc | Deposit description |
| depositEnable | Whether deposit is enabled |
| minConfirm | Minimum confirmations required for deposit |
| depositPreConfirms | Pre-confirmation count for deposit |
| name | Network display name |
| network | Withdraw network display name (legacy parameter, will be deprecated) |
| withdrawEnable | Whether withdraw is enabled |
| withdrawFee | Withdraw fee |
| withdrawIntegerMultiple | Withdraw amount increment |
| withdrawMax | Max withdraw amount |
| withdrawMin | Min withdraw amount |
| sameAddress | Whether deposit and withdraw share the same address format |
| contract | Contract address |
| withdrawTips | Withdraw tips |
| depositTips | Deposit tips |
| netWork | Withdraw network (new parameter, for the new withdraw endpoint) |
Response
[
{
"coin": "CATCHOLD",
"name": "SpaceCatch",
"networkList": [
{
"coin": "CATCHOLD",
"depositDesc": "Deposit is prohibited (forced deposit may result in asset loss)",
"depositEnable": false,
"minConfirm": 3360,
"depositPreConfirms": 120,
"name": "SpaceCatch",
"network": "Arbitrum One(ARB)",
"withdrawEnable": true,
"withdrawFee": "0",
"withdrawIntegerMultiple": "18",
"withdrawMax": "100000",
"withdrawMin": "1",
"sameAddress": false,
"contract": "0xf0a479C9c3378638EC603b8B6B0d75903902550B",
"withdrawTips": null,
"depositTips": null,
"netWork": "ARB"
}
]
},
{
"coin": "BBC",
"name": "ByByeCar",
"networkList": [
{
"coin": "BBC",
"depositDesc": "Deposit is prohibited (forced deposit may result in asset loss)",
"depositEnable": false,
"minConfirm": 20,
"depositPreConfirms": 2,
"name": "ByByeCar",
"network": "Tron(TRC20)",
"withdrawEnable": true,
"withdrawFee": "0",
"withdrawIntegerMultiple": "18",
"withdrawMax": "200000",
"withdrawMin": "1",
"sameAddress": false,
"contract": "TRrkeSxEypfiTn7gU3Gg3tP756cEhK493b",
"withdrawTips": "",
"depositTips": "",
"netWork": "TRX"
}
]
}
]