> For the complete documentation index, see [llms.txt](https://docs.tnid.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.tnid.com/api-reference/002_company/019_settings/003__get_company_dashboard_stats.md).

# Get Company Dashboard Stats

GraphQL endpoint: `/company`

Returns aggregate counts for the company's dashboard: established B2B and B2C connections, plus pending B2B and C2B connection requests awaiting a response.

## Query

```graphql
query {
  companyDashboardStats {
    pendingC2bConnectionRequestsCount
    b2cConnectionsCount
    pendingB2bConnectionRequestsCount
    b2bConnectionsCount
  }
}

```

## Variables

```json
{}
```

## Response

```json
{
  "data": {
    "companyDashboardStats": {
      "b2bConnectionsCount": 0,
      "b2cConnectionsCount": 0,
      "pendingB2bConnectionRequestsCount": 0,
      "pendingC2bConnectionRequestsCount": 0
    }
  }
}
```
