Finance Tracker API
Github
Github
  1. Report
  • Auth
    • Login
      POST
    • Register
      POST
    • Login Google
      GET
    • Login Google Callback
      GET
  • User
    • Get Me
      GET
    • Update Profile
      PUT
    • Change Password
      PUT
    • Set Password for User Register by Google
      PUT
    • Get Password Status
      GET
  • Category
    • Create Category
      POST
    • Update Category
      PUT
    • Get Category by User
      GET
    • Delete Category
      DELETE
  • Wallet
    • Create Wallet
      POST
    • Update Wallet
      PUT
    • Get Wallet by User
      GET
    • Delete Wallet
      DELETE
  • Transaction
    • Delete Transaction
      DELETE
    • Get Transaction by User
      GET
    • Update Transaction
      PUT
    • Create Transaction
      POST
  • Setting
    • Get Setting
    • Update Setting
  • Report
    • Get Wallet Summary
      GET
    • Get Chart Line Data
      GET
    • Get Chart Pie Data
      GET
  1. Report

Get Chart Line Data

Developing
GET
/report/chart/line
Maintainer:Sofyan R.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'http://localhost:3000/report/chart/line?startDate=2025-07-24&endDate=2025-07-24'
Response Response Example
{
    "success": true,
    "message": "Line chart data fetched successfully",
    "data": [
        {
            "date": "24 Jul 2025",
            "income": 0,
            "expense": 0
        }
    ]
}

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Query Params

Responses

🟢200OK
application/json
Body

Modified at 2025-07-28 09:02:21
Previous
Get Wallet Summary
Next
Get Chart Pie Data
Built with