Skip to main content

Prerequisites

To get the most out of LoanVista, you’ll need:
  • An active API key
  • Access to your LOS (Encompass / LendingPad) credentials
  • A running instance of the LoanVista API

Installation

LoanVista services are containerized for easy deployment. You can get started by running the full stack using Docker Compose.
git clone https://github.com/loanvista/platform.git
cd platform
docker-compose up -d

Configure Environment

Set up your appsettings.json or .env file with your database connection strings:
{
  "ConnectionStrings": {
    "MongoDb": "mongodb://localhost:27017/LoanVista",
    "Redis": "localhost:6379"
  }
}

First Steps

Once the platform is running, you can start managing your loan pipeline:
  1. Check API Health: GET /health
  2. Retrieve Loan Data: GET /api/loans
  3. Calculate Rates: POST /api/pricing/calculate

Next Steps

Explore our API Reference for a comprehensive list of all endpoints and their descriptions.