---
title: "Get Account History"
method: GET
path: "/v1/accounts/{account_id}/history"
tags: ["Accounts"]
---

# Get Account History

`GET /v1/accounts/{account_id}/history`

Get historical activity for an account

## Path parameters

- `account_id` string, required

## Query parameters

- `page` integer
- `limit` integer
- `type` 'trade' | 'option' | 'ach' | 'wire' | 'dividend' | 'fee' | 'tax' | 'journal' | 'check' | 'transfer' | 'adjustment'

## Headers

- `Accept` 'application/json', required

## Response `200`

Account history information

- HistoryResponse
  - `history` object
    - `event` HistoryEvent[] — List of historical events
      - `date` string, date-time — The date of the event
      - `type` 'trade' | 'option' | 'ach' | 'wire' | 'dividend' | 'fee' | 'tax' | 'journal' | 'check' | 'transfer' | 'adjustment' — The type of event
      - `symbol` string — The security symbol (for applicable event types)
      - `quantity` number, float — The quantity involved in the event (for applicable event types)
      - `price` number, float — The price per share/contract (for applicable event types)
      - `amount` number, float — The total amount of the event
      - `description` string — Description of the event
      - `commission` number, float — Commission charged for the event (for applicable event types)
    - `page` integer — Current page number
    - `total_pages` integer — Total number of pages
    - `total_events` integer — Total number of events

## Other responses

- `401` — Authentication required or invalid credentials
- `403` — Access denied to the requested resource
- `404` — The requested resource was not found

---

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