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": [
{}
]
}
Get a specific order by its 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": [
{}
]
}
Dynamic authentication JWT token
Order ID
Order details
The response is of type object
.