---
title: "List Trades"
method: GET
path: "/api/prime/trading/v1/accounts/{accountId}/trades"
tags: ["Orders"]
---

# List Trades

`GET /api/prime/trading/v1/accounts/{accountId}/trades`

Lists trades from the trading account. This will include trades that have not yet settled.

**Requires access token scope:** `trade_view`

## Path parameters

- `accountId` string, required

## Query parameters

- `offset` integer
- `limit` integer
- `orderId` string, uuid
- `dateGte` string, date-time
- `dateLt` string, date-time
- `creationDateGte` string, date-time
- `creationDateLt` string, date-time
- `isSettled` boolean
- `fundingType` 'margin' | 'funded' — The funding type of the order. - Funded orders will be placed using the Go account balance. - Margin orders will be placed using the margin account balances. See our [Trade Guide](/docs/trade-overview) for more details on each funding type.

## Response `200`

An array of trades

- object
  - `data` PrimeTrade[], required
    - `id` string, uuid, required
    - `orderId` string, uuid, required
    - `time` string, date-time, required — The date when the trade occurred
    - `creationDate` string, date-time, required — The date when the trade was created in our system
    - `product` string, required — Product name e.g. BTC-USD
    - `side` 'buy' | 'sell', required — The side of the order
    - `price` string, decimal, required — Filled price, e.g. For BTC-USD product, 90000.00 USD
    - `quoteQuantity` string, decimal, required — Filled quote quantity, e.g. For BTC-USD product, 100.50 USD
    - `quantity` string, decimal, required — Filled base quantity, e.g. For BTC-USD product, 0.0045 BTC
    - `fundingType` 'margin' | 'funded', required — The funding type of the order. - Funded orders will be placed using the Go account balance. - Margin orders will be placed using the margin account balances. See our [Trade Guide](/docs/trade-overview) for more details on each funding type.
    - `settled` boolean, required
    - `settleDate` string, date-time, nullable — The date when the trade was settled. Null if not yet settled.
    - `accountId` string, required — The ID of the account
    - `enterpriseId` string, required — The BitGo enterprise ID associated with this trade

## Other responses

- `400` — Bad request - Invalid query parameters
- `401` — Unauthorized - Invalid or missing authentication
- `403` — Forbidden - Insufficient permissions
- `500` — Internal Server Error

---

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