> ## 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 Pending Liquidations

> List unsettled liquidations for a market

Returns liquidations that have not yet been settled, enriched with on-chain data from the router.

## 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}/pending-liquidations" \
    -H "X-API-Key: trusset_your_key_here"
  ```
</RequestExample>

<ResponseExample>
  ```json Response theme={null}
  {
    "success": true,
    "data": {
      "pendingLiquidations": [
        {
          "liquidationId": "4",
          "marketId": "clx_market_001",
          "loanId": "7",
          "status": "PENDING",
          "onChainData": {
            "collateralAmount": "50.000000000000000000",
            "collateralRemaining": "50.000000000000000000",
            "debtOwed": "4272.500000",
            "proceedsCollected": "0.000000",
            "settled": false
          }
        }
      ],
      "totalCount": 1
    }
  }
  ```
</ResponseExample>
