Install
openclaw skills install simplefinConnects to bank accounts and fetches financial transactions via the SimpleFIN API. Use when the user wants to check bank balances, review recent transactions, track expenses, or connect to a new bank account using SimpleFIN. It automatically guides the user through the Setup Token claim process if they haven't connected before.
openclaw skills install simplefinThe simplefin skill allows you to connect to the user's bank accounts to retrieve account balances and transaction history using the SimpleFIN Bridge API.
Before you can fetch any data, you need the user's SimpleFIN Access URL.
memory/simplefin_url.txt or in the environment variables (e.g., openclaw.json under SIMPLEFIN_ACCESS_URL).node scripts/simplefin_api.js claim "THE_SETUP_TOKEN_HERE"
The script will output the true Access URL (https://username:password@...).memory/simplefin_url.txt so the user doesn't have to provide it again in the future. The Setup Token is single-use and cannot be used again.Use the provided Node.js script scripts/simplefin_api.js to interact with the API. It requires the access_url as the first argument.
To view all connected bank accounts and their current balances:
node scripts/simplefin_api.js "https://username:password@beta-bridge.simplefin.org/simplefin" accounts
This will output a JSON array of accounts, including their IDs, names, currencies, and balances.
To retrieve the transaction history across accounts:
node scripts/simplefin_api.js "https://username:password@beta-bridge.simplefin.org/simplefin" transactions [options]
Options:
--start-date YYYY-MM-DD: Filter transactions on or after this date.--end-date YYYY-MM-DD: Filter transactions on or before this date.--account "Account Name or ID": Filter transactions for a specific account.Example: Fetching transactions for March 2026
node scripts/simplefin_api.js "https://username:password@beta-bridge.simplefin.org/simplefin" transactions --start-date 2026-03-01 --end-date 2026-03-31
If you need to make changes to the SimpleFIN integration, look up error schemas, or review API limits, consult the developer guide: