獲取資產

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}
複製