GET
/
api
/
orders
Get orders
curl --request GET \
  --url http://localhost:14400/api/orders \
  --header 'Authorization: Bearer <token>'
[
  {
    "orderId": "<string>",
    "symbol": "<string>",
    "side": "<string>",
    "type": "<string>",
    "quantity": 123,
    "price": 123,
    "status": "<string>",
    "createdAt": "2023-11-07T05:31:56Z"
  }
]

Authorizations

Authorization
string
header
required

Dynamic authentication JWT token

Response

200 - application/json

List of orders

orderId
string
symbol
string
side
string
type
string
quantity
number
price
number
status
string
createdAt
string<date-time>