Quickstart Guide
Get up and running with EHF Mortgages by creating an account and completing your first mortgage-related task in under 5 minutes.
const response = await fetch('https://api.example.com/v1/mortgages/calculate', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
principal: 300000,
rate: 0.045,
termYears: 30
})
});
const data = await response.json();
import requests
response = requests.post(
'https://api.example.com/v1/mortgages/calculate',
headers={
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
json={
'principal': 300000,
'rate': 0.045,
'termYears': 30
}
)
data = response.json()
{
"success": true,
"monthlyPayment": 1520.06,
"totalPayment": 546818.24,
"amortization": [...]
}
Prerequisites
Ensure you have:
- A valid email address for account registration
- Access to a modern web browser (Chrome, Firefox, Safari)
- Basic information ready: income details, loan amount, and credit score for your first mortgage calculation
Create Your Account
Follow these steps to register for EHF Mortgages.
Visit the Dashboard
Navigate to https://dashboard.example.com/signup.
Enter Your Details
Provide your email, full name, and create a strong password. Agree to the terms of service.
Verify Email
Check your inbox for a verification email from EHF Mortgages and click the confirmation link.
Complete Setup
Return to the dashboard to finalize your profile with optional details like phone number.
Log In and Access Your Dashboard
Once registered, log in to explore the interface.
Sign In
Go to https://dashboard.example.com/login and enter your credentials.
Dashboard Overview
You'll land on the main dashboard showing recent applications, calculators, and account settings.
Perform Your First Mortgage Calculation
Calculate a sample mortgage to get familiar with core features. Choose your preferred method below.
- From the dashboard, select Mortgage Calculator.
- Enter details: principal amount (
$300,000), interest rate (4.5%), and term (30 years). - Click Calculate to view monthly payments and amortization schedule.
Use the mortgage calculation endpoint for programmatic access.
Save your calculation results for later reference or share via the export feature.
Basic Interface Walkthrough
Key sections of the EHF Mortgages dashboard:
Applications
Track and manage your mortgage applications.
Calculators
Tools for rates, affordability, and more.
Reports
Download PDF summaries and analytics.
Next Steps
Authentication
Set up secure API access and webhooks.
Full Guides
Explore all features and advanced workflows.
Congratulations! You've completed the quickstart. Dive deeper into mortgage applications and integrations.
Last updated today