資産を取得する
get
https://api.cryptomus.com/v1/exchange/market/assets
リクエスト
リクエスト例
curl --location 'https://api.cryptomus.com/v1/exchange/market/assets'
コピー応答
応答パラメーター
名前 | パラメータータイプ | 意味 |
---|---|---|
currency_code | string | 通貨コード |
network_code | string | 暗号ネットワークコード |
can_withdraw | boolean | 出金が可能ですか |
can_deposit | boolean | 支払いが可能ですか |
min_withdraw | stringnull | 最低引き出し額 |
max_withdraw | stringnull | 最大引き出し額 |
max_deposit | stringnull | 最大預金額 |
min_deposit | stringnull | 最低預金額 |
パラメータータイプ
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}
コピー