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

# get_folder_summary

> Fetch the stored summary for a folder

<Tabs>
  <Tab title="Sync">
    ```python theme={null}
    def get_folder_summary(
        folder_id_or_path: str,
    ) -> Summary
    ```
  </Tab>

  <Tab title="Async">
    ```python theme={null}
    async def get_folder_summary(
        folder_id_or_path: str,
    ) -> Summary
    ```
  </Tab>
</Tabs>

## Parameters

* `folder_id_or_path` (str): Folder identifier (UUID, name, or canonical path)

## Returns

* `Summary`: Stored summary payload for the folder

## Examples

<Tabs>
  <Tab title="Sync">
    ```python theme={null}
    from morphik import Morphik

    db = Morphik()
    summary = db.get_folder_summary("/projects/alpha")
    print(summary.content)
    ```
  </Tab>

  <Tab title="Async">
    ```python theme={null}
    from morphik import AsyncMorphik

    async with AsyncMorphik() as db:
        summary = await db.get_folder_summary("/projects/alpha")
        print(summary.content)
    ```
  </Tab>
</Tabs>
