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

# Setting Up Projects

> Organize and monitor your LLM applications with Arcbeam projects

When you first run Arcbeam, a default <Tooltip tip="Projects organize your traces and data sources by application, environment, or team">project</Tooltip> is automatically created. You can connect your Postgres integration to this project right away, or create new projects to track specific LLM applications.

## What Are Projects?

<CardGroup cols={3}>
  <Card title="Monitor Activity" icon="chart-line">
    Track application traces, costs, and performance
  </Card>

  <Card title="Apply Policies" icon="shield-check">
    Enforce governance rules on the data being used
  </Card>

  <Card title="Organize Applications" icon="folder-tree">
    Separate traces by application, environment, or team
  </Card>
</CardGroup>

<Tip>
  You can use the default project immediately or create new ones to organize your monitoring by application, environment, or team.
</Tip>

## Locate Your Project ID

To use a project in your application, you'll need its <Tooltip tip="A UUID that uniquely identifies your project">project ID</Tooltip>:

<Steps>
  <Step title="Open the Projects page">
    Navigate to the **Projects** page in the Arcbeam UI.
  </Step>

  <Step title="Copy the project ID">
    Find your project in the list and copy its ID from the **Default Project** row.

    <Frame caption="Copy your project ID from the Projects page">
      <img src="https://mintcdn.com/arcbeam/xfecCcyP4O9NRpfN/images/setup/copy-projectid.png?fit=max&auto=format&n=xfecCcyP4O9NRpfN&q=85&s=bb2da723e848e3618177f757accd664f" alt="Projects page showing the project ID field" width="2936" height="1310" data-path="images/setup/copy-projectid.png" />
    </Frame>
  </Step>

  <Step title="Use in your application">
    Add the project ID when initializing the Arcbeam connector:

    ```python theme={null}
    connector = ArcbeamLangConnector(
        base_url="http://platform.arcbeam.ai",
        api_key="your-api-key",
        project_id="f60a7195-665f-4014-8bb3-805ae4337aa9",  # Your project ID
    )
    ```
  </Step>
</Steps>

## Next Steps

<CardGroup cols={2}>
  <Card title="Send Traces" icon="paper-plane" href="/v0/setup/connect-your-ai-system">
    Start sending traces from your application using the project ID
  </Card>

  <Card title="Connect Data Sources" icon="database" href="/v0/setup/add-data-sources">
    Link your vector databases to track document usage
  </Card>

  <Card title="Review Activity" icon="chart-bar" href="/v0/debugging/find-problematic-traces">
    Monitor application activity in the project dashboard
  </Card>

  <Card title="Apply Policies" icon="shield-check" href="/v0/core-concepts/projects">
    Enforce compliance and governance rules on your data
  </Card>
</CardGroup>
