{
  "tool_id": "walking_calorie_calculator",
  "slug": "walking-calorie-calculator",
  "path": "/walking-calorie-calculator/",
  "mode": "url_api",
  "api_usage": "GET https://aifithub.io/api/walking-calorie-calculator/?<params>",
  "sample_input": {
    "tool": "walking_calorie",
    "weight_kg": 78,
    "speed": "brisk",
    "duration_minutes": 45,
    "incline": "slight"
  },
  "input_schema": {
    "type": "object",
    "properties": {
      "tool": {
        "type": "string"
      },
      "weight_kg": {
        "type": "integer"
      },
      "speed": {
        "type": "string"
      },
      "duration_minutes": {
        "type": "integer"
      },
      "incline": {
        "type": "string"
      }
    },
    "required": [
      "tool",
      "weight_kg",
      "speed",
      "duration_minutes",
      "incline"
    ]
  },
  "output_schema": {
    "type": "object",
    "properties": {
      "calories": {
        "type": "number"
      },
      "caloriesPerMinute": {
        "type": "number"
      },
      "met": {
        "type": "number"
      },
      "inclineMultiplier": {
        "type": "number"
      },
      "durationHours": {
        "type": "number"
      },
      "foodEquivalents": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "label": {
              "type": "string"
            },
            "caloriesPerItem": {
              "type": "number"
            },
            "equivalentCount": {
              "type": "number"
            }
          }
        }
      }
    }
  }
}
