Skip to main content

Get active orders

  -X GET
--header 'Accept: application/json'
--header 'Authorization: Bearer {token here}'
'https://api.lime.co/accounts/{account_number}/activeorders'

Response example

[
{
"account_number": "12345678@vision",
"client_id": "20171003209384646",
"exchange": "Auto",
"quantity": 1,
"executed_quantity": 0,
"order_status": "new",
"price": 20,
"stop_price": 0,
"time_in_force": "day",
"order_type": "limit",
"order_side": "buy",
"symbol": "BAC"
}
]

Get an array of active orders. Every element in the response is the same as in Get order details method.