Create a branded rate sheet
POST
/v1/sheetsCreates a rate-sheet artifact and returns a shareable URL plus the underlying tool id.
| Field | Type | Required | Description |
|---|---|---|---|
| address | string | yes | Subject property address. |
| price | number | yes | Purchase price in CAD. |
| taxes | number | no | Annual property tax. |
| condoFees | number | no | Monthly condo fees, if any. |
| utilities | number | no | Monthly utilities estimate. |
| amortization | number | no | Amortization in years (default 25). |
| province | string | no | Two-letter province code (default ON). |
| tiers | array<object> | no | Optional 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" }'