πŸ”’Query Order

Check an order's status

GET https://api/staging/dexilon/io/api/v1/orders

Weight: 1

Either orderId or clientOrderId must be sent.

Query Parameters

Name
Type
Description

symbol*

String

Symbol name

clientOrderId

UUID

Client ID of order.

orderId

Long

ID of order.

{
    "symbol" : "btc_usdt",
    "amount" : 0.1,
    "side" : "BUY",
    "orderId" : 439592051,
    "price" : 23551.7,
    "clientOrderId" : "1dc17102-2a57-424a-952b-44c18b849f21",
    "averageExecutionPrice" : 23551.6,
    "filled" : 0.04,
    "type" : "LIMIT",
    "status" : "PARTIALLY_EXECUTED",
    "updatedAt" : 1670240315627
}

Last updated