Overview
The LoanVista API is a powerful set of REST endpoints that allows you to manage mortgage loans, sync with LOS (Loan Origination Systems), and calculate rates programmatically. The API is built on top of ASP.NET Core and is documented using OpenAPI 3.0.Base URL
| Environment | Base URL |
|---|---|
| Production | https://api.loanvista.com |
| Development | http://localhost:5000 |
Authentication
All API endpoints are authenticated using Bearer tokens. You can obtain a token by following our authentication guide.OpenAPI Specification
You can download our full OpenAPI specification here:LoanVista OpenAPI Spec
View and download the full JSON specification for the LoanVista API.
Response Format
All responses are returned as standard JSON objects. Successful responses are typically returned within the2xx status code range.
Error Handling
LoanVista uses standard HTTP status codes to indicate the success or failure of an API request.| Status Code | Description |
|---|---|
| 200 - OK | The request was successful. |
| 400 - Bad Request | The server could not understand the request due to invalid syntax. |
| 401 - Unauthorized | Authentication is required and has failed or has not yet been provided. |
| 403 - Forbidden | The client does not have access rights to the content. |
| 404 - Not Found | The server can not find the requested resource. |
| 500 - Internal Server Error | The server has encountered a situation it does not know how to handle. |

