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

# Dashboard Overview

> Navigate the Endprompt dashboard and understand your workspace

After logging in, you'll land on your Endprompt dashboard. This page gives you a quick tour of what you'll find.

## Main Navigation

### Sidebar

The sidebar on the left is your primary navigation, organized into sections:

**Endprompts**

| Menu Item           | Purpose                                 |
| ------------------- | --------------------------------------- |
| **Endpoints**       | Create and manage your API endpoints    |
| **Prompt Snippets** | Reusable template fragments             |
| **Logs**            | View execution history and debug issues |

**Realtime API**

| Menu Item    | Purpose                                  |
| ------------ | ---------------------------------------- |
| **API Keys** | Manage authentication keys for your APIs |
| **API**      | Link to your API documentation           |

**Configuration**

| Menu Item        | Purpose                                                        |
| ---------------- | -------------------------------------------------------------- |
| **LLM API Keys** | Configure API keys for LLM providers (OpenAI, Anthropic, etc.) |

### User Menu (Top Right)

Click your **profile avatar** in the top-right corner to access:

| Menu Item            | Purpose                                                                 |
| -------------------- | ----------------------------------------------------------------------- |
| **Switch Workspace** | Change to a different tenant/workspace                                  |
| **Profile**          | Manage your account settings, preferences, password, and security (MFA) |
| **Billing**          | View subscription status and manage your plan                           |
| **Team**             | Invite and manage team members (Admin only)                             |
| **Logout**           | Sign out of your account                                                |

## Dashboard Home

Your dashboard home shows at-a-glance metrics:

<CardGroup cols={3}>
  <Card title="Total Requests" icon="arrow-trend-up">
    Number of API calls across all endpoints
  </Card>

  <Card title="Success Rate" icon="circle-check">
    Percentage of successful executions
  </Card>

  <Card title="Active Endpoints" icon="plug">
    Number of endpoints you've created
  </Card>
</CardGroup>

You'll also see:

* **Recent Endpoints** — Quick access to your most-used endpoints
* **Recent Logs** — Latest execution results
* **Usage Trends** — Charts showing request volume over time

## Endpoint Workspace

When you open an endpoint, you get a full workspace with multiple tabs:

<Tabs>
  <Tab title="Details">
    Basic endpoint configuration: name, path, category, description, and visibility settings.
  </Tab>

  <Tab title="Input Schema">
    Define the fields your endpoint accepts. Add types, validation rules, and defaults.
  </Tab>

  <Tab title="Output Schema">
    Define the structure of your endpoint's response. Ensures consistent JSON output.
  </Tab>

  <Tab title="Prompts">
    Manage prompts attached to this endpoint. Create, edit, test, version, and promote.
  </Tab>

  <Tab title="Testing">
    Test your endpoint with an auto-generated form or bulk CSV uploads.
  </Tab>

  <Tab title="OpenAPI">
    View auto-generated API documentation with code samples in multiple languages.
  </Tab>

  <Tab title="Settings">
    Configure caching, rate limits, and other advanced settings.
  </Tab>
</Tabs>

## Quick Actions

Throughout the interface, look for these common patterns:

<AccordionGroup>
  <Accordion title="Create Buttons" icon="plus">
    Blue "Create" buttons in the top-right of list pages let you add new items.
  </Accordion>

  <Accordion title="Action Menus" icon="ellipsis">
    The **⋯** icon reveals contextual actions like Edit, Duplicate, Delete, or Promote.
  </Accordion>

  <Accordion title="Status Badges" icon="tag">
    Colored badges show status: green for Live, yellow for Draft, gray for Archived.
  </Accordion>

  <Accordion title="Search & Filter" icon="filter">
    Most list pages include search bars and filters to find what you need quickly.
  </Accordion>
</AccordionGroup>

## Your Tenant Subdomain

Your account has a unique subdomain used for API calls:

```
https://yourcompany.api.endprompt.ai
        └─────────┘
        Your tenant
```

<Tip>
  You can find your subdomain in the OpenAPI tab of any endpoint or when creating API keys.
</Tip>

## Keyboard Shortcuts

Speed up your workflow with these shortcuts:

| Shortcut           | Action                    |
| ------------------ | ------------------------- |
| `Ctrl/Cmd + K`     | Quick search              |
| `Ctrl/Cmd + S`     | Save current form         |
| `Ctrl/Cmd + Enter` | Run test (in test runner) |
| `Escape`           | Close modal               |

## Next Steps

<CardGroup cols={2}>
  <Card title="Create Your First Endpoint" icon="plug" href="/endpoints/create-endpoint">
    Start building your API
  </Card>

  <Card title="Manage API Keys" icon="key" href="/api/authentication">
    Set up authentication for your endpoints
  </Card>
</CardGroup>
