Skip to main content
POST
/
lending
/
prequalify
Quick pre-qualification
curl --request POST \
  --url https://api.txcloud.io/v1/lending/prequalify \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "monthly_income": 123,
  "loan_amount": 123,
  "loan_term_months": 123,
  "applicant_id": "<string>",
  "existing_monthly_debts": 123
}
'
{
  "id": "<string>",
  "likely_qualified": true,
  "confidence": 123,
  "estimated_score_range": {},
  "estimated_max_amount": 123,
  "dti_estimate": 123
}

Authorizations

Authorization
string
header
required

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

Body

application/json
monthly_income
number
required
loan_amount
number
required
loan_term_months
integer
required
applicant_id
string
existing_monthly_debts
number

Response

200 - application/json

Pre-qualification result

id
string
likely_qualified
boolean
confidence
number
estimated_score_range
object
estimated_max_amount
number
dti_estimate
number