{
  "tool_id": "food_to_exercise",
  "slug": "food-to-exercise-converter",
  "path": "/food-to-exercise-converter/",
  "mode": "url_api",
  "api_usage": "GET https://aifithub.io/api/food-to-exercise-converter/?<params>",
  "sample_input": {
    "tool": "food_to_exercise",
    "calories": 285,
    "weight_kg": 70,
    "food_name": "Pizza slice"
  },
  "input_schema": {
    "type": "object",
    "properties": {
      "tool": {
        "type": "string"
      },
      "calories": {
        "type": "integer"
      },
      "weight_kg": {
        "type": "integer"
      },
      "food_name": {
        "type": "string"
      }
    },
    "required": [
      "tool",
      "calories",
      "weight_kg",
      "food_name"
    ]
  },
  "output_schema": {
    "type": "object",
    "properties": {
      "calories": {
        "type": "number"
      },
      "foodName": {
        "type": "string"
      },
      "weightKg": {
        "type": "number"
      },
      "exercises": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "name": {
              "type": "string"
            },
            "met": {
              "type": "number"
            },
            "minutes": {
              "type": "number"
            },
            "formattedDuration": {
              "type": "string"
            },
            "caloriesPer30Min": {
              "type": "number"
            }
          }
        }
      }
    }
  }
}
