Testing Your Connection

If your API connection has not yet been configured, you will need to complete that step first.

To test your connection to LoanPro's API, you’ll need to use an HTTP client—an application on your computer that will send HTTP requests. Postman and Insomnia are popular choices, and we recommend both of them.

Alternately, you could use command-line utilities (such as cURL) or an HTTP library for your chosen programming language. We list the raw HTTP requests in our documentation so that you can translate them to the language of your choice.

📘

LoanPro uses TLS 1.2 to encrypt communications. When selecting an HTTP client, make sure it’s compatible with TLS 1.2.

Using your API credentials, test your connection to LoanPro by sending a basic GET request like the following:

GET https://loanpro.simnang.com/api/public/api/1/odata.svc/Loans()
Authorization: Bearer {{token}}
Autopal-Instance-ID: {{Tenant ID}}
Content-Type: application/json

This request will pull the first 50 loans saved within your account.