자산 얻기

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}
복사