Return all money transfers in the authenticated user’s active wallet that carry a tag belonging to the specified category. Filtering is scoped to the current user’s active wallet — transfers in other wallets that share the same category tag are excluded from the response. Each transfer in the result includes the full set of its own tags (which may span multiple categories) and the display name of the user who created it.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/akevalion/life_cost/llms.txt
Use this file to discover all available pages before exploring further.
Endpoint
Authentication
Required. The request must be made with an active session cookie obtained through the Google OAuth login flow.Path Parameters
The unique integer ID of the
Category record to filter by. This is the id returned in the tags[].id field of any transfer list response.Response
The response shape depends on whether the category exists and has any linked transfers.Success — transfers found
An array of transfer objects in the same shape returned byGET /last_money_transfers/<limit>.
The unique identifier of the transfer.
Human-readable description of the transfer.
Transfer amount. Negative for expenses, positive for income.
ISO 8601 timestamp (UTC) when the transfer was created.
ISO 8601 timestamp (UTC) of the last modification. Field name is
modifed_at (single i) matching the database column.All category/tag objects associated with this transfer — not just the one matching
category_id.username of the user who created the transfer.Success — category exists but has no tags
The wallet-scoping filter is applied at the
MoneyTransfer level via a JOIN on Tag: only transfers whose wallet_id matches current_user.last_visited_wallet_id are returned. A category that has tags in other wallets will still return an empty result for the current user.Example Request
Example Response — transfers found
Example Response — no tags for category
Error Cases
| Status | Body | Condition |
|---|---|---|
302 Found | — | The user is not authenticated. |
404 Not Found | {"error": "Category not found"} | No Category record exists with the given category_id. |
200 OK | {"message": "No tags associated with this category"} | The category exists but has no Tag records linked to it at all (across any wallet). |