get_category
Retrieve detailed category information from YNAB including goals, budgeted amounts, activity, and balance for specific budget categories to analyze spending patterns and track financial progress.
Instructions
Get a single category with full details including goal information.
Args:
budget_id: The ID of the budget (use 'last-used' for default budget)
category_id: The category ID
Returns:
JSON string with category details including goals, budgeted amounts, activity, and balance
Input Schema
Name | Required | Description | Default |
---|---|---|---|
budget_id | Yes | ||
category_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"budget_id": {
"title": "Budget Id",
"type": "string"
},
"category_id": {
"title": "Category Id",
"type": "string"
}
},
"required": [
"budget_id",
"category_id"
],
"type": "object"
}