Create a branded rate sheet

POST/v1/sheets

Creates a rate-sheet artifact and returns a shareable URL plus the underlying tool id.

FieldTypeRequiredDescription
addressstringyesSubject property address.
pricenumberyesPurchase price in CAD.
taxesnumbernoAnnual property tax.
condoFeesnumbernoMonthly condo fees, if any.
utilitiesnumbernoMonthly utilities estimate.
amortizationnumbernoAmortization in years (default 25).
provincestringnoTwo-letter province code (default ON).
tiersarray<object>noOptional per-sheet rate-tier override.

Example#

curl -X POST https://app.mortgagemeter.ca/api/v1/sheets \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{ "address": "123 Main St, Toronto, ON", "price": 850000, "taxes": 5400, "amortization": 25, "province": "ON" }'