logo
API Reference
Authentication
Lead: Create
Eligibility: 3.Get
Eligibility: 1.Init
Eligibility: 2.Verify
SSO: Login URL
powered by zuplo
Sign in

Abhiloans Partner API (v2)

BASE URL
https://api.partners.stage.abhiloans.com/

Authentication

Sign into view and manage your API credentials

Lead: Create

creates single lead with submitted details of the user

Protected by API Key

Headers

Authorization

required, string

The Authorization header is used to authenticate with the API using your API key. Value is of the format Bearer YOUR_KEY_HERE.

Request Body

mobileNumber

required, string

Registered contact number of the user. 10 digits

panNumber

required, string

Permanent Account Number (PAN) of the user

dateOfBirth

required, string

formatted as YYYY-MM-DD

POST
/v2/leads
1
EXAMPLE BODY
{
  "mobileNumber": "9999955555",
  "panNumber": "DJXXXXXXXX",
  "dateOfBirth": "1997-10-06"
}

Eligibility: 3.Get

Part 3 of a 3-step process. Get the eligibility data

Protected by API Key

Headers

Authorization

required, string

The Authorization header is used to authenticate with the API using your API key. Value is of the format Bearer YOUR_KEY_HERE.

Query Parameters

requestId

required, string

Request ID received on the init call

GET
/v2/eligibility
1

Eligibility: 1.Init

Part 1 of a 3-step process. Trigger the process to check eligible loan amount of user. This will generate an OTP that will be received on the specified mobile number. In the next step (Eligibility: Verify), that OTP will be required. If an isDuplicate=true flag is received in the response, it indicates that a eligiblity request was made in the last 24 hours. The Eligibility: 3.GET call can be made directly using this requestId

Protected by API Key

Headers

Authorization

required, string

The Authorization header is used to authenticate with the API using your API key. Value is of the format Bearer YOUR_KEY_HERE.

Request Body

panNumber

required, string

Permanent Account Number (PAN) of the user

mobileNumber

required, string

Registered contact number of the user. 10 digits

POST
/v2/eligibility
1
EXAMPLE BODY
{
  "mobileNumber": "9999955555",
  "panNumber": "DJXXXXXXXX"
}

Eligibility: 2.Verify

Part 2 of a 3-step process. Verify the OTP that was be received on the specified mobile number. This SHOULD NOT be used if the INIT response has an isDuplicate=true flag.

Protected by API Key

Headers

Authorization

required, string

The Authorization header is used to authenticate with the API using your API key. Value is of the format Bearer YOUR_KEY_HERE.

Request Body

requestId

required, string

Request ID received on the init call

otp

required, string

Unique code received on the registered mobile number

POST
/v2/eligibility/verify
1
EXAMPLE BODY
{
  "requestId": "cer_asbjsdfl34",
  "otp": "123456"
}

SSO: Login URL

Get the Login URL for abhiloans page

Protected by API Key

Headers

Authorization

required, string

The Authorization header is used to authenticate with the API using your API key. Value is of the format Bearer YOUR_KEY_HERE.

Query Parameters

mobileNumber

required, string

Mobile Number to be used for login

GET
/v2/ssoLink
1