Skip to main content
GET
/
loan-eligibility
/
bulk
/
results
cURL
curl --request GET \
  --url https://api.insightai.in/loan-eligibility/bulk/results \
  --header 'Authorization: Bearer <token>'
{
  "task_id": "<string>",
  "results": [
    {
      "eligibility": true,
      "recommended_loan_amount": 123,
      "loan_tenure": "<string>",
      "interest_rate": 123
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

taskId
string
required

The ID of the bulk processing task to fetch results for.

Response

Bulk loan eligibility results

task_id
string

The task ID for the bulk loan check.

results
object[]

The results of the bulk loan eligibility check.

I