{
  "tool_id": "paycheck_take_home",
  "slug": "paycheck-take-home-calculator",
  "path": "/paycheck-take-home-calculator/",
  "mode": "url_api",
  "api_usage": "GET https://aifinhub.io/api/paycheck-take-home-calculator/?<params>",
  "sample_input": {
    "tool": "paycheck_take_home",
    "gross_salary": 85000,
    "pay_frequency": "biweekly",
    "filing_status": "single",
    "federal_allowances": 1,
    "pretax_401k_percent": 6,
    "pretax_health_insurance": 200,
    "state_tax_rate_percent": 5
  },
  "input_schema": {
    "type": "object",
    "properties": {
      "tool": { "type": "string" },
      "gross_salary": { "type": "number" },
      "pay_frequency": { "type": "string" },
      "filing_status": { "type": "string" },
      "federal_allowances": { "type": "number" },
      "pretax_401k_percent": { "type": "number" },
      "pretax_health_insurance": { "type": "number" },
      "state_tax_rate_percent": { "type": "number" }
    },
    "required": [
      "tool",
      "gross_salary",
      "pay_frequency",
      "filing_status",
      "federal_allowances",
      "pretax_401k_percent",
      "pretax_health_insurance",
      "state_tax_rate_percent"
    ]
  },
  "output_schema": {
    "type": "object",
    "properties": {
      "netTakeHomePerPaycheck": { "type": "number" },
      "annualNetIncome": { "type": "number" },
      "federalTaxWithheld": { "type": "number" },
      "ficaWithheld": { "type": "number" },
      "stateTaxWithheld": { "type": "number" }
    }
  }
}
