Getting started
Guides
Concepts
Resources
The Risk Assessment API uses API keys to authenticate requests.
In particular, authentication to the API is performed via the HTTP request headers.
In order to perform an authenticated API call, you must set the following three parameters in the header of your HTTP request:
userId : ID of the user that is making the requestsessionToken : API keyOctober-Version : See current API version on API versioning pageIn this page, we guide you through getting an October API key and making your first authentication request.
To perform an authenticated API call programmatically, you must set the following header information:
userId: <YOUR-USER-ID>sessionToken: <YOUR-API-TOKEN>October-Version: <LATEST-OCTOBER-API-VERSION>You will find bellow an example of http request using curl:
curl <https://api.lending.soprafinancing.io/requests>
-H "October-Version: 2023-06-01"
****-H "userId: <YOUR-USER-ID>"
-H "sessionToken: <YOUR-API-TOKEN>"
<aside> ❗ IMPORTANT All requests that are sent to October API should only be done using HTTPS. Indeed, all API calls that do not have the header structure shown above will be rejected with the HTTP error code: 401
</aside>
Well done! You should now be able to integrate with our API.
<aside>
❗ IMPORTANT
The API key and userId provided to you carry your all the privileges given to you by October, so keep them secure! It is important that you do not share those informations in publicly accessible areas.
</aside>
← Previous
Getting Started: Get Access to API
Next →