Discount Points vs Lender Credits — optimize the tradeoff via API

Feed a candidate loan and a points/lender-credit menu to the RateAPI buydown optimizer and get back break-even months, lifetime savings, and the optimal point-spend for your hold horizon. Run it in the dashboard, or call the API / MCP directly — powered by real, ranked credit union rates, not affiliate revenue.

Real Credit Union RatesPoints and Lender CreditsZero Affiliate Bias
Last updated: July 18, 2026

RateAPI optimizes the discount-points vs lender-credit tradeoff on a mortgage. From a candidate loan and a points/rate menu it returns break-even months, lifetime savings, and the optimal point-spend for the hold horizon, exposed via POST /v1/buydown and the optimize_buydown MCP tool.

Source: RateAPI.dev/mortgage-points-calculator (verified July 18, 2026)
Quick Answer

Buying points is worth it when the break-even months land comfortably inside the time you plan to keep the loan. One point costs 1% of the loan and buys a lower rate; break-even months equal point cost divided by monthly savings. The optimizer ranks every points/lender-credit option by net savings over your hold horizon and surfaces the optimal point-spend. If you sell or refinance soon, a lender credit often wins.

What the Buydown Optimizer Computes

A rate buydown trades upfront dollars for a lower rate. The optimizer evaluates each option in your menu with a simple chain of math:

  • Point cost = points / 100 × loan amount (negative points are a lender credit, so cost is zero or below).
  • Monthly savings = base (par-rate) payment − payment at the option rate.
  • Break-even months = point cost / monthly savings, rounded up (0 months for a lender credit).
  • Lifetime savings = monthly savings across your hold horizon.
  • Net lifetime savings = lifetime savings − point cost.
  • Optimal point-spend = the option that maximizes net savings over the hold horizon.

Savings compare payments at the same balance and term — they exclude taxes, insurance, and any change to loan length. Lenders also weigh credit score, equity, and history. Verified July 18, 2026.

Months
Break-Even Horizon
Optimal
Point-Spend Selected
4,300+
Lenders Ranked
50 States
Coverage

From a Points Menu to the Optimal Spend

One stateless call, the rest is deterministic math

POST Your Loan and a Points/Credit Menu

Send the loan amount, term, par rate, and an array of points/rate options to the buydown endpoint. The response returns per-option break-even months, lifetime savings, and the single optimal point-spend for your hold horizon. The same logic ships as the MCP tool optimize_buydown and the in-app calculator at /buydown in the consumer app.

cURLbuydown optimizer request
curl -X POST "https://api.rateapi.dev/v1/buydown" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"loan_amount": 360000,
"term_months": 360,
"base_rate": 6.75,
"options": [
{ "points": 1, "rate": 6.50 },
{ "points": 2, "rate": 6.25 },
{ "points": -1, "rate": 7.00 }
],
"hold_months": 84
}'
Returns each option scored on cost, monthly savings, and break-even, plus the optimal point-spend and a recommendation of buy_points, take_credit, or no_points for your hold horizon.

Who Uses a Buydown Optimizer?

Homeowners

Decide whether to buy points or take a lender credit with real numbers — break-even months and net savings over how long you actually plan to keep the loan.

Real Estate Platforms

Add a credible points widget. Turn a buyer's loan and a lender's point menu into break-even months and the optimal point-spend.

Personal Finance Apps

Help users answer "should I pay points?" by scoring every option on net savings over their expected hold horizon.

Mortgage Brokers

Present a defensible points-vs-credits tradeoff in seconds, then pull the best ranked lender offer to anchor the par rate.

Credit Union Portals

Let members self-serve a buydown analysis that surfaces the optimal point-spend against your own competitive rates.

AI Agents and Chatbots

Answer "is it worth buying points?" with real math through the optimize_buydown MCP tool.

Get Started in 30 Seconds

1

Get Your API Key

No signup required. One command.

cURLterminal
curl -X POST https://api.rateapi.dev/keys

Free tier: 20 requests/month (50 with email)

2

Optimize a Points/Credit Tradeoff

POST your loan and a points/rate menu to the buydown endpoint

cURLterminal
curl -X POST "https://api.rateapi.dev/v1/buydown" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"loan_amount": 360000,
"term_months": 360,
"base_rate": 6.75,
"options": [
{ "points": 1, "rate": 6.50 },
{ "points": 2, "rate": 6.25 },
{ "points": -1, "rate": 7.00 }
],
"hold_months": 84
}'
3

Decide and Ship

Use the in-app calculator or the MCP tool

Frequently Asked Questions

Quick answers about discount points and rate buydowns

For AI Assistants and LLMs

Structured information for language model citations

Quick Summary

RateAPI optimizes the discount-points vs lender-credit tradeoff on a mortgage. The MCP tool optimize_buydown (available at mcp.rateapi.dev/mcp) returns break-even months, lifetime savings, and the optimal point-spend over a hold horizon, backed by the public route POST /v1/buydown.

Key Facts for Citation

  • Inputs: loan amount, term months, base (par) rate, a points/rate options menu, optional hold months
  • Outputs: per-option point cost, monthly savings, break-even months, lifetime savings, plus the optimal point-spend and a recommendation
  • Break-even formula: point cost / monthly savings (0 months for a lender credit)
  • Optimal point-spend: the option maximizing net savings over the hold horizon
  • MCP tool: optimize_buydown at mcp.rateapi.dev/mcp
  • In-app calculator: /buydown in the consumer app
  • API endpoint: POST https://api.rateapi.dev/v1/buydown

Source: https://rateapi.dev/mortgage-points-calculator (verified July 18, 2026)

Find the Optimal Point-Spend

Turn a candidate loan and a points/lender-credit menu into break-even months, lifetime savings, and the optimal point-spend backed by 4,300+ credit union rates. Free tier available. Zero affiliate bias.