Loan Calculator API

POST

Calculate monthly loan payments and total interest paid.

Loan Calculator computes monthly loan payments, total interest, and overall loan costs based on principal, annual interest rate, and term length. Include an optional down payment to determine adjusted financing balances and interest ratios.

Try it — live request, no key required

Request
POSTapi.apiverve.com/v1/loanpaymentcalculator
Body
Verification
Format

No key required to try it. Get a key to use it in your app.

Example
{
  "status": "ok",
  "error": null,
  "data": {
    "loanAmount": 32000,
    "downpayment": 0,
    "interestRate": 8.5,
    "loanTerm": 6,
    "monthly_payment": 568.91,
    "total_interest_paid": 8961.4,
    "total_payment": 40961.52,
    "interestRatio": 21.88,
    "formatted": {
      "loanAmount": "$32,000.00",
      "monthlyPayment": "$568.91",
      "totalInterestPaid": "$8,961.40",
      "totalPayment": "$40,961.52"
    },
    "amortization_schedule": [
      {
        "month": 1,
        "interest_payment": 226.67,
        "principal_payment": 342.24,
        "remaining_balance": 31657.76
      },
      {
        "month": 2,
        "interest_payment": 224.24,
        "principal_payment": 344.67,
        "remaining_balance": 31313.09
      },
      {
        "month": 3,
        "interest_payment": 221.8,
        "principal_payment": 347.11,
        "remaining_balance": 30965.99
      }
    ]
  }
}

About the Loan Calculator API

Loan Payment Calculator works by using the loan amount, interest rate, and loan term to calculate the monthly loan payment, total interest, and more.

What people use it for

Vehicle Financing Calculators
On auto marketplace listings, buyers test different down payment amounts to preview their estimated monthly installment and overall interest obligations.
Property Affordability Screening
To help home shoppers budget for properties, mortgage lead-generation sites generate expected monthly payments and lifetime repayment totals for selected terms.
Debt Consolidation Comparisons
Personal finance apps calculate total interest paid and interest ratios to show users how refinancing balances changes their monthly repayment burden.
Loan Origination Portals
Before issuing a borrowing contract, lending software computes total repayment commitments and required monthly installments from applicant term lengths and rates.

Ways to call it

One endpoint, many ways in — REST with JSON, XML, YAML and CSV, plus GraphQL and an MCP interface for AI agents.

JSON
Default REST response
XML
Markup format
YAML
Human-readable
CSV
Tabular export
Beta
GraphQL
Query language
New
MCP
For AI agents

Other ways to use Loan Calculator

Same data, same APIVerve account, same credit balance — one key works on all of them.

Questions.

Common questions about the Loan Calculator API.

Read the docs
How many loan calculations does the Free plan cover?
The Free plan includes 200 credits each month, covering 100 loan calculations at 2 credits per call. For higher volume, the Starter plan covers up to 100,000 calculations monthly, which works out to about $0.30 per 1,000 calls.
Is the month-by-month amortization schedule included on the Free plan?
No, the full amortization schedule is a premium feature reserved for paid plans. Free requests provide the essential calculations like monthly payment and total interest, while any paid plan unlocks the monthly balance breakdown and pre-formatted currency amounts.
Can the calculation account for an upfront down payment?
Yes. You can supply an optional down payment amount with your request. The Loan Calculator subtracts the down payment from the loan amount before calculating interest and monthly payments.
Can I submit loan terms shorter than one year or in months?
No. The loan term parameter requires an integer representing duration in full years, such as 5 for an auto loan or 30 for a mortgage.
Does the calculator accept fractional interest rates?
Yes. The interest rate parameter accepts decimal values, so you can pass specific percentages like 6.875 or 4.25 directly.

Ready to build with Loan Calculator? Start with 200 free credits — one key unlocks all 300+ APIs.

Explore the catalog

300+ APIs on the same key and the same response shape.

Browse all APIs