Market Info
Get Order Rules per Symbol
Limit: 10 requests per 1 second per IP address
GET /v1/public/info/{symbol}
This endpoint provides all the values for the rules that an order need to fulfil in order for it to be placed successfully. The rules are defined as follows:
Price filter
-
price
>=quote_min
-
price
=<quote_max
-
(price - quote_min) % quote_tick
should equal to zero -
price
=<asks[0].price * (1 + price_range)
when BUY -
price
>=bids[0].price * (1 - price_range)
when SELL
Size filter
-
base_min
=<quantity
=<base_max
-
(quantity - base_min) % base_tick
should equal to zero
Min Notional filter
price * quantity
should greater thanmin_notional
Risk Exposure filer
- Order size should be within holding threshold. See account_info
GET
/
v1
/
public
/
info
/
{symbol}
Path Parameters
symbol
string
requiredResponse
200 - application/json
success
boolean
requiredtimestamp
integer
data
object
required