-
Notifications
You must be signed in to change notification settings - Fork 6
BitForex-API edited this page Jul 31, 2018
·
7 revisions
请求格式:POST
参数
参数名 | 类型 | 是否必填 | 默认值 | 描述 |
---|---|---|---|---|
symbol | String | 是 | - | 交易对类型,如coin-usdt-btc、coin-usdt-eth等 |
price | double | 是 | - | 下单价 |
amount | double | 是 | - | 下单量 |
tradeType | int | 是 | - | 下单类型,1、买入,2、卖出 |
accessKey | String | 是 | - | API 访问密钥 |
nonce | long | 是 | - | 请求时间戳,毫秒 |
signData | String | 是 | - | 签名信息 |
示例
# request
POST https://api.bitforex.com/api/v1/trade/placeOrder
# Response
{
"success": true,
"data": {
"orderId": 1
}
}
返回值说明
参数名 | 类型 | 描述 |
---|---|---|
orderId | long | 订单ID |