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

# Summary

> Python SDK reference for the summary resource

<Note>The Bevor SDK is coming soon. This page previews its planned Python interface.</Note>

Access this resource from `client.summary`. Both async and sync clients expose the same methods.

## `user_breakdown`

GET `/security/summary/users`

<CodeGroup>
  ```python Async theme={null}
  result = await client.summary.user_breakdown()
  ```

  ```python Sync theme={null}
  result = client.summary.user_breakdown()
  ```
</CodeGroup>

| Parameter    | Type         | Required | Default |
| ------------ | ------------ | -------- | ------- |
| `project_id` | `ID \| None` | No       | `None`  |

**Returns:** `ResultsResponse[UserBreakdownSchema]`

## `history_breakdown`

GET `/security/summary/projects/{project_id}/history`

<CodeGroup>
  ```python Async theme={null}
  result = await client.summary.history_breakdown(
      project_id=project_id,
  )
  ```

  ```python Sync theme={null}
  result = client.summary.history_breakdown(
      project_id=project_id,
  )
  ```
</CodeGroup>

| Parameter    | Type | Required | Default |
| ------------ | ---- | -------- | ------- |
| `project_id` | `ID` | Yes      | `—`     |

**Returns:** `ResultsResponse[AnalysisTrendPoint]`

## `network`

GET `/security/summary/projects/{project_id}/network`

<CodeGroup>
  ```python Async theme={null}
  result = await client.summary.network(
      project_id=project_id,
  )
  ```

  ```python Sync theme={null}
  result = client.summary.network(
      project_id=project_id,
  )
  ```
</CodeGroup>

| Parameter    | Type | Required | Default |
| ------------ | ---- | -------- | ------- |
| `project_id` | `ID` | Yes      | `—`     |

**Returns:** `ResultsResponse[AnalysisNetworkPoint]`
