{
  "tool_id": "social_security_breakeven",
  "slug": "social-security-breakeven-calculator",
  "path": "/social-security-breakeven-calculator/",
  "mode": "url_api",
  "api_usage": "GET https://aifinhub.io/api/social-security-breakeven-calculator/?<params>",
  "sample_input": {
    "tool": "social_security_breakeven",
    "current_age": 55,
    "monthly_benefit_at_62": 1800,
    "monthly_benefit_at_67": 2500,
    "monthly_benefit_at_70": 3100,
    "expected_lifespan": 85,
    "annual_cola_percent": 2.5
  },
  "input_schema": {
    "type": "object",
    "properties": {
      "tool": { "type": "string" },
      "current_age": { "type": "number" },
      "monthly_benefit_at_62": { "type": "number" },
      "monthly_benefit_at_67": { "type": "number" },
      "monthly_benefit_at_70": { "type": "number" },
      "expected_lifespan": { "type": "number" },
      "annual_cola_percent": { "type": "number" }
    },
    "required": [
      "tool",
      "current_age",
      "monthly_benefit_at_62",
      "monthly_benefit_at_67",
      "monthly_benefit_at_70",
      "expected_lifespan",
      "annual_cola_percent"
    ]
  },
  "output_schema": {
    "type": "object",
    "properties": {
      "strategies": { "type": "array", "items": { "type": "object" } },
      "recommendation": { "type": "string" },
      "warnings": { "type": "array", "items": {} }
    }
  }
}
