Skip to main content
GET
/
api
/
v1
/
tax-home-costs
List Tax Home Costs
curl --request GET \
  --url https://api.example.com/api/v1/tax-home-costs
[
  {
    "id": 1,
    "user_id": 1,
    "category": "rent",
    "amount": 120000,
    "month": 1,
    "year": 2025,
    "created_at": "2025-01-15T10:00:00.000Z"
  }
]

Query Parameters

year
string
Filter by year (YYYY format).
limit
integer
default:"100"
Maximum records (1–200).
offset
integer
default:"0"
Records to skip.

Response

Returns an array of cost objects with X-Total-Count header.
[
  {
    "id": 1,
    "user_id": 1,
    "category": "rent",
    "amount": 120000,
    "month": 1,
    "year": 2025,
    "created_at": "2025-01-15T10:00:00.000Z"
  }
]