get_single_category
Retrieve detailed information for a specific financial category in LunchMoney, including inherited properties from category groups when applicable.
Instructions
Get hydrated details on a single category. Note that if this category is part of a category group, its properties (is_income, exclude_from_budget, exclude_from_totals) will inherit from the category group.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
input | Yes |
Input Schema (JSON Schema)
{
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"categoryId": {
"description": "Id of the category to query. Should call the get_all_categories tool first to get the ids.",
"type": "string"
}
},
"required": [
"categoryId"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}