{
  "tool_id": "calorie_deficit_calculator",
  "slug": "calorie-deficit-calculator",
  "path": "/calorie-deficit-calculator/",
  "mode": "url_api",
  "api_usage": "GET https://aifithub.io/api/calorie-deficit-calculator/?<params>",
  "sample_input": {
    "tool": "calorie_deficit",
    "current_weight_kg": 85,
    "target_weight_kg": 75,
    "weeks": 20,
    "activity_level": "moderate"
  },
  "input_schema": {
    "type": "object",
    "properties": {
      "tool": {
        "type": "string"
      },
      "current_weight_kg": {
        "type": "integer"
      },
      "target_weight_kg": {
        "type": "integer"
      },
      "weeks": {
        "type": "integer"
      },
      "activity_level": {
        "type": "string"
      }
    },
    "required": [
      "tool",
      "current_weight_kg",
      "target_weight_kg",
      "weeks",
      "activity_level"
    ]
  },
  "output_schema": {
    "type": "object",
    "properties": {
      "weightChangeKg": {
        "type": "number"
      },
      "totalCalorieDelta": {
        "type": "number"
      },
      "dailyDeficit": {
        "type": "number"
      },
      "weeklyRateKg": {
        "type": "number"
      },
      "targetDailyCalories": {
        "type": "number"
      }
    }
  }
}
