Introduction
Welcome to the RiskInMind API Documentation.
The RiskInMind API allows you to programmatically access the risk assessment and loan processing backend. You can manage API keys, process consumer and commercial loans, predict risk factors, and generate specific reports.
Base URL
All API requests should be prefixed with the following base URL:
https://api.riskinmind.ai/api/v1
Authentication
RiskInMind API support two methods of authentication:
1. Bearer Token (JWT)
Most user-facing actions require a Bearer token. You must pass it in the Authorization header:
Authorization: Bearer <your_access_token>
You can obtain this token by logging in via the /api/v1/auth/login endpoint.
2. API Keys
For programmatic or server-to-server access, you should use API Keys. These allow you to bypass traditional user login flows and are managed through the API Keys module.
X-API-Key: <your_api_key>