US Order Detail
Longbridge US Accounts
This method is only available for US data-center accounts.
Get detail for a specific US order — execution history, order status, and any attached child orders.
SDK Links
Parameters
SDK method parameters.
| Name | Type | Required | Description |
|---|---|---|---|
| order_id | string | YES | Order ID |
Request Example
Response
Response Example
json
{
"order": {
"id": "701276261045858304",
"symbol": "AAPL.US",
"action": "Buy",
"order_type": "LO",
"status": "Filled",
"price": "185.00",
"quantity": "10",
"executed_qty": "10",
"executed_price": "184.95",
"executed_amount": "1849.50",
"currency": "USD",
"submitted_at": "1751866334",
"done_at": "1751866400",
"time_in_force": 0,
"msg": ""
},
"current_attached_order": null,
"current_millisecond": "1751866400000"
}Response Status
| Status | Description | Schema |
|---|---|---|
| 200 | Success | USOrderDetailResponse |
| 400 | Bad request | None |
USOrderDetailResponse
| Name | Type | Required | Description |
|---|---|---|---|
| order | USOrderDetail | null | true | Full order detail, null if not found |
| current_attached_order | USOrderDetail | null | false | Attached child order (bracket/OCO) |
| current_millisecond | string | false | Server timestamp (milliseconds) |
USOrderDetail
Core fields (the full response contains 50+ fields for fees, triggers, and settlement details):
| Name | Type | Description |
|---|---|---|
| id | string | Order ID |
| symbol | string | Trading symbol (e.g. AAPL.US) |
| action | int | Direction: 1=Buy, 2=Sell |
| order_type | string | Order type |
| status | string | Order status |
| price | string | Order price |
| quantity | string | Order quantity |
| executed_qty | string | Executed quantity |
| executed_price | string | Average executed price |
| executed_amount | string | Total executed amount |
| currency | string | Currency code |
| submitted_at | string | Submission time |
| done_at | string | Completion time |
| time_in_force | int | Time-in-force type |
| trigger_price | string | Trigger price (stop orders) |
| msg | string | Status message |
| order_histories | USOrderHistory[] | Order state-transition history |
| attached_orders | USAttachedOrder[] | Attached child orders |
| button_control | USButtonControl | Available action buttons |
| charge_detail | USChargeDetail | null | Fee breakdown |
USOrderHistory
| Name | Type | Description |
|---|---|---|
| exec_type | int | Execution type |
| status | string | Order status at this point |
| price | string | Price |
| qty | string | Quantity |
| time | string | Timestamp |
| msg | string | Message |