---
title: "accountHistory(since:isMonitoring:)"
framework: financekit
role: symbol
role_heading: Instance Method
path: "financekit/financestore/accounthistory(since:ismonitoring:)"
---

# accountHistory(since:isMonitoring:)

Returns a list of accounts a person added since a time specified by the provided financial history token.

## Declaration

```swift
func accountHistory(since token: FinanceStore.HistoryToken? = nil, isMonitoring: Bool = true) -> FinanceStore.History<Account>
```

## Parameters

- `token`: An optional HistoryToken.
- `isMonitoring`: A Boolean value that indicates if the framework should return a History that indicates the changes to the accounts over time. Defaults to true.

## Return Value

Return Value A History that describes the accounts.

## Discussion

Discussion Use this method to list and monitor accounts present in a person’s Wallet. If provided, the framework uses the since history token as a starting point to evaluate which accounts to return.

## See Also

### Accounts

- [accounts(query:)](financekit/financestore/accounts(query:).md)
- [AssetAccount](financekit/assetaccount.md)
- [LiabilityAccount](financekit/liabilityaccount.md)
- [Account](financekit/account.md)
