{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://askcalculators.com/calculator/apr-calculator/schema.json",
  "title": "APR Calculator inputs",
  "description": "Calculate the Annual Percentage Rate (APR) of a loan, which includes interest and fees.",
  "type": "object",
  "properties": {
    "loanAmount": {
      "title": "Loan Amount",
      "type": "number",
      "default": 20000
    },
    "interestRate": {
      "title": "Interest Rate",
      "type": "number",
      "default": 8
    },
    "term": {
      "title": "Loan Term (Years)",
      "type": "number",
      "default": 5
    },
    "fees": {
      "title": "Loan Fees / Costs",
      "type": "number",
      "default": 500
    }
  },
  "required": [],
  "additionalProperties": false,
  "x-askcalculators": {
    "version": "7.0.0",
    "calculatorUrl": "https://askcalculators.com/calculator/apr-calculator/",
    "queryExample": "https://askcalculators.com/calculator/apr-calculator/?loanAmount=20000&interestRate=8&term=5&fees=500",
    "migrationStatus": "migrated",
    "reviewStatus": "pending",
    "pageStatus": "live",
    "workStatus": "pending",
    "migratedDate": "2026-08-18",
    "formula": {
      "expression": "APR is the annualized monthly discount rate that equates loan proceeds after fees with all scheduled monthly payments."
    },
    "quality": {
      "availability": "live",
      "technicalReviewRecord": "/reviews/apr-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."
    },
    "outputs": {
      "result": {
        "title": "Result",
        "type": "string",
        "x-format": "text",
        "x-primary": true
      }
    }
  }
}
