> ## 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 Liquidation Config

> Check liquidation infrastructure configuration for a market

Returns whether the market is authorized on the liquidation router and provides aggregate liquidation statistics.

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

<ResponseExample>
  ```json Response theme={null}
  {
    "success": true,
    "data": {
      "marketId": "clx_market_001",
      "marketAddress": "0x70A0...",
      "liquidationRouterAddress": "0xd48f...",
      "isConfigured": true,
      "stats": {
        "totalLiquidations": 3,
        "pendingLiquidationDebt": "0.000000",
        "totalAuctions": 1
      }
    }
  }
  ```
</ResponseExample>
