{
  "id": "carbohydrate-calculator",
  "version": "2.0.0",
  "name": "Carbohydrate Calculator",
  "shortName": "Carbohydrates",
  "description": "Estimate daily calorie needs and convert a selected carbohydrate share into grams, with a 45–65% reference interval and 130-gram adult comparison.",
  "category": "Health & Fitness",
  "categorySlug": "health-fitness",
  "keywords": [
    "carbohydrate intake",
    "carbs per day",
    "AMDR carbohydrates",
    "daily carbs"
  ],
  "status": "live",
  "workStatus": "pending",
  "reviewStatus": "pending",
  "migrationStatus": "migrated",
  "migratedDate": "2026-08-25",
  "engine": "native",
  "creator": null,
  "reviewer": null,
  "quality": {
    "availability": "live",
    "technicalReviewRecord": "/reviews/carbohydrate-calculator.json",
    "qualifiedReview": "pending",
    "qualifiedReviewer": null,
    "qualifiedReviewDate": null,
    "formulaVersion": "2.0.0",
    "referenceCoverage": "references-listed",
    "releaseTestScope": "Catalog and regression checks are not a professional formula audit; consult release evidence.",
    "historicalMetadataDate": "2026-08-25",
    "historicalMetadataNotice": "The imported date is not evidence of a completed human review."
  },
  "notice": "Carbohydrate needs vary with health, pregnancy, medicines, and activity. Do not use this estimate to manage diabetes or another condition without qualified guidance.",
  "urls": {
    "page": "/calculator/carbohydrate-calculator/",
    "definition": "/calculator/carbohydrate-calculator/definition.json",
    "schema": "/calculator/carbohydrate-calculator/schema.json",
    "llms": "/calculator/carbohydrate-calculator/llms.txt",
    "legacyDefinition": "/calculator/carbohydrate-calculator.json"
  },
  "queryExample": "https://askcalculators.com/calculator/carbohydrate-calculator/?unitSystem=metric&sex=male&age=30&formula=mifflin&weightKg=70&heightCm=175&activity=moderate&carbPercent=50",
  "queryParameters": {
    "unitSystem": {
      "label": "Units",
      "type": "select",
      "required": true,
      "default": "metric"
    },
    "sex": {
      "label": "Sex used by equation",
      "type": "select",
      "required": true,
      "default": "male"
    },
    "age": {
      "label": "Age",
      "type": "number",
      "required": true,
      "default": 30
    },
    "formula": {
      "label": "BMR equation",
      "type": "select",
      "required": true,
      "default": "mifflin"
    },
    "bodyFatPercent": {
      "label": "Body fat",
      "type": "percent",
      "required": true,
      "default": 20,
      "showWhen": {
        "field": "formula",
        "equals": "katch"
      }
    },
    "weightKg": {
      "label": "Weight",
      "type": "number",
      "required": true,
      "default": 70,
      "showWhen": {
        "field": "unitSystem",
        "equals": "metric"
      }
    },
    "heightCm": {
      "label": "Height",
      "type": "number",
      "required": true,
      "default": 175,
      "showWhen": {
        "field": "unitSystem",
        "equals": "metric"
      }
    },
    "weightLb": {
      "label": "Weight",
      "type": "number",
      "required": true,
      "default": 154,
      "showWhen": {
        "field": "unitSystem",
        "equals": "imperial"
      }
    },
    "feet": {
      "label": "Height feet",
      "type": "number",
      "required": true,
      "default": 5,
      "showWhen": {
        "field": "unitSystem",
        "equals": "imperial"
      }
    },
    "inches": {
      "label": "Height inches",
      "type": "number",
      "required": true,
      "default": 9,
      "showWhen": {
        "field": "unitSystem",
        "equals": "imperial"
      }
    },
    "activity": {
      "label": "Activity level",
      "type": "select",
      "required": true,
      "default": "moderate"
    },
    "carbPercent": {
      "label": "Target carbohydrate share",
      "type": "percent",
      "required": true,
      "default": 50
    }
  },
  "inputs": [
    {
      "id": "unitSystem",
      "label": "Units",
      "type": "select",
      "required": true,
      "defaultValue": "metric",
      "options": [
        {
          "label": "Metric",
          "value": "metric"
        },
        {
          "label": "Imperial",
          "value": "imperial"
        }
      ],
      "width": "full"
    },
    {
      "id": "sex",
      "label": "Sex used by equation",
      "type": "select",
      "required": true,
      "defaultValue": "male",
      "options": [
        {
          "label": "Male",
          "value": "male"
        },
        {
          "label": "Female",
          "value": "female"
        }
      ],
      "width": "half"
    },
    {
      "id": "age",
      "label": "Age",
      "type": "number",
      "required": true,
      "defaultValue": 30,
      "min": 18,
      "max": 100,
      "step": 1,
      "suffix": "years",
      "width": "half"
    },
    {
      "id": "formula",
      "label": "BMR equation",
      "type": "select",
      "required": true,
      "defaultValue": "mifflin",
      "options": [
        {
          "label": "Mifflin–St Jeor",
          "value": "mifflin"
        },
        {
          "label": "Revised Harris–Benedict",
          "value": "harris"
        },
        {
          "label": "Katch–McArdle",
          "value": "katch"
        }
      ],
      "width": "full"
    },
    {
      "id": "bodyFatPercent",
      "label": "Body fat",
      "type": "percent",
      "required": true,
      "defaultValue": 20,
      "min": 1,
      "max": 79,
      "step": 0.1,
      "suffix": "%",
      "showWhen": {
        "field": "formula",
        "equals": "katch"
      },
      "width": "full"
    },
    {
      "id": "weightKg",
      "label": "Weight",
      "type": "number",
      "required": true,
      "defaultValue": 70,
      "min": 1,
      "max": 500,
      "step": 0.1,
      "suffix": "kg",
      "showWhen": {
        "field": "unitSystem",
        "equals": "metric"
      },
      "width": "half"
    },
    {
      "id": "heightCm",
      "label": "Height",
      "type": "number",
      "required": true,
      "defaultValue": 175,
      "min": 50,
      "max": 300,
      "step": 0.1,
      "suffix": "cm",
      "showWhen": {
        "field": "unitSystem",
        "equals": "metric"
      },
      "width": "half"
    },
    {
      "id": "weightLb",
      "label": "Weight",
      "type": "number",
      "required": true,
      "defaultValue": 154,
      "min": 2,
      "max": 1100,
      "step": 0.1,
      "suffix": "lb",
      "showWhen": {
        "field": "unitSystem",
        "equals": "imperial"
      },
      "width": "full"
    },
    {
      "id": "feet",
      "label": "Height feet",
      "type": "number",
      "required": true,
      "defaultValue": 5,
      "min": 1,
      "max": 9,
      "step": 1,
      "suffix": "ft",
      "showWhen": {
        "field": "unitSystem",
        "equals": "imperial"
      },
      "width": "half"
    },
    {
      "id": "inches",
      "label": "Height inches",
      "type": "number",
      "required": true,
      "defaultValue": 9,
      "min": 0,
      "max": 11.9,
      "step": 0.1,
      "suffix": "in",
      "showWhen": {
        "field": "unitSystem",
        "equals": "imperial"
      },
      "width": "half"
    },
    {
      "id": "activity",
      "label": "Activity level",
      "type": "select",
      "required": true,
      "defaultValue": "moderate",
      "options": [
        {
          "label": "Sedentary",
          "value": "sedentary"
        },
        {
          "label": "Light activity",
          "value": "light"
        },
        {
          "label": "Moderate activity",
          "value": "moderate"
        },
        {
          "label": "Active",
          "value": "active"
        },
        {
          "label": "Very active",
          "value": "veryActive"
        },
        {
          "label": "Extra active",
          "value": "extraActive"
        }
      ],
      "width": "full"
    },
    {
      "id": "carbPercent",
      "label": "Target carbohydrate share",
      "type": "percent",
      "required": true,
      "defaultValue": 50,
      "min": 5,
      "max": 80,
      "step": 1,
      "suffix": "% of calories",
      "width": "full"
    }
  ],
  "outputs": [
    {
      "id": "targetCarbs",
      "label": "Target carbohydrate amount",
      "format": "number",
      "primary": true,
      "digits": 0,
      "suffix": " g/day"
    },
    {
      "id": "referenceRange",
      "label": "45–65% reference range",
      "format": "text"
    },
    {
      "id": "calories",
      "label": "Estimated daily energy",
      "format": "number",
      "digits": 0,
      "suffix": " kcal/day"
    },
    {
      "id": "targetCaloriesFromCarbs",
      "label": "Calories from carbohydrate",
      "format": "number",
      "digits": 0,
      "suffix": " kcal/day"
    },
    {
      "id": "minimumComparison",
      "label": "130 g comparison",
      "format": "text"
    }
  ],
  "formula": {
    "expression": "Daily energy = BMR × activity factor; carbohydrate grams = calories × carbohydrate share ÷ 4."
  },
  "examples": [
    {
      "label": "Reproducible default-input example (not a personal recommendation)",
      "inputs": {
        "unitSystem": "metric",
        "sex": "male",
        "age": 30,
        "formula": "mifflin",
        "bodyFatPercent": 20,
        "weightKg": 70,
        "heightCm": 175,
        "weightLb": 154,
        "feet": 5,
        "inches": 9,
        "activity": "moderate",
        "carbPercent": 50
      }
    }
  ],
  "sources": [
    {
      "label": "Calculator.net reference calculator",
      "url": "https://www.calculator.net/carbohydrate-calculator.html"
    },
    {
      "label": "National Academies dietary reference intake overview",
      "url": "https://nap.nationalacademies.org/catalog/10490/dietary-reference-intakes-for-energy-carbohydrate-fiber-fat-fatty-acids-cholesterol-protein-and-amino-acids"
    }
  ]
}
