hesaplayıcı
Menu

Water Intake Calculator: API and MCP

Water Intake Calculator over REST and MCP: input fields, limits, outputs, one example request and its real answer. Free, no sign-up.

GET /api/v1/tools/health.water-intake/mcp/health

Id
health.water-intake
Version
1.0.0
Access
Free
Tool page
Water Intake Calculator
Schema
GET /api/v1/tools/health.water-intake

Input

FieldTypeConstraintsDefaultDescription
groupstringwoman | man | pregnant | lactatingwomanFor whom?

Output

FieldTypeDescription
totalWaternumberTotal water a day (drinks and food) (L)
drinksnumberWater to drink (L)
glassesnumberGlasses (200 ml) (glasses)

Example request

{
  "input": {
    "group": "woman"
  },
  "locale": "en"
}
Example answer
{
  "output": {
    "totalWater": 2,
    "drinks": 1.6,
    "glasses": 8
  },
  "steps": [
    {
      "id": "totalWater",
      "formula": "total water = EFSA (woman)",
      "substitution": "total water = 2 L",
      "value": 2,
      "unit": "L"
    },
    {
      "id": "drinks",
      "formula": "from drinks = total water × 80%",
      "substitution": "from drinks = 2 × 80%",
      "value": 1.6,
      "unit": "L"
    },
    {
      "id": "glasses",
      "formula": "glasses = from drinks / 0.2 L",
      "substitution": "glasses = 1.6 / 0.2",
      "value": 8
    }
  ],
  "meta": {
    "toolVersion": "1.0.0",
    "locale": "en"
  },
  "citation": {
    "url": "https://hesaplayici.com/en/health/water-intake-calculator",
    "title": "Water Intake Calculator"
  }
}