-
Notifications
You must be signed in to change notification settings - Fork 0
User all asset information
huyaohua edited this page Jan 19, 2020
·
1 revision
Interface address:https://api.bitforex.com/api/v1/fund/allAccount
Request method:POST
Parameters
parameter name | Types | Is required | Defaults | Description |
---|---|---|---|---|
accessKey | String | Yes | - | API access key |
nonce | long | Yes | - | Request timestamp, milliseconds |
signData | String | Yes | - | Signing information |
Example
# request
POST https://api.bitforex.com/api/v1/fund/allAccount
# Response
{
"success": true,
"data": [
{
"currency":"btc",
"active": 0,
"fix": 0,
"frozen": 0
},
{
"currency":"eth",
"active": 0,
"fix": 0,
"frozen": 0
}
]
}
Return value description
Parameter Name | Type | Description |
---|---|---|
currency | String | Currency type |
active | double | Available assets |
fix | double | Total assets |
frozen | double | Freezing assets |