<!--
{
  "availability" : [
    "iOS: 17.4.0 -",
    "iPadOS: 17.4.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "FinanceKit",
  "identifier" : "/documentation/FinanceKit/FinanceStore/transactionHistory(forAccountID:since:isMonitoring:)",
  "metadataVersion" : "0.1.0",
  "role" : "Instance Method",
  "symbol" : {
    "kind" : "Instance Method",
    "modules" : [
      "FinanceKit"
    ],
    "preciseIdentifier" : "s:10FinanceKit0A5StoreC18transactionHistory12forAccountID5since12isMonitoringAC0E0Vy_AA11TransactionVG10Foundation4UUIDV_AC0E5TokenVSgSbtF"
  },
  "title" : "transactionHistory(forAccountID:since:isMonitoring:)"
}
-->

# transactionHistory(forAccountID:since:isMonitoring:)

Returns the transactions for the specified account ID, optional starting time, and monitoring indicator for long running transaction queries.

```
func transactionHistory(forAccountID accountID: UUID, since token: FinanceStore.HistoryToken? = nil, isMonitoring: Bool = true) -> FinanceStore.History<Transaction>
```

## Parameters

`accountID`

An account identifier.

`token`

An optional [`FinanceStore.HistoryToken`](/documentation/FinanceKit/FinanceStore/HistoryToken) that describes a start time.

`isMonitoring`

A Boolean value that indicates the method should return records asynchronously as the system updates the FinanceStore.

## Return Value

A [`FinanceStore.History`](/documentation/FinanceKit/FinanceStore/History) of transactions that match the provided `accountID`.

## Discussion

Use this method to search the finance store for transactions in a specific account and receive updates as the framework enters new transactions into the finance store. You can, optionally, specify a starting date and time by providing a `historyToken`.

---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)