Account basics
Each account has the following properties:- Name — A descriptive label like “Chase Checking” or “Emergency Savings”
- Type — The kind of account (e.g., “checking”, “savings”, “credit”)
- Balance — Calculated automatically from transaction history
- Status — Active or inactive accounts
Account balances are computed from all transactions and transfers, not manually entered. This ensures they stay accurate as you add or edit transactions.
Account types
When creating an account, you specify a type that describes what kind of account it is. Common types include:checking— Primary spending accountssavings— Savings and emergency fund accountscredit— Credit cardscash— Physical cash on hand- Custom types as needed
Account types are text fields, so you can use any label that makes sense for your situation.
The default account
One account can be marked as the default using theis_default flag. This account is automatically selected when creating transactions without specifying an account.
If you create a transaction without specifying an account_id, CashCat will:
- Use the account marked with
is_default: true - If no default exists, use the first available account
- Return an error if you have no accounts
Account balances
Balances are calculated by summing:- Transactions — All income, payment, and starting balance transactions
- Transfers in — Money transferred into the account from other accounts
- Transfers out — Money transferred out to other accounts
as_of_date parameter.
To include balance information in API responses, use
include_balance=true and optionally specify an as_of_date in YYYY-MM-DD format.Active vs inactive accounts
Theis_active flag lets you mark accounts as inactive without deleting them. Inactive accounts:
- Preserve historical transaction data
- Don’t appear in normal account lists (unless filtered)
- Can’t be used for new transactions
Starting balances
When you first add an account to CashCat, you’ll want to record its current balance. Use a transaction withtype: "starting" to set the initial balance:
Starting balance transactions don’t require a category and don’t affect your budget assignments.
Transfers between accounts
Money moving between your accounts is tracked as transfers, not transactions. This keeps account balances accurate without double-counting funds in your budget. For example, moving money from checking to savings:- Decreases the checking account balance
- Increases the savings account balance
- Does not affect category budgets