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

# Plans & Limits

> What each plan includes and how limits are enforced.

## Plan comparison

|                                                        | Free      | Pro        | Enterprise |
| ------------------------------------------------------ | --------- | ---------- | ---------- |
| Monthly evaluations                                    | 1,000,000 | 10,000,000 | Unlimited  |
| Seats                                                  | 3         | Unlimited  | Unlimited  |
| Analytics retention                                    | 7 days    | 90 days    | 90 days    |
| Advanced targeting (`regex`, `geo_country`, rollout %) | —         | ✓          | ✓          |
| Environment protection                                 | —         | ✓          | ✓          |
| Full audit log (> 7 days)                              | —         | ✓          | ✓          |
| Change requests (proposals)                            | —         | —          | ✓          |
| SSO                                                    | —         | —          | ✓          |

## Monthly evaluation limit

Evaluation counts are tracked at the **organization** level and reset on your billing cycle start date.

When a write operation would push your count over the limit, the API returns:

```json theme={null}
{
  "error": {
    "code": "LIMIT_EXCEEDED",
    "message": "Monthly evaluation limit reached. Upgrade to continue."
  }
}
```

Evaluation reads at the edge are never blocked — only management API writes are affected.

## Plan-gated features

Attempting to use a feature above your plan returns `403 UPGRADE_REQUIRED`:

* Creating a flag version with `regex` or `geo_country` conditions on Free
* Creating a flag version with `rolloutPercentage` on Free
* Setting `protected: true` on an environment on Free
* Creating a change proposal on Free or Pro

## Audit log retention

On Free, the audit log endpoint only returns entries from the last **7 days**. Upgrading to Pro or Enterprise gives you the full history.

## Analytics retention

Usage analytics are clamped to your plan's retention window:

* Free: last 7 days
* Pro/Enterprise: last 90 days

Querying beyond your retention window returns data only up to the allowed boundary.
