get-mortgage-rates
Retrieve real-time mortgage rates, compare loan products, and calculate payments by inputting loan details such as credit score, property value, and loan type. Ideal for evaluating financing options.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
creditScore | No | Credit score (300-850) | |
downPayment | No | Down payment amount in dollars | |
format | No | Output format | markdown |
loanAmount | No | Loan amount in dollars | |
loanTerm | No | Loan term in years (15, 30, etc.) | |
loanType | No | Loan type (conventional, fha, va, usda) | |
occupancy | No | Occupancy type (primary, secondary, investment) | |
propertyType | No | Property type (single_family, condo, townhouse, multi_family) | |
propertyValue | No | Property value in dollars | |
rateType | No | Rate type (fixed, arm) | |
state | No | State abbreviation (e.g., CA, TX, NY) | |
zipCode | No | ZIP code |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"creditScore": {
"description": "Credit score (300-850)",
"type": "number"
},
"downPayment": {
"description": "Down payment amount in dollars",
"type": "number"
},
"format": {
"default": "markdown",
"description": "Output format",
"enum": [
"structured",
"markdown",
"csv",
"pipe"
],
"type": "string"
},
"loanAmount": {
"description": "Loan amount in dollars",
"type": "number"
},
"loanTerm": {
"description": "Loan term in years (15, 30, etc.)",
"type": "number"
},
"loanType": {
"description": "Loan type (conventional, fha, va, usda)",
"type": "string"
},
"occupancy": {
"description": "Occupancy type (primary, secondary, investment)",
"type": "string"
},
"propertyType": {
"description": "Property type (single_family, condo, townhouse, multi_family)",
"type": "string"
},
"propertyValue": {
"description": "Property value in dollars",
"type": "number"
},
"rateType": {
"description": "Rate type (fixed, arm)",
"type": "string"
},
"state": {
"description": "State abbreviation (e.g., CA, TX, NY)",
"type": "string"
},
"zipCode": {
"description": "ZIP code",
"type": "string"
}
},
"type": "object"
}