{
  "tool_id": "creatine_intake_calculator",
  "slug": "creatine-intake-calculator",
  "path": "/creatine-intake-calculator/",
  "mode": "url_api",
  "api_usage": "GET https://aifithub.io/api/creatine-intake-calculator/?<params>",
  "sample_input": {
    "tool": "creatine_intake",
    "body_weight_kg": 82,
    "protocol": "maintenance",
    "loading_phase_days": 7,
    "training_days_per_week": 4
  },
  "input_schema": {
    "type": "object",
    "properties": {
      "tool": {
        "type": "string"
      },
      "body_weight_kg": {
        "type": "integer"
      },
      "protocol": {
        "type": "string"
      },
      "loading_phase_days": {
        "type": "integer"
      },
      "training_days_per_week": {
        "type": "integer"
      }
    },
    "required": [
      "tool",
      "body_weight_kg",
      "protocol",
      "loading_phase_days",
      "training_days_per_week"
    ]
  },
  "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": {
          "body_weight_kg": {
            "type": "number"
          },
          "protocol": {
            "type": "string"
          },
          "loading_phase_days": {
            "type": "number"
          },
          "training_days_per_week": {
            "type": "number"
          }
        }
      }
    }
  }
}
