-
Notifications
You must be signed in to change notification settings - Fork 87
071asset_config
张帅磊 edited this page Jul 9, 2021
·
5 revisions
-
Request description: acquire asset config
-
Request type: GET
-
Signature required: No
-
Request Url:https://api.coinex.com/v1/common/asset/config
-
Request parameter:
name type required description coin_type String No Coin type, e.g. BCH. If no coin_type is entered, the asset config of all the supported coins/tokens will be returned. If coin_type is provided, the asset config of the specific coin/token will be sent back instead. -
Return value description:
name type description asset String coin type chain String chain name can_deposit bool coin type deposit status can_withdraw bool coin type withdraw status deposit_least_amount String deposit least amount withdraw_least_amount String withdraw least amount withdraw_tx_fee String withdraw tx fee -
Example:
# Request
GET https://api.coinex.com/v1/common/asset/config
# Response
{
"code": 0,
"data": {
"ADA": {
"asset": "ADA",
"chain": "ADA",
"can_deposit": true,
"can_withdraw": true,
"deposit_least_amount": "140",
"withdraw_least_amount": "140",
"withdraw_tx_fee": "73"
},
"BCH": {
"asset": "BCH",
"chain": "BCH",
"can_deposit": true,
"can_withdraw": true,
"deposit_least_amount": "140",
"withdraw_least_amount": "140",
"withdraw_tx_fee": "73"
}
...
},
"message": "Ok"
}
Common API
Market API
-
Acquire Market List
-
Acquire Market Statistics
-
Acquire Market Depth
-
Acquire Latest Transaction Data
-
Acquire K-Line Data
-
Acquire Market Information
-
Acquire Single Market Information
-
Acquire AMM Market List
Account API
-
Inquire Account Info
-
Inquire Withdrawal List
-
Submit A Withdrawal Order
-
Cancel Withdrawal
-
Inquire Deposit List
-
Transfer between main account and sub account
-
Transfer between main account and margin account
-
Get deposit address
-
Generate deposit address
-
Inquire Sub Account Balance
-
Inquire Sub Account Balance History
-
Create Sub Account
-
Frozen Sub Account
-
Unfrozen Sub Account
-
Acquire Credit Account Info
Trading API
-
Place Limit Order
-
Place Multiple Limit Orders
-
Place Market Order
-
Place Stop Limit Order
-
Place IOC Order
-
Acquire Unexecuted Order List
-
Acquire Executed Order List
-
Acquire Order Status
-
Acquire Multiple Orders Status
-
Acquire Executed Order Detail
-
Acquire User Deals
-
Cancel Order
-
Cancel Multiple Orders
-
Cancel All Orders
Margin API
-
Inquire Margin Account Info
-
Inquire Margin Account Market Info
-
Inquire Margin Account of A Currency
-
Acquire Margin Account Settings
-
Acquire Margin Account Settings of A Currency
-
Acquire Loan List
-
Place Loan
-
Place Flat
-
Margin Balance Transfer
Contract API