> ## Documentation Index
> Fetch the complete documentation index at: https://agno-v2-service-account.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Load Workflow from Database

> Demonstrates loading a workflow from the database by ID and running it.

```python get_workflow.py theme={null}
"""
Load Workflow from Database
===========================

Demonstrates loading a workflow from the database by ID and running it.
"""

from agno.db.postgres import PostgresDb
from agno.workflow.workflow import get_workflow_by_id, get_workflows  # noqa: F401

# ---------------------------------------------------------------------------
# Create Database Client
# ---------------------------------------------------------------------------
db = PostgresDb(db_url="postgresql+psycopg://ai:ai@localhost:5532/ai")

# ---------------------------------------------------------------------------
# Run Workflow Load Example
# ---------------------------------------------------------------------------
if __name__ == "__main__":
    workflow = get_workflow_by_id(db=db, id="content-creation-workflow")

    if workflow:
        workflow.print_response(input="AI trends in 2024", markdown=True)
    else:
        print("Workflow not found")

    # You can also get all workflows from the database
    # workflows = get_workflows(db=db)
    # for workflow in workflows:
    #     print(workflow)
```

## Run the Example

<Steps>
  <Snippet file="create-venv-step.mdx" />

  <Step title="Install dependencies">
    ```bash theme={null}
    uv pip install -U agno fastapi psycopg-binary sqlalchemy
    ```
  </Step>

  <Snippet file="run-pgvector-step.mdx" />

  <Step title="Run the example">
    Save the code above as `get_workflow.py`, then run:

    ```bash theme={null}
    python get_workflow.py
    ```
  </Step>
</Steps>

Full source: [cookbook/93\_components/get\_workflow.py](https://github.com/agno-agi/agno/blob/main/cookbook/93_components/get_workflow.py)
