Address
Receiving parameter
Submit
Example
curl -d /openApi/wallet/list
Submit parameter
ParamName |
Y/N |
Type |
Example |
Description |
currency |
No |
string |
BTC |
Query specified currencies |
show_all |
No |
int |
1 |
Need all currencies ?(1: yes, if you do not submit, then only those with assets will have) |
Return Parameter
ParamName |
Y/N |
Type |
Example |
Description |
errno |
Yes |
int |
0 |
Status code |
errmsg |
Yes |
success |
success |
Status information |
result |
Yes |
list |
See the example |
List |
RESULT Parameter Instructions
ParamName |
Y/N |
Type |
Example |
Description |
currency |
Yes |
string |
BTC |
Currencies |
available |
Yes |
string |
100.98877 |
Available |
frozen |
Yes |
string |
45.099888 |
Frozen |
Return Example
{
"errno": 0,
"errmsg": "success",
"result": [
{
"currency": "BTC",
"available": "0.2323",
"frozen": "0"
},
{
"currency": "ETH",
"available": "1",
"frozen": "0",
}
]
}
Comments
0 comments
Article is closed for comments.