hesaplayıcı
Menu

Calorie Calculator: API and MCP

Calorie 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.calorie/mcp/health

Id
health.calorie
Version
1.0.0
Access
Free
Tool page
Calorie Calculator
Schema
GET /api/v1/tools/health.calorie

Input

FieldTypeConstraintsDefaultDescription
sex (required)stringfemale | maleSex
age (required)integer≥ 18, ≤ 100Age (years)
weight (required)number≥ 30, ≤ 300Weight (kg)
height (required)number≥ 120, ≤ 230Height (cm)
activitystringsedentary | light | moderate | active | veryActivesedentaryActivity level

Output

FieldTypeDescription
bmrnumberBasal metabolic rate (BMR) (kcal/day)
tdeenumberDaily calorie need (kcal/day)

Example request

{
  "input": {
    "sex": "female",
    "age": 31,
    "weight": 65,
    "height": 168,
    "activity": "moderate"
  },
  "locale": "en"
}
Example answer
{
  "output": {
    "bmr": 1384,
    "tdee": 2145
  },
  "steps": [
    {
      "id": "bmr",
      "formula": "BMR = 10 × weight + 6.25 × height − 5 × age − 161",
      "substitution": "BMR = 10 × 65 + 6.25 × 168 − 5 × 31 − 161",
      "value": 1384,
      "unit": "kcal"
    },
    {
      "id": "tdee",
      "formula": "daily energy need = BMR × activity factor",
      "substitution": "daily energy need = 1,384 × 1.55",
      "value": 2145,
      "unit": "kcal"
    }
  ],
  "meta": {
    "toolVersion": "1.0.0",
    "locale": "en"
  },
  "citation": {
    "url": "https://hesaplayici.com/en/health/calorie-calculator",
    "title": "Calorie Calculator"
  }
}