---
title: "Get Active Orders"
method: POST
path: "/trading/orders/active"
tags: ["Trading"]
---

# Get Active Orders

`POST /trading/orders/active`

Get active (in-flight) orders across all or filtered accounts and connectors.

This endpoint fetches real-time active orders directly from the connectors' in_flight_orders property,
providing current order status, fill amounts, and other live order data.

Args:
    filter_request: JSON payload with filtering criteria

Returns:
    Paginated response with active order data and pagination metadata

Raises:
    HTTPException: 500 if there's an error fetching orders

## Request body

- ActiveOrderFilterRequest — Request model for filtering active orders
  - `limit` integer — Number of items per page
  - `cursor` string, nullable — Cursor for next page
  - `account_names` string[], nullable — List of account names to filter by
  - `connector_names` string[], nullable — List of connector names to filter by
  - `trading_pairs` string[], nullable — List of trading pairs to filter by

## Response `200`

Successful Response

- PaginatedResponse — Generic paginated response.
  - `data` object[], required
  - `pagination` object, required

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/hummingbot/apis/hummingbot-api.md) · [All operations](https://skmtc.net/hummingbot/apis/hummingbot-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/hummingbot/hummingbot-api/versions/5347fe79537f/schema)
