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
=< mark_price * (1 + price_range)
when BUY
price
>= mark_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 than min_notional
Risk Exposure filer
OK
The response is of type object
.