> ## Documentation Index
> Fetch the complete documentation index at: https://docs.txcloud.thetekcircle.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Quick pre-qualification



## OpenAPI

````yaml openapi/lending.yaml post /lending/prequalify
openapi: 3.0.3
info:
  title: TXCloud LendingRisk API
  version: 1.0.0
  description: |
    Credit risk assessment and affordability analysis for lending decisions.
    Aggregates data from bank statements, bureaus, and alternative sources.
servers:
  - url: https://api.txcloud.io/v1
  - url: https://sandbox.api.txcloud.io/v1
security:
  - BearerAuth: []
tags:
  - name: Assessment
    description: Credit assessment endpoints
  - name: Income
    description: Income verification
  - name: Statements
    description: Bank statement analysis
  - name: Monitoring
    description: Borrower monitoring
  - name: Models
    description: Scoring models
  - name: Analytics
    description: Portfolio analytics
paths:
  /lending/prequalify:
    post:
      tags:
        - Assessment
      summary: Quick pre-qualification
      operationId: prequalify
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PrequalifyRequest'
      responses:
        '200':
          description: Pre-qualification result
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Prequalification'
components:
  schemas:
    PrequalifyRequest:
      type: object
      required:
        - monthly_income
        - loan_amount
        - loan_term_months
      properties:
        applicant_id:
          type: string
        monthly_income:
          type: number
        existing_monthly_debts:
          type: number
        loan_amount:
          type: number
        loan_term_months:
          type: integer
    Prequalification:
      type: object
      properties:
        id:
          type: string
        likely_qualified:
          type: boolean
        confidence:
          type: number
        estimated_score_range:
          type: object
        estimated_max_amount:
          type: number
        dti_estimate:
          type: number
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer

````