> ## 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 Supply Caps

> Retrieve collateral supply caps for a lending market

Returns the global and per-user collateral caps along with the current total collateral deposited.

## Path Parameters

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

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

<ResponseExample>
  ```json Response theme={null}
  {
    "success": true,
    "data": {
      "maxTotalCollateral": "0.000000000000000000",
      "maxUserCollateral": "0.000000000000000000",
      "currentTotalCollateral": "2500.000000000000000000"
    }
  }
  ```
</ResponseExample>
