Spot
Public API
Security: None
Endpoints under Public section can be accessed freely without requiring any API-key or signatures.
1) Test Connectivity
URL: https://openapi.nomoex.com/sapi/v1/ping
Method: Get
2) Check Server Time
URL: https://openapi.nomoexcom/sapi/v1/time
Method: Get
3) Pairs List
URL: https://openapi.nomoex.com/sapi/v1/symbols
Method: Get
Response:
name
type
example
description
symbol
string
BTCUSDT
Name of the symbol
baseAsset
string
BTC
Underlying asset for the symbol
quoteAsset
string
USDT
Quote asset for the symbol
pricePrecision
integer
2
Precision of the price
QuantityPrecision
integer
6
Precision of the quantity
MarketSecurity Type: NoneMarket section can be accessed freely without requiring any API-key or signatures.
Market
Security Type: None
Market section can be accessed freely without requiring any API-key or signatures.
1) Market Depth
URL: https://openapi.nomoex.com/sapi/v1/depth
Method: Get
Response:
time
long
1595563624731
Current timestamp (ms)
bids
list
;
List of all bids, best bids first. See below for entry details.
asks
list
;
List of all asks, best asks first. See below for entry details.
The fields bids and asks are lists of order book price level entries, sorted from best to worst.
' '
float
131.1
price level
' '
flot
2.3
The total quantity of orders for this price level
2) 24 hrs ticker
URL: https://openapi.nomoex.com/sapi/v1/ticker
Method: Get
Response:
time
long
1595563624731
Open Time
high
float
9900
High Price
low
float
8800.34
Low Price
last
float
8900
Last Price
vol
float
4999
Tarde Volume
3) Recent Trades List
URL: https://openapi.nomoexcom/sapi/v1/trades
Method: Get
Response
symbol
string
BTCUSDT
Name of the symbol
baseAsset
string
BTC
Underlying asset for the symbol
quoteAsset
string
USDT
Quote asset for the symbol
pricePrecision
integer
2
Precision of the price
QuantityPrecision
integer
6
Precision of the quantity
4) Kline/candlestick data
URL: https://openapi.nomoex.com/sapi/v1/klines
Method: Get
Response
idx
long
1538728740000
Open time
open
float
36.00000
open price
close
float
33.00000
close price
high
float
36.00000
high price
low
float
30.00000
low price
vol
float
2456.111
volume
Trade
Security Type: TRADE
Endpoints under Trade require an API-key and a signature.
1) New Order
URL: https://openapi.nomoex.com/sapi/v1/order
Method: Post
Rate Limit: 100times/2s
Parameters
Header
X-CH-SIGN
string
Sign
Optional
X-CH-APIKEY
string
Your API-key
Optional
X-CH-TS
integer
timestamp
Optional
Body
symbol
string
Symbol Name. E.g. BTCUSDT
Optional
volume
number
Order vol. For MARKET BUY orders, vol=amount.
Success Response:
200:OK
Copy
orderId
long
150695552109032492
ID of the order
clientOrderId
string
213443
A unique ID of the order.
symbol
string
BTCUSDT
Symbol Name
transactTime
integer
1273774892913
Time the order is placed
price
float
4765.29
Price of the order
origQty
float
1.01
Quantity ordered
executedQty
float
1.01
Quantity of orders that has been executed
type
string
LIMIT
Order type LIMIT,MARKET
side
string
BUY
Order side:BUY, SELL
status
string
NEW
The state of the order.Possible values include NEW, PARTIALLY_FILLED, FILLED, CANCELED, and REJECTED.
2) Test New Order
Test new order creation and signature/recvWindow length. Creates and validates a new order but does not send the order into the matching engine.
URL: https://openapi.nomoex.com/sapi/v1/order/test
Method: Post
Parameters:
Header
X-CH-SIGN
string
Sign
Optional
X-CH-APIKEY
string
Your API-key
Optional
X-CH-TS
integer
timestamp
Optional
Body
recWindow
integer
Time window
Optional
symbol
string
Symbol Name. E.g. BTCUSDT
Optional
volume
number
Order vol. For MARKET BUY orders, vol=amount.
Optional
side
string
Side of the order, BUY/SELL
Optional
type
string
Type of the order, LIMIT/MARKET
Optional
price
number
Order price, REQUIRED for LIMIT
orders
Optional
newClientOrderId
string
Unique order ID generated by users to mark their orders
Optional
Success Response:
{}
3) Batch Orders
URL: https://openapi.nomoex.com/sapi/v1/batchOrders
Method: Get
Parameters
Header:
X-CH-SIGN
string
Sign
Optional
X-CH-APIKEY
string
Your API-key
Optional
X-CH-TS
integer
timestamp
Optional
Body:
orders
array
Batch order param
Optional
symbol
string
Symbol Name. E.g. BTCUSDT
Optional
Success Response: 200:OK
Copy
Request orders field:
price
float
1000
Price of the order
volume
float
20.1
Vol of the order
side
string
BUY/SELL
Side of the order
batchType
string
LIMIT/MARKET
atch type of the order
4) Query Order
URL: https://openapi.nomoex.com/sapi/v1/order
Method: Get
Rate Limit:20 times/2s
Parameters:
Header:
X-CH-SIGN
string
Sign
Optional
X-CH-APIKEY
string
Your API-key
Optional
X-CH-TS
integer
timestamp
Optional
Query
orderId
string
Order ID
Optional
newClientOrderId
string
Client Order Id, Unique order ID generated by users to mark their orders. E.g. 1234MID54231
Optional
symbol
string
Symbol Name. E.g. BTCUSDT
Optional
Success Responses: 200:OK
Copy
orderId
long
150695552109032492
ID of the order
clientOrderId
string
213443
Unique ID of the order.
symbol
string
BTCUSDT
Name of the symbol
price
float
4765.29
Price of the order
origQty
float
1.01
Quantity ordered
executedQty
float
1.01
Quantity of orders that has been executed
avgPrice
float
4754.24
Average price of filled orders.
type
string
LIMIT
The order typeLIMIT,MARKET
side
string
BUY
The order sideBUY,SELL
status
string
NEW
The state of the order.Possible values include NEW, PARTIALLY_FILLED, FILLED, CANCELED, and REJECTED.
5) Cancel Order
URL: https://openapi.nomoex.com/sapi/v1/cancel
Rate Limit: 100time/2s
Method: Post
Parameters:
Header:
X-CH-SIGN
string
Sign
Optional
X-CH-APIKEY
string
Your API-key
Optional
X-CH-TS
integer
timestamp
Optional
Body:
orderId
string
Order ID
Optional
newClientOrderId
string
Client Order Id, Unique order ID generated by users to mark their orders. E.g. 354444heihieddada
Optional
symbol
string
Symbol Name. E.g. BTCUSDT
Optional
Success Response: 200:OK
Copy
orderId
long
150695552109032492
ID of the order
clientOrderId
string
213443
Unique ID of the order.
symbol
string
BHTUSDT
Name of the symbol
status
string
NEW
The state of the order.Possible values include NEW, PARTIALLY_FILLED, FILLED, CANCELED, and REJECTED.
6) Batch Cancel Orders
The batch must contain a maximum 10 orders
URL:https://openapi.nomoex.com/sapi/v1/batchCancel
Method: Post
Rate Limit: 50times/2s
Headers
X-CH-SIGN
string
Sign
Optional
X-CH-APIKEY
string
Your API-key
Optional
X-CH-TS
integer
timestamp
Optional
Body
orderId
array
Order ID
Optional
symbol
string
Symbol Name. E.g. BTCUSDT
Optional
Success Response: 200: OK
Copy
7) Current Open Orders
URL: https://openapi.nomoex.com/sapi/v1/openOrders
Method: Get
Rate Limit: 20times/2s
Parameters
Query:
symbol
string
Symbol Name. E.g. BTCUSDT
Optional
limit
integer
Default 100; Max 1000
Optional
Header
X-CH-SIGN
string
Sign
Optional
X-CH-APIKEY
string
Your API-key
Optional
X-CH-TS
integer
timestamp
Optional
Success Responses: 200:OK
Copy
orderId
long
150695552109032492
ID of the order
clientOrderId
string
213443
Unique ID of the order.
symbol
string
BTCUSDT
Name of the symbol
price
float
4765.29
Price of the order
origQty
float
1.01
Quantity ordered
executedQty
float
1.01
Quantity of orders that has been executed
avgPrice
float
4754.24
Average price of filled orders.
type
string
LIMIT
The order typeLIMIT,MARKET
side
string
BUY
The order side BUY,SELL
status
string
NEW
The state of the order.Possible values include NEW, PARTIALLY_FILLED, FILLED, CANCELED, and REJECTED.
8) Trades
URL: https://openapi.nomoex.com/sapi/v1/myTrades
Method: Get
Rate Limit:20 times/2s
Parameters
Query
symbol
string
Symbol Name. E.g. BTCUSDT
Optional
limit
integer
Default 100; Max 1000
Optional
fromId
integer
Trade Id to fetch from
Optional
Header
X-CH-SIGN
string
Sign
Optional
X-CH-APIKEY
string
Your API-key
Optional
X-CH-TS
integer
timestamp
Optional
Success Responses: 200: OK
Copy
symbol
string
ETHBTC
Symbol Name
id
integer
28457
Trade ID
bidId
long
150695552109032492
Bid Order ID
askId
long
150695552109032493
Ask Order ID
price
integer
4.01
Price of the trade
qty
float
12
Quantiry of the trade
time
number
1499865549590
timestamp of the trade
isBuyer
bool
true
true= Buyer false= Seller
isMaker
bool
false
true=Maker false=Taker
feeCoin
string
ETH
Trading fee coin
fee
number
0.001
Trading fee
Account
Security Type: USER_DATA
Endpoints under Account require an API-key and a signature.
Account Information
URL: https://openapi.nomoex.com/sapi/v1/account
Method: Get
Rate Limit:20times/2s
Success Responses: 200:OK
Copy
balances
[ ]
Show balance details
Balances
asset
string
USDT
Name of the asset
free
float
1000.30
Amount available for use
locked
float
400
Amount locked (for open orders)
Last updated