curl --request GET \
--url https://api.ai2fin.com/api/expenses \
--header 'Authorization: Bearer <token>'{
"expenses": [
{
"id": "<string>",
"date": "2023-12-25",
"description": "<string>",
"amount": 123,
"categoryId": "<string>",
"isTaxDeductible": true,
"taxDeductions": [
{}
]
}
],
"pagination": {
"page": 123,
"limit": 123,
"total": 123,
"pages": 123
}
}Retrieve expenses with tax deduction information
curl --request GET \
--url https://api.ai2fin.com/api/expenses \
--header 'Authorization: Bearer <token>'{
"expenses": [
{
"id": "<string>",
"date": "2023-12-25",
"description": "<string>",
"amount": 123,
"categoryId": "<string>",
"isTaxDeductible": true,
"taxDeductions": [
{}
]
}
],
"pagination": {
"page": 123,
"limit": 123,
"total": 123,
"pages": 123
}
}