> ## 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 Router Stats

> Aggregate statistics from the shared liquidation router

Returns global counters from the liquidation router contract: total liquidations received, settled, collateral processed, and USDC proceeds routed.

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

<ResponseExample>
  ```json Response theme={null}
  {
    "success": true,
    "data": {
      "totalReceived": "15",
      "totalSettled": "12",
      "totalCollateralProcessed": "750.000000000000000000",
      "totalProceedsRouted": "125000.000000"
    }
  }
  ```
</ResponseExample>
