{
  "tool_id": "calories_burned_calculator",
  "slug": "calories-burned-calculator",
  "path": "/calories-burned-calculator/",
  "mode": "url_api",
  "api_usage": "GET https://aifithub.io/api/calories-burned-calculator/?<params>",
  "sample_input": {
    "tool": "calories_burned",
    "weight_kg": 78,
    "duration_minutes": 45,
    "activity_met": 7.5,
    "incline_percent": 0
  },
  "input_schema": {
    "type": "object",
    "properties": {
      "tool": {
        "type": "string"
      },
      "weight_kg": {
        "type": "integer"
      },
      "duration_minutes": {
        "type": "integer"
      },
      "activity_met": {
        "type": "number"
      },
      "incline_percent": {
        "type": "integer"
      }
    },
    "required": [
      "tool",
      "weight_kg",
      "duration_minutes",
      "activity_met",
      "incline_percent"
    ]
  },
  "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": {
          "weight_kg": {
            "type": "number"
          },
          "duration_minutes": {
            "type": "number"
          },
          "activity_met": {
            "type": "number"
          },
          "incline_percent": {
            "type": "number"
          }
        }
      }
    }
  }
}
