Home

Awesome

Expense Manager Api v1.0

Expense Manager is Restful API which is used to manage expenses and income.

Overview:

Installation:

Make sure to have Nodejs and Mongodb in your system.

npm install
nodemon

How can we use this API endpoints?

first you need to create an account and login to get access token, calling this endpoint /api/v1/auth/login with following body:

{
    "username": "your_username",
    "password": "your_password"
}

or you can login with pin to get access token, calling this endpoint /api/v1/auth/loginWithPin with following body:

{
    "pin_Number": "your_pin"
}

after you get access token, you can call any endpoint of this API, but you need to add Authorization header with access token.

Contribute this API

you can contribute this API by creating a pull request on this repository by forking, adding your code and submit a pull request, but make sure to add new ideas and features.

Authors

License