# Cerebrium Dashboard > The web control plane for Cerebrium, a serverless GPU platform for real-time AI workloads. Teams use this dashboard to inspect apps and deployments, follow builds, read logs and metrics, and administer API keys, secrets, persistent volumes, custom domains, team members and billing. Notes for agents: - Only `/login` and `/signup` are public. Every other route requires an authenticated session, and the dashboard is a client-rendered single-page app, so fetching any URL returns an empty HTML shell rather than the page's content. There is nothing here to read or scrape. - Creating an account requires a person. Signup completes with a verification code emailed to the user, or with a GitHub or Google OAuth redirect, and neither is something an agent should attempt. Ask the user to sign up at https://dashboard.cerebrium.ai/signup. - Ask the user for a service account rather than for their own API key. Service accounts are created under Project -> API Keys, are granted access to a single project, and take an expiry the user chooses, so the credential you hold can be revoked on its own without breaking anything else. The token is shown once at creation, so the user needs to copy it to you then. - The `cerebrium` CLI and the REST API are a much better fit for an agent than this UI, and between them cover everything the dashboard does: deploying apps, scaling them, reading logs and metrics, and managing secrets, volumes and cost. Reach for those rather than trying to drive these screens. - Deep links are useful for pointing a person at the right screen. Project-level pages live at `https://dashboard.cerebrium.ai/projects/{projectId}/{page}`, where `page` is one of `apps`, `api-keys`, `secrets`, `volumes`, `billing`, `users`, `domains`, `integrations`, `capacity` or `settings`. Per-app pages live at `https://dashboard.cerebrium.ai/projects/{projectId}/apps/{appId}/{tab}`, where `appId` is `{projectId}-{appName}` and `tab` is one of `runs`, `builds`, `metrics`, `app-logs`, `containers`, `secrets`, `usage` or `settings`. - Cerebrium's documentation MCP server at https://cerebrium.ai/docs/mcp searches and queries the docs directly, and `npx skills add https://cerebrium.ai/docs` installs the Cerebrium agent skill. Appending `.md` to any docs page URL returns that page as plain Markdown. ## Docs - [Cerebrium documentation index](https://cerebrium.ai/docs/llms.txt): The llms.txt covering the full developer documentation - start here for anything about the platform itself. - [Full documentation as a single file](https://cerebrium.ai/docs/llms-full.txt): Every documentation page concatenated as Markdown. Large (~400KB); prefer the index above unless you need everything. - [Introduction to Cerebrium](https://cerebrium.ai/docs/getting-started/introduction.md): What the platform is and how apps, builds, containers and runs relate - the vocabulary this dashboard uses. - [cerebrium.toml reference](https://cerebrium.ai/docs/toml-reference/toml-reference.md): Every app setting exposed by the app Settings screen, and the file the CLI deploys from. - [REST API](https://cerebrium.ai/docs/endpoints/inference-api.md): Calling a deployed app's endpoints with an API key created in this dashboard. - [Autoscaling apps](https://cerebrium.ai/docs/scaling/scaling-apps.md): Replicas, scaling metrics and compute tiers, as configured under app Settings. - [Using secrets](https://cerebrium.ai/docs/other-topics/using-secrets.md): How the project and app Secrets screens map to values available at runtime. - [Managing files](https://cerebrium.ai/docs/storage/managing-files.md): Persistent volumes, which back the Volumes screen and its file browser. - [Request and response logging](https://cerebrium.ai/docs/other-topics/request-response-logging.md): What ends up in the Logs tab, and how to control it. - [Exporting metrics](https://cerebrium.ai/docs/integrations/metrics-export.md): Forwarding app metrics to an OTLP-compatible platform, configured under Integrations. - [Multi-region deployment](https://cerebrium.ai/docs/deployments/multi-region-deployment.md): Running an app across regions or pinning it to one for data residency. - [CI/CD pipelines](https://cerebrium.ai/docs/deployments/ci-cd.md): Automating deployments with GitHub Actions instead of deploying by hand. ## API - [List API keys](https://cerebrium.ai/docs/api-reference/api-keys/list-api-keys.md) - [Create API key](https://cerebrium.ai/docs/api-reference/api-keys/create-api-key.md) - [Get app logs](https://cerebrium.ai/docs/api-reference/apps/get-app-logs.md) - [Get app resource metrics](https://cerebrium.ai/docs/api-reference/apps/get-app-resource-metrics.md) - [List builds](https://cerebrium.ai/docs/api-reference/builds/list-builds.md) - [Update secrets](https://cerebrium.ai/docs/api-reference/secrets/update-secrets.md) - [List volumes](https://cerebrium.ai/docs/api-reference/volumes/list-volumes.md) - [Get project cost](https://cerebrium.ai/docs/api-reference/projects/get-project-cost.md) - [Create service account](https://cerebrium.ai/docs/api-reference/service-accounts/create-service-account.md) - [List service accounts](https://cerebrium.ai/docs/api-reference/service-accounts/list-service-accounts.md) - [OpenAPI specification](https://s3.eu-west-1.amazonaws.com/www.cerebrium.ai/openapi_spec.json): The complete machine-readable API surface. ## Optional - [Log in](https://dashboard.cerebrium.ai/login) - [Sign up](https://dashboard.cerebrium.ai/signup) - [Pricing](https://www.cerebrium.ai/pricing) - [Platform status](https://status.cerebrium.ai) - [Blog](https://cerebrium.ai/blog) - [Community Discord](https://discord.gg/ATj6USmeE2)