Skip to content

所有币种资产信息

BitForex-API edited this page Jul 31, 2018 · 7 revisions

接口地址:https://api.bitforex.com/api/v1/fund/allAccount

请求格式:POST

参数

参数名 类型 是否必填 默认值 描述
accessKey String - API 访问密钥
nonce long - 请求时间戳,毫秒
signData String - 签名信息

示例

# 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
		}
	]
}

返回值说明

参数名 类型 描述
currency String 币种
active double 可用资产
fix double 总资产
frozen double 冻结资产