Spot Trading API
Public
Security: None
Test Connectivity
GET
https://openapi.xxx.com/sapi/v1/ping
This interface checks connectivity to the host
Check Server Time
GET
https://openapi.xxx.com/sapi/v1/time
This interface checks connectivity to the server and retrieves server timestamp
timezone
string
China Standard Time
Server time zone
serverTime
long
1705039779880
Server timestamp
Symbol Pair List
GET
https://openapi.xxx.com/sapi/v1/symbols
The supported symbol pair collection which in the exchange
symbol
string
btcusdt
Lower case symbol name
baseAsset
string
BTC
Underlying asset for the symbol
quoteAsset
string
USDT
Quote asset for the symbol
pricePrecision
integer
2
Price accuracy
quantityPrecision
integer
6
Quantity accuracy
limitVolumeMin
BigDecimal
0.00001
Minimum quantity limit for limit order
marketBuyMin
BigDecimal
0.00001
Minimum purchase quantity for market order
marketSellMin
BigDecimal
0.00001
Minimum selling quantity for market orders
limitPriceMin
BigDecimal
0.00001
Minimum price limit for limit orders
Market
Security: None
Market section can be accessed freely without requiring any API-key or signatures.
Depth
GET
https://openapi.xxx.com/sapi/v1/depth
Market detpth data
Query Parameters
limit*
integer
Default 100; Maximum 100
symbol*
string
Uppercase symbol name E.g.BTCUSDT
time
long
1595563624731
Current timestamp (ms)
bids
array
[[1.3200,2.04],[0.2,0.4]]
Order book buying information, the array length is 2, subscript one is the price, type is float; subscript two is the quantity corresponding to the current price, type is float
asks
array
[[1.3200,2.04],[0.2,0.4]]
Order book selling information, the array length is 2, subscript one is the price, type is float; subscript two is the quantity corresponding to the current price, type is float
24hrs ticker
GET
https://openapi.xxx.com/sapi/v1/ticker
24-hour price change data
Query Parameters
symbol*
string
Uppercase symbol name E.g.BTCUSDT
time
long
1595563624731
Timestamp (ms)
high
float
9900
Highest price
low
float
8800.34
Lowest price
last
float
8900
Latest deal price
vol
float
4999
Trade volume
amount
float
23.20
Trade amount
buy
float
130
The price in the buying book order at the first one
sell
float
120
The price in the selling book order at the first one
rose
string
+0.05
Range of increase and decrease, + is increase, - is decrease, +0.05 means increase by 5%
Recent Trades List
GET
https://openapi.xxx.com/sapi/v1/trades
Query Parameters
symbol*
string
Uppercase symbol name E.g.BTCUSDT
limit*
string
Default 100; Maximum 1000
price
float
0.055
Trade price
time
long
1537797044116
Timestamp(ms)
qty
float
5
The quantity traded
side
string
buy/sell
Taker side
Kline/candlestick data
GET
https://openapi.xxx.com/sapi/v1/klines
Query Parameters
symbol*
string
Uppercase symbol name E.g.BTCUSDT
interval*
string
Interval of the Kline. Possible values include: 1min
,5min
,15min
,30min
,60min
,1day
,1week
,1month
limit
integer
Default 100; Maximum 300
idx
long
1538728740000
Open time (timestamp,ms)
open
float
36.00
Open price
close
float
33.00
Close price
high
float
36.00
Highest price
low
float
30.00
Lowest price
vol
float
2456.11
Trade volume
Trade
Security: TRADE
The interface in Trade requires API-key and signature for access.
Create new order
POST
https://openapi.xxx.com/sapi/v1/order
Rate Limit: 100times/2s
Headers
X-CH-SIGN*
string
Sign
X-CH-APIKEY*
string
User API-KEY
X-CH-TS*
integer
Timestamp
Request Body
symbol*
string
Symbol name, Case-insensitivet E.g.BTCUSDT or btcusdt
volume*
number
Order quantity, there is a precision limit, the precision is configured by the administrator
side*
string
Order side, BUY/SELL
type*
string
Order type, LIMIT/MARKET
price
number
Order price, for LIMIT orders must be sent, there is a precision limit, the precision is configured by the administrator
newClientOrderId
string
The field is a third-party identifier and is not involved in the exchange's business logic or stored in the database. It is only returned as-is in the response. (Note: This field is not the exchange’s business order ID, please distinguish accordingly)
orderId
long
150695552109032492
Order ID (system generated)
clientOrderId
string
213443
Order ID (sent by user)
symbol
string
BTCUSDT
Uppercase symbol name
transactTime
integer
1273774892913
The time of place order
price
float
4765.29
Order price
origQty
float
1.01
Order volume
executedQty
float
1.01
The number of already deal order
type
string
LIMIT
Type of the orderLIMIT/MARKET
side
string
BUY
Side of the orderBUY/
SELL
status
string
New Order
Order status:New Order
(new order or not transaction yet)
Test New Order
POST
https://openapi.xxx.com/sapi/v1/order/test
Test new order creation and signature/recvWindow length. Creates and validates a new order but does not send the order into the matching engine.
Headers
X-CH-SIGN*
string
Sign
X-CH-APIKEY*
string
Usr API-KEY
X-CH-TS*
integer
Timestamp
Request Body
symbol*
string
Uppercase symbol name E.g.BTCUSDT
volume*
number
Order quantity, with precision limits, configured by the administrator
side*
string
Order side , BUY/SELL
type*
string
Order type, LIMIT/MARKET
price
number
Order price, for LIMIT orders must be sent, there is a precision limit, configured by the administrator
newClientOrderId
string
The field is a third-party identifier and is not involved in the exchange's business logic or stored in the database. It is only returned as-is in the response. (Note: This field is not the exchange’s business order ID, please distinguish accordingly)
Batch Orders
POST
https://openapi.xxx.com/sapi/v1/batchOrders
Rate Limit : 50times/2s Maximum 10 orders in one batch order request
Headers
X-CH-SIGN*
string
Sign
X-CH-APIKEY*
string
User API-KEY
X-CH-TS*
integer
Timestamp
Request Body
orders*
array
Batch order param, Maxinum 10 orders
symbol*
string
Uppercase symbol name E.g. BTCUSDT
price
float
1000.00
Trade pice
volume
float
20.10
Trade volume
side
string
BUY/SELL
Order side
batchType
string
LIMIT/MARKET
Order type
symbol
string
ETHUSDT
Uppercase symbol name
Query Order
GET
https://openapi.xxx.com/sapi/v1/order
Rate Limit: 20 times/2s
Query Parameters
orderId*
string
Order id
symbol*
string
Lowercase symbol name E.g.ethusdt
Headers
X-CH-SIGN*
string
Sign
X-CH-APIKEY*
string
User API-KEY
X-CH-TS*
integer
Timestamp
orderId
long
150695552109032492
Order ID(system generated)
clientOrderId
string
213443
Order ID(sent by user)
symbol
string
ethusdt
Lowercase symbol name
price
float
4765.29
Order price
origQty
float
1.01
Order volume
executedQty
float
1.01
The number of already deal order
avgPrice
float
4754.24
The average price of already deal order
type
string
LIMIT
Order type :LIMIT/MARKET
transactTime
long
1672274311107
Timestamp
side
string
BUY
Order side: BUY/SELL
status
string
New Order
Order status: New Order (new order, no transaction), Partially Filled(partial transaction), Filled (full transaction), Cancelled (cancelled), Partially Filled/Cancelled (partial transaction but order canceled).
Cancel Order
POST
https://openapi.xxx.com/sapi/v1/cancel
Rate Limit: 100times/2s
Headers
X-CH-SIGN*
string
Sign
X-CH-APIKEY*
string
User API-KEY
X-CH-TS*
integer
Timestamp
Request Body
orderId*
string
Order id
symbol*
string
Lowercase symbol name E.g. ethusdt
orderId
long
150695552109032492
Order ID(system generated)
symbol
string
ethusdt
Lowercase symbol name
status
string
To be Cancelled
Order Status:To be Cancelled
Batch Cancel Order
POST
https://openapi.xxx.com/sapi/v1/batchCancel
Rate Limit: 50times/2s Every batch cancel request contains at most 10 orders
Headers
X-CH-SIGN*
string
Sign
X-CH-APIKEY*
string
User API-KEY
X-CH-TS*
integer
Timestamp
Request Body
symbol*
string
Uppercase symbol name E.g. BTCUSDT
orderIds*
array
Collection of order IDs to be canceled. The order id must be of numeric type rather than String type. e.g.[123,456]
Current Open Orders
GET
https://openapi.xxx.com/sapi/v1/openOrders
Rate Limit: 20times/2s
Query Parameters
symbol*
string
Lowercase symbol name E.g. ethusdt
limit*
integer
Maximum 1000
Headers
X-CH-SIGN*
string
Sign
X-CH-APIKEY*
string
User API-KEY
X-CH-TS*
integer
Timestamp
orderId
long
150695552109032492
Order ID(system generated)
symbol
string
BTCUSDT
Uppercase symbol name
price
float
4765.29
Order price
origQty
float
1.01
Order volume
executedQty
float
1.01
The number of already deal order
avgPrice
float
4754.24
The average price of already deal order
type
string
LIMIT
Order type :LIMIT
/MARKET
time
long
1701243281850
Timestamp
side
string
BUY
Order side BUY
/ SELL
status
string
New Order
Order status: New Order (new order, no transaction), Partially Filled(partial transaction), Filled (full transaction), Cancelled (cancelled), Partially Filled/Cancelled (partial transaction but order canceled).
Trading records
GET
https://openapi.xxx.com/sapi/v1/myTrades
Rate Limit: 20times/2s
Query Parameters
symbol*
string
Uppercase symbol name E.g. BTCUSDT
limit*
string
Default100; Maximum 1000
Headers
X-CH-SIGN*
string
Sign
X-CH-APIKEY*
string
User API-KEY
X-CH-TS*
integer
Timestamp
symbol
string
ETHBTC
Uppercase symbol name
id
integer
28457
Trade id
bidId
long
150695552109032492
Buy side order ID
askId
long
150695552109032493
Sell side order ID
price
integer
4.01
Trade timestamp
qty
float
12
Trade volume
time
number
1499865549590
Trade timestamp
isBuyer
boolean
true
true
= Buyer false
= Seller
isMaker
boolean
false
true
=Maker false
=Taker
feeCoin
string
ETH
Trade fee coin
fee
number
0.01
Trade fee
bidUserId
integer
10083
Buy side user id
askUserId
integer
10094
Sell side user id
isSelf
boolean
false
self deal status true = is self deal false = not self deal
side
string
BUY
Taker order side: BUY/SELL
Account
Security: USER_DATA
The interface in Trade requires API-key and signature for access.
Account Information
GET
https://openapi.xxx.com/sapi/v1/account
Rate Limit: 20times/2s
Headers
X-CH-SIGN*
string
Sign
X-CH-APIKEY*
string
User API-KEY
X-CH-TS*
integer
Timestamp
balances
[]
The collection or account balance
Last updated