Skip to main content
Version: 1.1.1
POSThttps://dev.yimmit.com/api/v3/liquidity/orders/check/order
Auth required — send X-Auth-Apikey, X-Auth-Signature and X-Auth-Nonce. How to sign a request

Check Order

POST api/v3/liquidity/orders/check/order

Check a Sell/Buy order.

Parameters:

NameTypeMandatoryDescription
marketSTRINGYESMarket pair code (e.g., ethusdc)
sideSTRINGYESOrder side: buy or sell
volumeSTRINGYESOrder volume (e.g., 0.0066)
ord_typeSTRINGYESOrder type: limit or market
priceSTRINGYESOrder price (e.g., 1500)

Responses

  • 200 Successful response

Checks if a duplicate/similar order was recently placed for the same market and side.

Response Fields:

  • duplicate: Boolean indicating whether a similar order exists within the check window
{
"duplicate": true
}