{
  "id": "square-footage-calculator",
  "version": "20.13.0",
  "name": "Square Footage Calculator",
  "shortName": "Square footage",
  "description": "Calculate area for repeated rectangular spaces in square feet, yards, and acres. Add editable USD material and labor prices and compare low, middle and high budget scenarios.",
  "category": "Home & Construction",
  "categorySlug": "home-construction",
  "keywords": [
    "room area",
    "floor area",
    "square feet",
    "acres"
  ],
  "status": "live",
  "workStatus": "pending",
  "reviewStatus": "pending",
  "migrationStatus": "migrated",
  "migratedDate": "2026-09-10",
  "engine": "native",
  "creator": null,
  "reviewer": null,
  "quality": {
    "availability": "live",
    "technicalReviewRecord": "/reviews/square-footage-calculator.json",
    "qualifiedReview": "pending",
    "qualifiedReviewer": null,
    "qualifiedReviewDate": null,
    "formulaVersion": "20.13.0",
    "referenceCoverage": "references-listed",
    "releaseTestScope": "Flagship reference cases are specified in scripts/test-v20-1.mjs; consult release evidence for executed results.",
    "historicalMetadataDate": "2026-08-18",
    "historicalMetadataNotice": "The imported date is not evidence of a completed human review."
  },
  "notice": "Planning quantities and user-entered USD costs, not a contractor quote, structural design or code approval. Default prices are zero (unpriced); enter your supplier and labor quotes. New changes await independent review.",
  "urls": {
    "page": "/us/square-footage/",
    "definition": "/us/square-footage/definition.json",
    "schema": "/us/square-footage/schema.json",
    "llms": "/us/square-footage/llms.txt",
    "legacyDefinition": "/us/square-footage/definition.json"
  },
  "queryExample": "https://askcalculators.com/us/square-footage/?length=12&width=10&quantity=2&unitCost=4&laborCost=300&deliveryCost=50&costSpreadPercent=15",
  "queryParameters": {
    "unitSystem": {
      "label": "Dimension units",
      "type": "select",
      "required": false,
      "default": "imperial"
    },
    "length": {
      "label": "Length (ft / m)",
      "type": "number",
      "required": true,
      "default": 12
    },
    "width": {
      "label": "Width (ft / m)",
      "type": "number",
      "required": true,
      "default": 10
    },
    "quantity": {
      "label": "Number of equal areas",
      "type": "number",
      "required": true,
      "default": 1
    },
    "unitCost": {
      "label": "Material price (USD / square foot)",
      "type": "money",
      "required": false,
      "default": 0
    },
    "laborCost": {
      "label": "Total labor allowance (USD)",
      "type": "money",
      "required": false,
      "default": 0
    },
    "deliveryCost": {
      "label": "Delivery allowance (USD)",
      "type": "money",
      "required": false,
      "default": 0
    },
    "costSpreadPercent": {
      "label": "Low/high variation around entered subtotal (%)",
      "type": "percent",
      "required": false,
      "default": 15
    }
  },
  "inputs": [
    {
      "id": "unitSystem",
      "label": "Dimension units",
      "type": "select",
      "defaultValue": "imperial",
      "options": [
        {
          "label": "US customary (ft, in)",
          "value": "imperial"
        },
        {
          "label": "Metric (m, cm)",
          "value": "metric"
        }
      ],
      "help": "Changing this selector converts dimensions already entered. Prices keep the purchasing unit printed beside each price."
    },
    {
      "id": "length",
      "label": "Length (ft / m)",
      "type": "number",
      "required": true,
      "defaultValue": 12,
      "min": 0,
      "step": 0.01,
      "width": "half"
    },
    {
      "id": "width",
      "label": "Width (ft / m)",
      "type": "number",
      "required": true,
      "defaultValue": 10,
      "min": 0,
      "step": 0.01,
      "width": "half"
    },
    {
      "id": "quantity",
      "label": "Number of equal areas",
      "type": "number",
      "required": true,
      "defaultValue": 1,
      "min": 1,
      "max": 1000000,
      "step": 1,
      "width": "full"
    },
    {
      "id": "unitCost",
      "label": "Material price (USD / square foot)",
      "type": "money",
      "defaultValue": 0,
      "min": 0,
      "step": 0.01,
      "help": "Zero means unpriced. Use a current supplier quote; do not treat zero as free."
    },
    {
      "id": "laborCost",
      "label": "Total labor allowance (USD)",
      "type": "money",
      "defaultValue": 0,
      "min": 0,
      "step": 0.01
    },
    {
      "id": "deliveryCost",
      "label": "Delivery allowance (USD)",
      "type": "money",
      "defaultValue": 0,
      "min": 0,
      "step": 0.01
    },
    {
      "id": "costSpreadPercent",
      "label": "Low/high variation around entered subtotal (%)",
      "type": "percent",
      "defaultValue": 15,
      "min": 0,
      "max": 100,
      "step": 1,
      "help": "A user-adjustable planning scenario, not a researched local price range."
    }
  ],
  "outputs": [
    {
      "id": "totalSquareFeet",
      "label": "Total square feet",
      "format": "number",
      "primary": true
    },
    {
      "id": "singleArea",
      "label": "Area each",
      "format": "number"
    },
    {
      "id": "squareYards",
      "label": "Square yards",
      "format": "number"
    },
    {
      "id": "acres",
      "label": "Acres",
      "format": "number",
      "digits": 6
    },
    {
      "id": "squareMetres",
      "label": "Total area (m²)",
      "format": "number",
      "digits": 3
    },
    {
      "id": "materialCost",
      "label": "Material cost",
      "format": "currency",
      "currency": "USD"
    },
    {
      "id": "laborCost",
      "label": "Labor allowance",
      "format": "currency",
      "currency": "USD"
    },
    {
      "id": "deliveryCost",
      "label": "Delivery allowance",
      "format": "currency",
      "currency": "USD"
    },
    {
      "id": "unitRate",
      "label": "Entered USD rate / square foot",
      "format": "currency",
      "currency": "USD"
    },
    {
      "id": "estimatedTotal",
      "label": "Entered subtotal",
      "format": "currency",
      "currency": "USD"
    },
    {
      "id": "costLow",
      "label": "Low budget scenario",
      "format": "currency",
      "currency": "USD"
    },
    {
      "id": "costMid",
      "label": "Middle budget scenario",
      "format": "currency",
      "currency": "USD"
    },
    {
      "id": "costHigh",
      "label": "High budget scenario",
      "format": "currency",
      "currency": "USD"
    },
    {
      "id": "pricingStatus",
      "label": "Pricing status",
      "format": "text"
    }
  ],
  "formula": {
    "expression": "Total square feet = length × width × quantity; material = unrounded purchase quantity × entered unit price; middle = material + labor + delivery; low/high = middle × (1 ∓ variation/100)"
  },
  "examples": [
    {
      "label": "Illustrative USD purchasing scenario",
      "inputs": {
        "length": 12,
        "width": 10,
        "quantity": 2,
        "unitCost": 4,
        "laborCost": 300,
        "deliveryCost": 50,
        "costSpreadPercent": 15
      }
    }
  ],
  "sources": [
    {
      "label": "NIST SI conversion factors — accessed 10 September 2026",
      "url": "https://www.nist.gov/pml/special-publication-811/nist-guide-si-appendix-b-conversion-factors"
    },
    {
      "label": "NIST international-foot guidance — accessed 10 September 2026",
      "url": "https://www.nist.gov/pml/us-surveyfoot"
    },
    {
      "label": "NIST: SI conversion factors",
      "url": "https://www.nist.gov/pml/special-publication-811/nist-guide-si-appendix-b-conversion-factors/nist-guide-si-appendix-b8"
    },
    {
      "label": "OpenStax Prealgebra: geometry and measurement reference",
      "url": "https://openstax.org/details/books/prealgebra-2e"
    }
  ],
  "publicSlug": "square-footage",
  "namespace": "us",
  "countries": [
    "us"
  ]
}
