Order record
Get a single order record by order ID
Query parameters
idstringRequired
Order ID
Responses
200
OK
application/json
400
Bad Request
application/json
422
Unprocessable Entity
application/json
500
Internal Server Error
application/json
get
GET /account/order?id=text HTTP/1.1
Host:
Accept: */*
{
"order_json": {
"create_time": 1,
"executed_price": 1,
"executed_qty": "text",
"fee_charged": "text",
"fee_unit": "text",
"fills": [
{
"counter_party_order_id": "text",
"create_time": 1,
"execution_price": 1,
"fee_amount": "text",
"fee_unit": "text",
"filled_amount": "text",
"id": "text",
"order_id": "text",
"role": "maker"
}
],
"order_id": "text",
"orig_qty": "text",
"price": 1,
"side": "buy",
"slippage": "text",
"status": "text",
"symbol": "ADAUSDM",
"type": "market",
"update_time": 1
}
}
Last updated