Build with Reckoner

The modern Canadian mortgage API

Calculators, rate sheets, lead capture, and lender intelligence — over a clean REST API your team can ship against in an afternoon.

Quickstart#

Grab an API key from /settings/developer, then run your first calculation:

curl -X POST https://reckoner.app/api/v1/calculate/maximum-mortgage \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "inputs": {
      "grossAnnualIncome": 120000,
      "downPayment": 100000,
      "debts": [],
      "rentalIncome": { "rentalIncome": 0 },
      "annualPropertyTax": 4800,
      "monthlyHeating": 100,
      "monthlyCondoFees": 0,
      "contractRate": 5.39,
      "amortYears": 25,
      "gdsCap": 0.39,
      "tdsCap": 0.44
    }
  }'