Quickstart
Get started with the Stacc Mortgage API in minutes. This guide will show you how to make your first API request and start building mortgage applications.
You'll need API credentials to make requests. If you haven't set those up yet, check out our authentication guide first.
Making your first API request
Let's start by creating a new mortgage application. Here's a simple example using cURL:
POST
/flowscurl -G https://api-gateway.demo.mortgage.link-demo.stacc.live/api/mortgage \
-H "Authorization: Bearer {token}" \
-d '{
"application": {
"applicationType": "NEW_MORTGAGE",
"customer": {
"ssn": "12345678901"
}
}
}'
This request will:
- Create a new mortgage application
- Initialize it with basic customer information
- Return a flow ID that you can use to track the application's progress
What's next?
Now that you've created your first application, you can: