{
  "slug": "net-worth-tracker",
  "name": "gizza-ai/net-worth-tracker",
  "version": "0.1.0",
  "title": "Net Worth Calculator — Total Assets Minus Liabilities by Category — gizza.ai",
  "description": "Paste your assets and liabilities and calculate net worth with a per-category breakdown, proportional bars, and a debt-to-asset ratio. Runs in your browser.",
  "tags": [
    "net worth calculator",
    "net worth tracker",
    "assets and liabilities",
    "balance sheet",
    "debt to asset ratio",
    "personal finance",
    "net worth by category",
    "financial health"
  ],
  "category": "data",
  "urls": {
    "page": "https://gizza.ai/tools/net-worth-tracker/",
    "markdown": "https://gizza.ai/tools/net-worth-tracker/index.md",
    "descriptor": "https://gizza.ai/tools/net-worth-tracker/tool.json",
    "deep_link_example": "https://gizza.ai/tools/net-worth-tracker/?input=Item%2C%20Amount%2C%20Type%2C%20Category%0AChecking%2C%208000%2C%20asset%2C%20Cash%0ABrokerage%2C%2042000%2C%20asset%2C%20Investments%0A401%28k%29%2C%2095000%2C%20asset%2C%20Retirement%0AHome%2C%20320000%2C%20asset%2C%20Real%20Estate%0ACar%2C%2018000%2C%20asset%2C%20Vehicles%0AMortgage%2C%20240000%2C%20liability%2C%20Real%20Estate%0AAuto%20Loan%2C%209000%2C%20liability%2C%20Vehicles%0ACredit%20Card%2C%203500%2C%20liability%2C%20Credit%20Card&sort=value&currency=%24"
  },
  "cli": "gizza tool net-worth-tracker \"Item, Amount, Type, Category\nChecking, 8000, asset, Cash\nBrokerage, 42000, asset, Investments\n401(k), 95000, asset, Retirement\nHome, 320000, asset, Real Estate\nCar, 18000, asset, Vehicles\nMortgage, 240000, liability, Real Estate\nAuto Loan, 9000, liability, Vehicles\nCredit Card, 3500, liability, Credit Card\"",
  "tool": {
    "description": "Compute net worth from a pasted list of assets and liabilities. Accepts CSV or tab-separated rows: label, amount, optional type (asset/liability), optional category. A row with no type is an asset unless its amount is negative. Returns a text balance sheet: total assets, total liabilities, net worth, a per-category breakdown of each side with value, percent, proportional bars and item counts, and the debt-to-asset ratio.",
    "parameters": {
      "additionalProperties": false,
      "properties": {
        "currency": {
          "default": "$",
          "description": "Currency symbol or prefix to display before amounts, such as $, €, £, or blank for no prefix.",
          "type": "string"
        },
        "input": {
          "description": "Assets and liabilities pasted as CSV or tab-separated rows: label, amount, optional type (asset/liability), optional category. A header row is allowed. A row with no type is an asset unless its amount is negative (or wrapped in parentheses), which marks a liability. Amounts may be currency values, thousands-separated numbers, or shares @ price.",
          "type": "string"
        },
        "sort": {
          "default": "value",
          "description": "Order categories within each side by descending value (default) or alphabetically by category label.",
          "enum": [
            "value",
            "label"
          ],
          "type": "string"
        }
      },
      "required": [
        "input"
      ],
      "type": "object"
    }
  }
}