现货交易
公共
安全类型: None
测试连接
GET
https://openapi.xxx.com/sapi/v1/ping
测试REST API的连通性
服务器时间
GET
https://openapi.xxx.com/sapi/v1/time
服务器时间
timezone
string
China Standard Time
服务器时区
serverTime
long
1705039779880
服务器时间戳
币对列表
GET
https://openapi.xxx.com/sapi/v1/symbols
市场支持的币对集合
symbol
string
btcusdt
小写币对名称
baseAsset
string
BTC
base货币
quoteAsset
string
USDT
计价货币
pricePrecision
integer
2
价格精度
quantityPrecision
integer
6
数量精度
limitVolumeMin
BigDecimal
0.00001
限价单最小数量限制
marketBuyMin
BigDecimal
0.00001
市价单最小购买数量
marketSellMin
BigDecimal
0.00001
市价单最小卖出数量
limitPriceMin
BigDecimal
0.00001
限价单最小价格限制
行情
安全类型: None
行情下方的接口不需要API-Key或者签名就能自由访问
订单薄
GET
https://openapi.xxx.com/sapi/v1/depth
市场订单薄深度信息
Query Parameters
limit*
integer
默认100; 最大100
symbol*
string
大写币对名称 例如:BTCUSDT
time
long
1595563624731
当前时间(Unix Timestamp, 毫秒ms)
bids
array
[[1.3200,2.04],[0.2,0.4]]
订单薄买盘信息,数组长度为2,角标1为价格,类型为float;角标2为当前价格对应的数量,类型为float
asks
array
[[1.3200,2.04],[0.2,0.4]]
订单薄卖盘信息,数组长度为2,角标1为价格,类型为float;角标2为当前价格对应的数量,类型为float
行情ticker
GET
https://openapi.xxx.com/sapi/v1/ticker
24小时价格变化数据
Query Parameters
symbol*
string
大写币对名称 例如 BTCUSDT
time
long
1595563624731
时间戳
high
float
9900
最高价
low
float
8800.34
最低价
last
float
8900
最新成交价
vol
float
4999
交易量
amount
float
23.20
交易额
buy
float
130
买一价格
sell
float
120
卖一价格
rose
string
+0.05
涨跌幅,+为涨,-为跌,+0.05为涨5%
最近成交
GET
https://openapi.xxx.com/sapi/v1/trades
Query Parameters
symbol*
string
大写币对名称 例如 BTCUSDT
limit*
string
默认100; 最大1000
price
float
0.055
交易价格
time
long
1537797044116
当前Unix时间戳,毫秒(ms)
qty
float
5
数量(张数)
side
string
buy/sell
主动单方向
K线/蜡烛图数据
GET
https://openapi.xxx.com/sapi/v1/klines
Query Parameters
symbol*
string
大写币对名称 例如BTCUSDT
interval*
string
k线图区间, 可识别发送的值为: 1min
,5min
,15min
,30min
,60min
,1day
,1week
,1month
(min=分钟,day=天,week=星期,month=月)
limit
integer
默认100; 最大300
idx
long
1538728740000
开始时间戳,毫秒(ms)
open
float
36.00
开盘价
close
float
33.00
收盘价
high
float
36.00
最高价
low
float
30.00
最低价
vol
float
2456.11
成交量
交易
安全类型: TRADE
交易下方的接口都需要签名和API-key验证
创建新订单
POST
https://openapi.xxx.com/sapi/v1/order
限速规则: 100次/2s
Headers
X-CH-SIGN*
string
签名
X-CH-APIKEY*
string
您的API-key
X-CH-TS*
integer
时间戳
Request Body
symbol*
string
币对名称,不限制大小写 例如 BTCUSDT 或 btcusdt
volume*
number
订单数量,有精度限制,精度由管理员配置
side*
string
订单方向, BUY/SELL
type*
string
订单类型, LIMIT/MARKET
price
number
订单价格, 对于LIMIT
订单必须发送,有精度限制,精度由管理员配置
newClientOrderId
string
该字段为第三方标识字段,不参与交易所业务逻辑处理、也不存入数据库,只在响应中原样返回 (该字段不是交易所业务订单id,请注意区分)
orderId
long
150695552109032492
订单ID(系统生成)
clientOrderId
string
213443
订单ID(客户端入参发送)
symbol
string
BTCUSDT
大写币对名称
transactTime
integer
1273774892913
订单创建时间
price
float
4765.29
订单价格
origQty
float
1.01
订单数量
executedQty
float
1.01
已经成交订单数量
type
string
LIMIT
订单类型LIMIT
(限价)MARKET
(市价)
side
string
BUY
订单方向。可能出现的值只能为:BUY
(买入做多) 和 SELL
(卖出做空)
status
string
New Order
订单状态。可能出现的值为:New Order(新订单,无成交)、Partially Filled(部分成交)、Filled(全部成交)、
Partially Filled/Cancelled(部分成交/已取消,没有完全成交的订单被主动取消后的状态)
Cancelled(已取消)
创建测试订单
POST
https://openapi.xxx.com/sapi/v1/order/test
创建和验证新订单, 但不会送入撮合引擎
Headers
X-CH-SIGN*
string
签名
X-CH-APIKEY*
string
您的API-key
X-CH-TS*
integer
时间戳
Request Body
symbol*
string
大写币对名称 BTCUSDT
volume*
number
订单数量,有精度限制,由管理员配置
side*
string
订单方向, BUY/SELL
type*
string
订单类型, LIMIT/MARKET
price
number
订单价格, 对于LIMIT
订单必须发送,有精度限制,由管理员配置
newClientOrderId
string
该字段为第三方标识字段,不参与交易所业务逻辑处理、也不存入数据库,只在响应中原样返回 (该字段不是交易所业务订单id,请注意区分)
批量下单
POST
https://openapi.xxx.com/sapi/v1/batchOrders
限速规则: 50次/2s 一个批量最多10个订单
Headers
X-CH-SIGN*
string
签名
X-CH-APIKEY*
string
您的API-key
X-CH-TS*
integer
时间戳
Request Body
orders*
array
批量订单信息 最多10条
symbol*
string
大写币对名称 BTCUSDT
price
float
1000.00
价格
volume
float
20.10
数量
side
string
BUY/SELL
方向
batchType
string
LIMIT/MARKET
类型
symbol
string
ETHUSDT
币对名称
订单查询
GET
https://openapi.xxx.com/sapi/v1/order
限速规则: 20次/2s
Query Parameters
orderId*
string
订单id
symbol*
string
小写币对名称 例如ethusdt
Headers
X-CH-SIGN*
string
签名
X-CH-APIKEY*
string
您的API-key
X-CH-TS*
integer
时间戳
orderId
long
150695552109032492
订单ID(系统生成)
clientOrderId
string
213443
订单ID(用户发送的)
symbol
string
ethusdt
小写币对名称
price
float
4765.29
订单价格
origQty
float
1.01
订单数量
executedQty
float
1.01
已经成交订单数量
avgPrice
float
4754.24
订单已经成交的平均价格
type
string
LIMIT
订单类型。可能出现的值只能为:LIMIT
(限价)和MARKET
(市价)
transactTime
long
1672274311107
时间戳
side
string
BUY
订单方向。可能出现的值只能为:BUY
(买入做多) 和 SELL
(卖出做空)
status
string
New Order
订单状态。可能出现的值为:New Order(新订单,无成交)、Partially Filled(部分成交)、Filled(全部成交)、
Partially Filled/Cancelled(部分成交/已取消,没有完全成交的订单被主动取消后的状态)
Cancelled(已取消)
撤销订单
POST
https://openapi.xxx.com/sapi/v1/cancel
限速规则: 100次/2s
Headers
X-CH-SIGN*
string
签名
X-CH-APIKEY*
string
您的API-key
X-CH-TS*
integer
时间戳
Request Body
orderId*
string
订单id
symbol*
string
小写币对名称 例如 ethusdt
orderId
long
150695552109032492
订单ID(系统生成
symbol
string
ethusdt
币对名称
status
string
To be Cancelled
订单状态:To be Cancelled
批量撤销订单
POST
https://openapi.xxx.com/sapi/v1/batchCancel
限速规则: 50次/2s 一次批量最多10个订单
Headers
X-CH-SIGN*
string
签名
X-CH-APIKEY*
string
您的API-key
X-CH-TS*
integer
时间戳
Request Body
symbol*
string
大写币对名称 例如 BTCUSDT
orderIds*
array
要取消的订单id集合, id值以数字格式输入[123,456]
当前订单
GET
https://openapi.xxx.com/sapi/v1/openOrders
限速规则: 20次/2s
Query Parameters
symbol*
string
小写币对名称 例如 ethusdt
limit*
integer
最大1000
Headers
X-CH-SIGN*
string
签名
X-CH-APIKEY*
string
您的API-key
X-CH-TS*
integer
时间戳
orderId
long
150695552109032492
订单ID(系统生成)
symbol
string
BTCUSDT
币对名称
price
float
4765.29
订单价格
origQty
float
1.01
订单数量
executedQty
float
1.01
已经成交订单数量
avgPrice
float
4754.24
订单已经成交的平均价格
type
string
LIMIT
订单类型。可能出现的值只能为:LIMIT
(限价)和MARKET
(市价)
time
long
1701243281850
时间戳
side
string
BUY
订单方向。可能出现的值只能为:BUY
(买入做多) 和 SELL
(卖出做空)
status
string
New Order
订单状态。可能出现的值为:New Order(新订单,无成交)、Partially Filled(部分成交)、Filled(全部成交)、
Partially Filled/Cancelled(部分成交/已取消,没有完全成交的订单被主动取消后的状态)
Cancelled(已取消)
交易记录
GET
https://openapi.xxx.com/sapi/v1/myTrades
限速规则: 20次/2s
Query Parameters
symbol*
string
大写币对名称 例如 BTCUSDT
limit*
string
默认100; 最大1000
Headers
X-CH-SIGN*
string
签名
X-CH-APIKEY*
string
您的API-key
X-CH-TS*
integer
时间戳
symbol
string
ETHBTC
大写币种名称(交易对)
id
integer
28457
交易ID
bidId
long
150695552109032492
买方订单ID
askId
long
150695552109032493
卖方订单ID
price
integer
4.01
交易时间戳
qty
float
12
交易数量
time
number
1499865549590
交易时间戳
isBuyer
boolean
true
true
= Buyer false
= Seller
isMaker
boolean
false
true
=Maker false
=Taker
feeCoin
string
ETH
交易手续费币种
fee
number
0.01
交易手续费
bidUserId
integer
10083
买方用户uid
askUserId
integer
10094
卖方用户uid
isSelf
boolean
false
是否为自成交 true = 是自成交 false = 不是自成交
side
string
BUY
主动单方向 BUY/SELL
账户
安全类型: USER_DATA
账户下方的接口都需要签名和API-key验证
账户信息
GET
https://openapi.xxx.com/sapi/v1/account
限速规则: 20次/2s
Headers
X-CH-SIGN*
string
签名
X-CH-APIKEY*
string
您的API-key
X-CH-TS*
integer
时间戳
balances
[]
账户余额集合
Last updated