{
  "tool_id": "tdee_calculator",
  "slug": "tdee-calculator",
  "path": "/tdee-calculator/",
  "mode": "url_api",
  "api_usage": "GET https://aifithub.io/api/tdee-calculator/?<params>",
  "sample_input": {
    "tool": "tdee",
    "gender": "male",
    "age": 30,
    "weight_kg": 80,
    "height_cm": 178,
    "activity_level": "moderate"
  },
  "input_schema": {
    "type": "object",
    "properties": {
      "tool": {
        "type": "string"
      },
      "gender": {
        "type": "string"
      },
      "age": {
        "type": "integer"
      },
      "weight_kg": {
        "type": "integer"
      },
      "height_cm": {
        "type": "integer"
      },
      "activity_level": {
        "type": "string"
      }
    },
    "required": [
      "tool",
      "gender",
      "age",
      "weight_kg",
      "height_cm",
      "activity_level"
    ]
  },
  "output_schema": {
    "type": "object",
    "properties": {
      "bmr": {
        "type": "number"
      },
      "tdee": {
        "type": "number"
      },
      "activityFactor": {
        "type": "number"
      }
    }
  }
}
