---
title: "List org trade orders"
method: GET
path: "/api/org/orders"
tags: ["Organization Management"]
---

# List org trade orders

`GET /api/org/orders`

List all trade orders for an organization.

## Query parameters

- `organizationId` string, required
- `enterpriseId` string
- `accountId` string
- `orderId` string
- `dateGte` string
- `dateLt` string
- `status` 'canceled' | 'completed' | 'error' | 'open' | 'pending_cancel' | 'pending_open' | 'scheduled'
- `side` 'buy' | 'sell'
- `product` string
- `limit` string — Maximum number of orders to return in this page
- `offset` string — Number of orders to skip before starting this page

## Response `200`

- object
  - `data` object[], required
    - `id` string, required
    - `accountId` string, required
    - `clientOrderId` string
    - `time` string, required
    - `creationDate` string, required
    - `scheduledDate` string
    - `lastFillDate` string
    - `completionDate` string, required
    - `settleDate` string
    - `type` string, required
    - `fundingType` union, required
      - 'margin'
      - 'funded'
    - `notes` string
    - `status` union, required
      - 'pending_open'
      - 'open'
      - 'completed'
      - 'pending_cancel'
      - 'canceled'
      - 'error'
      - 'scheduled'
    - `product` string, required
    - `side` union, required
      - 'buy'
      - 'sell'
    - `quantity` string, required
    - `quantityCurrency` string, required
    - `filledQuantity` string, required
    - `filledQuoteQuantity` string, required
    - `averagePrice` string, required
    - `limitPrice` string
    - `initiatedByUserId` string
    - `canceledByUserId` string, nullable, required
    - `duration` number
    - `timeInForce` union
      - 'FOK'
      - 'GTC'
      - 'GTT'
      - 'IOC'
  - `nextOffset` number — Offset to use for the next page when the current page is full

---

[API](https://skmtc.dev/bitgo/apis/bitgo-api.md) · [All operations](https://skmtc.dev/bitgo/apis/bitgo-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/bitgo/bitgo-api/revisions/0655266cd7e2/schema)
