# Orders

All order related paths.

 - [GET /accounts/{account_id}/orders](https://docs.upvest.co/api/orders/list_account_orders.md): Returns a paginated list of orders for the account specified by its ID, including their statuses, executions, and fee configurations. See the Orders guide ([TOL](https://docs.upvest.co/products/tol/gu
 - [POST /orders](https://docs.upvest.co/api/orders/place_order.md): Places a new order for an instrument. After the request is accepted, the order is processed asynchronously — use the returned `id` to poll for status or subscribe to order webhook events. See the Orde
 - [GET /orders/{order_id}](https://docs.upvest.co/api/orders/retrieve_order.md): Returns the order specified by its ID, including its current status, executions, fee configuration, and any cancellation reason. See the Orders guide ([TOL](https://docs.upvest.co/products/tol/guides/
 - [DELETE /orders/{order_id}](https://docs.upvest.co/api/orders/cancel_order.md): Cancels an order specified by its ID. It is possible to cancel an order in the `NEW` or `PROCESSING` status. Once a cancellation has been accepted, the further processing steps take place asynchronous
 - [GET /orders/{order_id}/executions/{execution_id}](https://docs.upvest.co/api/orders/retrieve_order_execution.md): Returns the order execution specified by its ID. An execution represents a single trade fill within an order; an order may have multiple executions if it is partially filled across several trades. See
 - [POST Orders events](https://docs.upvest.co/api/orders/order_event.md): Orders events
 - [POST Executions events](https://docs.upvest.co/api/orders/execution_event.md): Executions events
 - [POST Order Cancellations events](https://docs.upvest.co/api/orders/order_cancellation_event.md): Order Cancellations events
