> ## 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_summary

> Fetch the latest summary for a folder scope

This method is available on `Folder` objects.

<Tabs>
  <Tab title="Sync">
    ```python theme={null}
    def get_summary() -> Summary
    ```
  </Tab>

  <Tab title="Async">
    ```python theme={null}
    async def get_summary() -> Summary
    ```
  </Tab>
</Tabs>

## Returns

* `Summary`: Stored summary payload for the folder

## Examples

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

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

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

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