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

# Get Network Stats

> Get an overview of your Clustr network

Get aggregated statistics: total connectors, opportunities, target accounts, confidence distribution, top companies, and recent import activity.

## Response Fields

<ResponseField name="connectors" type="integer">
  Total number of connectors (imported people) in your network
</ResponseField>

<ResponseField name="total_opportunities" type="integer">
  Total referral opportunities discovered across all connectors
</ResponseField>

<ResponseField name="target_accounts" type="integer">
  Number of target accounts configured
</ResponseField>

<ResponseField name="opportunities_by_confidence" type="object">
  Opportunity counts grouped by confidence score range:

  * `high`: confidence 80-100
  * `medium`: confidence 60-79
  * `low`: confidence 0-59
</ResponseField>

<ResponseField name="top_companies" type="array">
  Top 5 companies by opportunity count. Each entry has `name` and `opportunities_count`.
</ResponseField>

<ResponseField name="recent_imports" type="object">
  Import activity counts:

  * `last_7_days`: imports in the past week
  * `last_30_days`: imports in the past month
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl "https://api.clustr-ai.com/api/public/network/stats" \
    -H "Authorization: Bearer YOUR_API_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true,
    "data": {
      "connectors": 25,
      "total_opportunities": 1250,
      "target_accounts": 10,
      "opportunities_by_confidence": {
        "high": 320,
        "medium": 580,
        "low": 350
      },
      "top_companies": [
        { "name": "Acme Corp", "opportunities_count": 45 },
        { "name": "Globex Inc", "opportunities_count": 38 }
      ],
      "recent_imports": {
        "last_7_days": 3,
        "last_30_days": 12
      }
    }
  }
  ```
</ResponseExample>
