获取资产

get
https://api.cryptomus.com/v1/exchange/market/assets
复制

要求

请求示例

curl --location 'https://api.cryptomus.com/v1/exchange/market/assets'
复制

回复

响应参数

姓名参数类型定义
currency_codestring货币代码
network_codestring加密网络代码
can_withdrawboolean是否可以提现
can_depositboolean是否可以付款
min_withdrawstringnull最小提现金额
max_withdrawstringnull最大提现金额
max_depositstringnull最大存款金额
min_depositstringnull最小存款金额

参数类型

string

定义

货币代码

参数类型

string

定义

加密网络代码

参数类型

boolean

定义

是否可以提现

参数类型

boolean

定义

是否可以付款

参数类型

stringnull

定义

最小提现金额

参数类型

stringnull

定义

最大提现金额

参数类型

stringnull

定义

最大存款金额

参数类型

stringnull

定义

最小存款金额

响应示例


1{
2"state": 0,
3  "result": [
4    {
5      "currency_code": "CRMS",
6      "network_code": "polygon",
7      "can_withdraw": true,
8      "can_deposit": false,
9      "min_withdraw": "1.00000000",
10      "max_withdraw": "10000000.00000000",
11      "max_deposit": null,
12      "min_deposit": null
13    },
14    {
15      "currency_code": "DASH",
16      "network_code": "dash",
17      "can_withdraw": true,
18      "can_deposit": true,
19      "min_withdraw": "0.01000000",
20      "max_withdraw": "1000000.00000000",
21      "max_deposit": "1000000.00000000",
22      "min_deposit": "0.02000000"
23    }
24  ]
25}
复制