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

# Subscriptions

> Elumenta subscription plans — Free, Basic, Pro, VIP, Elite

## Plans Overview

Elumenta uses a subscription model where each plan provides a monthly token allowance. All plans unlock access to all 52 AI models — higher tiers simply give more tokens.

| Plan      | Monthly Tokens | Price      | Rate Limit (per hour) | Rate Limit (per day) | Best for           |
| --------- | -------------- | ---------- | --------------------- | -------------------- | ------------------ |
| **Free**  | 50 (one-time)  | 0 ₽        | 20                    | 150                  | Trying the API     |
| **Basic** | 300 / month    | 890 ₽/mo   | 30                    | 200                  | Light personal use |
| **Pro**   | 700 / month    | 1,690 ₽/mo | 60                    | 500                  | Active developers  |
| **VIP**   | 1,500 / month  | 2,990 ₽/mo | 100                   | 1,000                | Power users        |
| **Elite** | 3,000 / month  | 4,990 ₽/mo | Unlimited             | Unlimited            | Teams, high volume |

<Info>
  **Any subscription unlocks all models.** You don't need a higher plan to access GPT-5, Claude Opus, or Midjourney — you just need tokens to pay for them.
</Info>

## Rate Limits

Each plan enforces per-hour and per-day request limits. When a limit is reached, requests return `429 Too Many Requests` until the window resets. The Elite plan has no rate limits.

## How Tokens Refresh

* Tokens are credited at the start of each billing cycle
* Unused tokens from the subscription **do not roll over** to the next month
* **Token packages** (one-time purchases) never expire and are used after subscription tokens run out

## Token Packages

For extra usage beyond your subscription, purchase one-time token packs:

| Package  | Tokens | Price    |
| -------- | ------ | -------- |
| Start    | 50     | 249 ₽    |
| Light    | 100    | 449 ₽    |
| Standard | 200    | 799 ₽    |
| Advanced | 500    | 1,790 ₽  |
| Pro Pack | 1,000  | 3,290 ₽  |
| Business | 2,000  | 5,990 ₽  |
| Premium  | 5,000  | 13,990 ₽ |
| Ultra    | 10,000 | 24,990 ₽ |

## Checking Your Plan via API

```bash theme={null}
GET /api/v2/user/balance
```

```json theme={null}
{
  "plan": "pro",
  "token_balance": 543,
  "plan_tokens_remaining": 543,
  "bonus_tokens": 100,
  "plan_expires_at": "2026-04-01T00:00:00Z"
}
```

## What Happens When Tokens Run Out

1. Subscription tokens depleted → package tokens are used automatically
2. Both depleted → requests return `402 Payment Required`
3. Requests are never silently dropped — you always get a clear error

## Payment Methods

* **Yookassa** — Russian bank cards (Visa, Mastercard, Mir), SBP
* **Telegram Stars** — in-app purchases via Telegram

## Upgrading or Cancelling

Manage your subscription through the [Elumenta Dashboard](https://elumenta.ru/web/profile). Cancellation takes effect at the end of the current billing period — you keep access until then.
