{
  "id": "payment-calculator",
  "version": "7.0.0",
  "name": "Payment Calculator",
  "shortName": "Payment",
  "description": "Calculate your monthly loan payments and total interest for any type of loan.",
  "category": "Finance",
  "categorySlug": "finance",
  "keywords": [
    "payment"
  ],
  "status": "live",
  "workStatus": "pending",
  "reviewStatus": "pending",
  "migrationStatus": "migrated",
  "migratedDate": "2026-08-18",
  "engine": "legacy-react",
  "creator": null,
  "reviewer": null,
  "quality": {
    "availability": "live",
    "technicalReviewRecord": "/reviews/payment-calculator.json",
    "qualifiedReview": "pending",
    "qualifiedReviewer": null,
    "qualifiedReviewDate": null,
    "formulaVersion": "7.0.0",
    "referenceCoverage": "references-pending",
    "releaseTestScope": "Catalog and regression checks are not a professional formula audit; consult release evidence.",
    "historicalMetadataDate": "2026-08-18",
    "historicalMetadataNotice": "The imported date is not evidence of a completed human review."
  },
  "urls": {
    "page": "/calculator/payment-calculator/",
    "definition": "/calculator/payment-calculator/definition.json",
    "schema": "/calculator/payment-calculator/schema.json",
    "llms": "/calculator/payment-calculator/llms.txt",
    "legacyDefinition": "/calculator/payment-calculator.json"
  },
  "queryExample": "https://askcalculators.com/calculator/payment-calculator/?loanAmount=10000&interestRate=5&loanTerm=5",
  "queryParameters": {
    "loanAmount": {
      "label": "Loan Amount ($)",
      "type": "number",
      "required": false,
      "default": 10000
    },
    "interestRate": {
      "label": "Interest Rate (%)",
      "type": "number",
      "required": false,
      "default": 5
    },
    "loanTerm": {
      "label": "Loan Term (Years)",
      "type": "number",
      "required": false,
      "default": 5
    }
  },
  "inputs": [
    {
      "id": "loanAmount",
      "label": "Loan Amount ($)",
      "type": "number",
      "defaultValue": 10000
    },
    {
      "id": "interestRate",
      "label": "Interest Rate (%)",
      "type": "number",
      "defaultValue": 5
    },
    {
      "id": "loanTerm",
      "label": "Loan Term (Years)",
      "type": "number",
      "defaultValue": 5
    }
  ],
  "outputs": [
    {
      "id": "result",
      "label": "Result",
      "format": "text",
      "primary": true
    }
  ],
  "formula": {
    "expression": "Monthly payment = P·r·(1+r)^n ÷ ((1+r)^n−1); total interest = monthly payment × n − P."
  },
  "examples": [
    {
      "label": "Reproducible default-input example (not a personal recommendation)",
      "inputs": {
        "loanAmount": 10000,
        "interestRate": 5,
        "loanTerm": 5
      }
    }
  ],
  "sources": []
}
