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

Authorizations

Authorization
string
header
required

Dynamic authentication JWT token

Path Parameters

id
string
required

Order ID

Response

200 - application/json

Order details

The response is of type object.