Skip to main content
Everything for managing your account, credentials, and usage in one place - your organization and projects, API keys, authentication, usage and logs, and billing. Sign in at the ZeroGPU dashboard.

Dashboard

Organizations and projects

API keys

Authentication

Usage and logs

Billing

Dashboard

Your organization, active project, API key, project ID, and a ready-to-run code snippet, all in one place.
The dashboard prefills the snippet with your project ID. Copy it and send your first request from the Quickstart.

Organizations and projects

An organization is your top-level container - your team or company. A project scopes the workloads you’re running; use separate projects for dev, staging, and production. Each project is isolated: its own API keys, its own usage, its own logs. Switch between projects, create new projects, or create new organizations from the navigation dropdown.
Always separate dev from production. A leaked dev key should never be able to touch your production traffic.

API keys

Create, rotate, and revoke the credentials your requests authenticate with. Issue a separate key per environment. Keys follow a one-way lifecycle and use the zgpu- prefix:
Rules of thumb:
  • One key per environment - dev, staging, and production each get their own.
  • Rotate on a schedule - create the new key, deploy it, then revoke the old one.
  • Revoke immediately if exposed - don’t wait.
The full key is only displayed once, at creation. Copy it then and store it securely - if you lose it, revoke it and create a new one.

Authentication

Every request needs the x-api-key header (your API key). The x-project-id header (the project the request runs in) is optional - include it to scope the request to a specific project. A 401 means a bad API key; a 403 means a bad project ID.
API keys belong in server-side code only - never in frontend JavaScript, mobile apps, or version control. To call from a browser or mobile client, proxy the request through a server you control. See Production patterns.

Usage and logs

Usage shows token counts, request volume, and latency trends. Logs show every request with its model, status, latency, and timestamp.

Usage

Real-time trends for the active project - spot cost spikes and latency regressions before they hit your bill.

Logs

The full request history - inspect, filter, and audit individual calls.
Use both together: Usage shows the trend, Logs show the individual requests behind it. See a spike in Usage, then filter Logs to find the requests that caused it.

Billing

Usage-based pricing per million input and output tokens, priced by model - just like frontier APIs. Each model is priced on capability, latency, and compute cost. ZeroGPU is pay as you go: API usage draws down a prepaid credit balance, with no reserved capacity or minimums.
Compare per-model rates in the Model Catalog, and estimate spend for your expected volume with the cost calculator.

Next steps

Quickstart

Production patterns

Model Catalog