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

# Get Liquidatable Loans

> List all loans with health factor below 1.0

Scans all active loans in the market and returns those eligible for liquidation. Health factor values below `1.0` indicate the loan is undercollateralized.

## Path Parameters

<ParamField path="marketId" type="string" required>Market ID.</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl "https://api.trusset.org/lending-stocks/api/liquidations/{marketId}/liquidatable-loans" \
    -H "X-API-Key: trusset_your_key_here"
  ```
</RequestExample>

<ResponseExample>
  ```json Response theme={null}
  {
    "success": true,
    "data": {
      "totalActiveLoans": 12,
      "liquidatableLoans": [
        {
          "loanId": 7,
          "borrower": "0xabc...def",
          "collateralAmount": "50.000000000000000000",
          "principal": "8500.000000",
          "accruedInterest": "45.000000",
          "healthFactor": "0.920000000000000000"
        }
      ]
    }
  }
  ```
</ResponseExample>
