Skip to main content

Get open orders

GET 

/openorders

This endpoint returns information on all open orders for all Futures contracts.

Responses

Schema
    oneOf
    openOrders object[]required

    A list containing structures with information on open orders. The list is sorted descending by receivedTime.

  • Array [
  • order_id uuidrequired

    The unique identifier of the order.

    cliOrdId string

    The unique client order identifier. This field is returned only if the order has a client order ID.

    status stringrequired

    Possible values: [untouched, partiallyFilled]

    The status of the order:

    • untouched - the entire size of the order is unfilled
    • partiallyFilled - the size of the order is partially but not entirely filled
    side stringrequired

    Possible values: [buy, sell]

    The direction of the order.

    orderType stringrequired

    Possible values: [lmt, stop, take_profit]

    The order type:

    • lmt - limit order
    • stp - stop order
    • take_profit - take profit order
    symbol stringrequired

    The symbol of the futures to which the order refers.

    limitPrice number

    The limit price associated with the order.

    stopPrice number

    If orderType is stp: The stop price associated with the order

    If orderType is lmt: Not returned because N/A

    filledSize numberrequired

    The filled size associated with the order.

    unfilledSize number

    The unfilled size associated with the order.

    reduceOnly booleanrequired

    Is the order a reduce only order or not.

    triggerSignal string

    Possible values: [mark, last, spot]

    The trigger signal for the stop or take profit order.

    lastUpdateTime date-timerequired

    The date and time the order was last updated.

    receivedTime date-timerequired

    The date and time the order was received.

  • ]
  • result stringrequired

    Possible values: [success]

    serverTime date-timerequired

    Server time in Coordinated Universal Time (UTC)

Loading...