Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kfatehi/plaid-debt-tracker

track debt repayments by watching your bank account via integration with plaid
https://github.com/kfatehi/plaid-debt-tracker

Last synced: 19 days ago
JSON representation

track debt repayments by watching your bank account via integration with plaid

Awesome Lists containing this project

README

        

create a json file for the debt like this:

debt.json

```json
{
"matcher":"Zelle payment from Borrower",
"startBalance": 36000,
"startDate": "2021-06-01"
}
```

go through the plaid quickstart to get your plaid ids,
stick them in the config file:

config.js

```js
module.exports = {
clientId: 'plaid-client-id',
secret: 'plaid-secret',
access_token: 'access-development-your-bank-account-token',
}
```

now you can run main.js and your debt.json file will
populate with repayments per your matcher

you can run this daily against new transactions.

you can expand it to automate communications with the borrower, you, etc