संपत्ति प्राप्त करें

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}
प्रतिलिपि