{
  "tool_id": "bmr_calculator",
  "slug": "bmr-calculator",
  "path": "/bmr-calculator/",
  "mode": "url_api",
  "api_usage": "GET https://aifithub.io/api/bmr-calculator/?<params>",
  "sample_input": {
    "tool": "bmr_calculator",
    "sex": "male",
    "age": 30,
    "weight_kg": 78,
    "height_cm": 178,
    "activity_level": "moderate"
  },
  "input_schema": {
    "type": "object",
    "properties": {
      "tool": {
        "type": "string"
      },
      "sex": {
        "type": "string"
      },
      "age": {
        "type": "integer"
      },
      "weight_kg": {
        "type": "integer"
      },
      "height_cm": {
        "type": "integer"
      },
      "activity_level": {
        "type": "string"
      }
    },
    "required": [
      "tool",
      "sex",
      "age",
      "weight_kg",
      "height_cm",
      "activity_level"
    ]
  },
  "output_schema": {
    "type": "object",
    "properties": {
      "primaryLabel": {
        "type": "string"
      },
      "primaryValue": {
        "type": "number"
      },
      "primaryFormat": {
        "type": "string"
      },
      "summary": {
        "type": "string"
      },
      "metrics": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "label": {
              "type": "string"
            },
            "value": {
              "type": "number"
            },
            "format": {
              "type": "string"
            }
          }
        }
      },
      "warnings": {
        "type": "array",
        "items": {}
      },
      "assumptionsEcho": {
        "type": "object",
        "properties": {
          "sex": {
            "type": "string"
          },
          "age": {
            "type": "number"
          },
          "weight_kg": {
            "type": "number"
          },
          "height_cm": {
            "type": "number"
          },
          "activity_level": {
            "type": "string"
          }
        }
      }
    }
  }
}
