This tool syncs the expenses from Splitwise to Firefly III using their respective APIs.
This is designed to be run as a cron job to sync the past n
days' transactions.
Set these variables either in the environment or a .env
file along with the script. For docker, the location would be /app/.env
.
SPLITWISE_TOKEN
: Get the token after registering your app as mentioned in their docs.FIREFLY_URL=http://firefly:8080
: Set your Firefly III instance URL.FIREFLY_TOKEN
: Set your Firefly III Personal Access Token as shown in their docs.FIREFLY_DEFAULT_SPEND_ACCOUNT=Amex
: Set the default source account to use when you paid for the expense in Splitwise.FIREFLY_DEFAULT_TRXFR_ACCOUNT=Chase
: Set the default source account to use when someone else paid for the expense in Splitwise.FIREFLY_DEFAULT_CATEGORY
: Set the default category to use. If empty, falls back to the Splitwise category.FIREFLY_DRY_RUN
: Set this to any value to dry run and skip the firefly API call.SPLITWISE_DAYS=1
SW_BALANCE_ACCOUNT=Splitwise balance
: Set this to the name of the virtual Splitwise balance asset account on Firefly to enable the debt tracking feature.
When enabled, tracks Splitwise payable and receivable debts in an account defined by SW_BALANCE_ACCOUNT
.
For example, assume you paid 100$ but your share was only 40$. Splitwise records correctly that you are owed 60$ - so your total assets haven't really decreased by 100$, only by 40$. Enabling this feature correctly tracks this in Firefly, without compromising on recording the real 100$ transaction you will see in your bank statement.
For each Splitwise expense, create two Firefly transactions:
- A withdrawal from a real account, recording the real amount of money paid in the expense
- A deposit to the
SW_BALANCE_ACCOUNT
equal the difference between the amount paid and the amount owed.
Enter a note or a comment in the below format on Splitwise:
Firefly[/destination-account][/category][/description][/source-account]
If the destination account is not provided, the expense title will be used, which may create a new expense account on Firefly. The next two use their respective defaults from environment variables. Description, if provided, overrides the Splitwise description. Only the user's comments will be considered, not anyone else. If you update the transaction in any way after someone entered a note (not comment) that matches, it will be considered. Priority is for the latest comment > old comment > notes.
See issues for current drawbacks in the implementation.