# Get Order by ID Rate Limit: 1 request per 1 second Retrieves a single pending order using its unique numerical ID. This is useful for checking the status of a specific order you have previously placed. Endpoint: GET /api/v0/equity/orders/{id} Version: v0 Security: authWithSecretKey ## Path parameters: - `id` (integer, required) The unique identifier of the order you want to retrieve. ## Response 200 fields (application/json): - `creationTime` (string) The ISO 8601 timestamp of when the order was created. - `extendedHours` (boolean) Indicates if the order is eligible for execution outside regular trading hours. - `filledQuantity` (number) The number of shares that have been successfully executed. - `filledValue` (number) The total monetary value of the executed portion of the order. - `id` (integer) A unique, system-generated identifier for the order. - `limitPrice` (number) The limit price for LIMIT and STOP_LIMIT orders. - `quantity` (number) The number of shares requested in the order. A negative number indicates a sell order. Applicable to orders placed by quantity. - `status` (string) The current state of the order in its lifecycle. Enum: "LOCAL", "UNCONFIRMED", "CONFIRMED", "NEW", "CANCELLING", "CANCELLED", "PARTIALLY_FILLED", "FILLED", "REJECTED", "REPLACING", "REPLACED" - `stopPrice` (number) The stop price for STOP and STOP_LIMIT orders. - `strategy` (string) The strategy used to place the order, either by QUANTITY or VALUE. The API currently only supports placing orders by QUANTITY. Enum: "QUANTITY", "VALUE" - `ticker` (string) Unique instrument identifier for the traded asset. Example: "AAPL_US_EQ" - `type` (string) The type of the order, which determines its execution logic. Enum: "LIMIT", "STOP", "MARKET", "STOP_LIMIT" - `value` (number) The monetary value of the order in your account's currency. Applicable to orders placed by value. Note: Placing orders by value is not currently supported via the API but can be done through other Trading 212 platforms. ## Response 401 fields ## Response 403 fields ## Response 404 fields ## Response 408 fields ## Response 429 fields