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

# Plans

> Creating and managing pricing plans

Plans are configured in the Nozle dashboard and served through the `GET /api/v1/plans` endpoint.

**Default plan tiers:**

| Plan       | Monthly Price | Event Limit | MRR Limit   |
| ---------- | ------------- | ----------- | ----------- |
| Starter    | \$50/mo       | 50,000      | \$5,000     |
| Growth     | \$100/mo      | 10,000,000  | \$100,000   |
| Scale      | \$500/mo      | 100,000,000 | \$1,000,000 |
| Enterprise | Custom        | Custom      | Custom      |

**Plan features by tier:**

* Starter: core billing + entitlements
* Growth: + revenue\_analytics, remove\_branding\_watermark, auto\_dunning, progressive\_billing, lifetime\_usage
* Scale: + all integrations (netsuite, xero, hubspot, salesforce, okta, avalara), api\_permissions, custom\_roles, forecasted\_usage, security\_logs, from\_email, issue\_receipts, manual\_payments, multi\_entities\_pro

**Fetching plans in your app:**

React: usePlans() hook

```tsx theme={null}
const { plans, isLoading } = usePlans();
```

Node:

```typescript theme={null}
const plans = await nozle.plans();
```

Python:

```python theme={null}
plans = nozle.plans()
```
