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

# Dashboard

> Manage API keys, track token usage, and review recent requests from the Forii control panel

The Forii control panel at [app.forii.in](https://app.forii.in) is what the external world sees. Three sections, one screen:

1. **API Keys** → create & delete keys
2. **Usage** → token limit & token counter by model, next reset time
3. **Recent Requests** → last few API requests & responses

<img src="https://mintcdn.com/forii-docs/cNsW6DAG7qkXCpMH/docs/images/dashboards/dashboard-overview.svg?fit=max&auto=format&n=cNsW6DAG7qkXCpMH&q=85&s=92767f64a80bafa3b2c0f6e930814755" alt="Control Panel Overview" width="1200" height="720" data-path="docs/images/dashboards/dashboard-overview.svg" />

<Info>
  Forii is on the **Free Plan** only right now. Paid tiers (Starter, Pro, Enterprise) are on the roadmap. No billing, invoices, or payment methods — just the keys and usage you need to build.
</Info>

## API Keys

<img src="https://mintcdn.com/forii-docs/cNsW6DAG7qkXCpMH/docs/images/dashboards/dashboard-keys.svg?fit=max&auto=format&n=cNsW6DAG7qkXCpMH&q=85&s=4d4a186d96fe9f38540c73a136822b16" alt="API Keys" width="1200" height="560" data-path="docs/images/dashboards/dashboard-keys.svg" />

Create and delete API keys for programmatic access. Each key starts with `forii_sk_` and is shown **only once** at creation.

| Action       | How                                                               |
| ------------ | ----------------------------------------------------------------- |
| Create a key | Click **Create New Key**, enter a name, copy the key (shown once) |
| View keys    | See name, masked key, created date, last used, status             |
| Delete a key | Click **Revoke** — immediate, in-flight requests will fail        |

| Name        | Key (masked)       | Created | Last Used  | Status | Actions |
| ----------- | ------------------ | ------- | ---------- | ------ | ------- |
| prod-api    | `forii_sk_...x7f2` | Jan 10  | 2 min ago  | active | Revoke  |
| dev-testing | `forii_sk_...a3b1` | Jan 8   | 3 days ago | active | Revoke  |

<Warning>
  API keys are shown only once at creation. Store them in environment variables, not in source code.
</Warning>

## Usage

<img src="https://mintcdn.com/forii-docs/cNsW6DAG7qkXCpMH/docs/images/dashboards/dashboard-observability.svg?fit=max&auto=format&n=cNsW6DAG7qkXCpMH&q=85&s=1e78a04a00795c9071244c727e5d32f8" alt="Usage" width="1200" height="620" data-path="docs/images/dashboards/dashboard-observability.svg" />

Token usage for the Free Plan, broken down by model. The counter shows how much you've used against your plan limit and when the limit resets.

| Model               | Prompt Tokens | Completion Tokens | Limit      | Used | Resets             |
| ------------------- | ------------- | ----------------- | ---------- | ---- | ------------------ |
| forii/deepseek-v3   | 125,000       | 34,000            | 100K / min | 62%  | 00:00 UTC tomorrow |
| forii/llama-4-scout | 40,000        | 12,000            | 100K / min | 28%  | 00:00 UTC tomorrow |
| forii/embed-v3      | 80,000        | —                 | 100K / min | 41%  | 00:00 UTC tomorrow |

Free Plan limits:

| Limit                              | Value |
| ---------------------------------- | ----- |
| Requests per minute (RPM)          | 60    |
| Prompt tokens per minute (TPM)     | 100K  |
| Completion tokens per minute (TPM) | 10K   |

The **next reset time** is when your per-minute counters roll over. If you hit a limit, wait for the reset — the dashboard shows the countdown.

## Recent Requests

The last few API requests and responses, so you can debug without reaching for the CLI.

| Time     | Model             | Prompt | Completion | Latency | Status |
| -------- | ----------------- | ------ | ---------- | ------- | ------ |
| 10:32:15 | forii/deepseek-v3 | 18     | 156        | 320ms   | 200    |
| 10:31:42 | forii/deepseek-v3 | 240    | —          | —       | 429    |
| 10:30:58 | forii/embed-v3    | 10     | —          | 45ms    | 200    |

Shows the last 50 requests. Click a row to see the full request and response (stored 7 days).

## Related

* [Authentication](/docs/concepts/authentication) — API key management via API
* [Pricing](/docs/concepts/pricing) — Free Plan details and limits
* [Observability](/docs/observability/overview) — Token counts, rate-limit headers, and the usage API
