CortexSys Finance Managements
  1. Transactions
CortexSys Finance Managements
  • Auth
    • Register User
      POST
    • Login User
      POST
    • Refresh Token
      POST
    • User Info
      GET
  • Transactions
    • Get User Transactions
      GET
    • Create Transactions
      POST
    • Update Transaction
      PUT
    • Delete Transaction
      DELETE
  • Budgets
    • Get User Budget
      GET
    • Create Budget
      POST
    • Update Budget
      PUT
    • Delete Budget
      DELETE
  1. Transactions

Get User Transactions

Developing
GET
http://localhost:8000/api/transactions/
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'http://localhost:8000/api/transactions/' \
--header 'Cookie: access_token='
Response Response Example
200 - Success
{
    "result": true,
    "massage": "success",
    "data": [
        {
            "id": 2,
            "title": "up for meaningfully converse bare",
            "amount": 651,
            "type": "Income",
            "date": "2026-07-07",
            "notes": "Duis",
            "created_at": "2025-08-17T05:42:14.684437Z",
            "user": 12
        },
        {
            "id": 3,
            "title": "up converse bare",
            "amount": 452,
            "type": "Income",
            "date": "2026-07-07",
            "notes": "Duis",
            "created_at": "2025-08-17T05:42:14.684437Z",
            "user": 12
        }
    ]
}

Request

Cookie Params

Responses

🟢200Success
application/json
Body

🟠401401
Modified at 2025-08-17 19:31:42
Previous
User Info
Next
Create Transactions
Built with