Moneytoring is an api that provides functionality for users to link their bank accounts, see their transactions, categorize them with standard or custom categories and aggregate them
Source code: https://github.com/OrestisStefanou/moneytoring
Create an account
curl -X 'POST' \ 'http://127.0.0.1:8000/signup' \ -H 'accept: application/json' \ -H 'Content-Type: application/json' \ -d '{ "username": "ironman", "email": "ironman@gmail.com", "password": "jarvissendhelp" }'
Get access token to provide in requests
curl -X 'POST' \ 'http://127.0.0.1:8000/token' \ -H 'accept: application/json' \ -H 'Content-Type: application/x-www-form-urlencoded' \ -d 'grant_type=&username=ironman%40gmail.com&password=jarvissendhelp&scope=&client_id=&client_secret='
In the response you will receive the access_token
... read more