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

# Upgrading your plan

> Use the upgrade page to compare BoundBot tiers and start a paid checkout flow.

export const BrowserWrapper = ({src, alt, title, description, height = '280px', caption, imgStyle = {}, children, imagePadding = '0px'}) => {
  const legacyDocsImagePrefix = '/images/';
  const productionDocsImagePrefix = '/docs/images';
  const rawSrc = typeof src === 'string' ? src : src && (src.src || src.default) || '';
  const imageSrc = rawSrc.startsWith(legacyDocsImagePrefix) ? `${productionDocsImagePrefix}/${rawSrc.slice(legacyDocsImagePrefix.length)}` : rawSrc;
  return <Frame caption={caption || alt || title} width="100%">
      <div style={{
    border: '1px solid #e2e8f0',
    borderRadius: '12px',
    overflow: 'hidden',
    boxShadow: '0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05)',
    width: '100%'
  }}>
        <div style={{
    backgroundColor: '#f8fafc',
    padding: '10px 15px',
    borderBottom: '1px solid #e2e8f0',
    display: 'flex',
    gap: '6px'
  }}>
          <div style={{
    width: '10px',
    height: '10px',
    borderRadius: '50%',
    backgroundColor: '#ff5f56'
  }} />
          <div style={{
    width: '10px',
    height: '10px',
    borderRadius: '50%',
    backgroundColor: '#ffbd2e'
  }} />
          <div style={{
    width: '10px',
    height: '10px',
    borderRadius: '50%',
    backgroundColor: '#27c93f'
  }} />
        </div>
        <div style={{
    overflow: 'hidden',
    background: '#ffffff',
    width: '100%',
    padding: imagePadding
  }}>
          {src ? <img src={imageSrc} alt={alt || ''} data-docs-screenshot style={{
    ...imgStyle,
    width: '100%',
    minWidth: '100%',
    height: 'auto',
    display: 'block',
    borderRadius: '0px'
  }} /> : children ? children : null}
        </div>
      </div>
    </Frame>;
};

The <a href="https://www.boundbot.com/dashboard/personal-settings/upgrade" target="_blank" rel="noopener noreferrer">upgrade page</a> is the fastest way to move from Free to a paid **BoundBot plan**. It lives in the personal menu and is separate from the billing history view.

<BrowserWrapper src="../images/boundbot-plan-comparison.png" alt="BoundBot plan comparison showing Starter, Pro, and Business tiers with pricing and features." caption="BoundBot Plan Comparison: Choose the tier that best fits your business needs." />

## Open the upgrade page

Click your avatar in the BoundBot dashboard sidebar footer, then select <a href="https://www.boundbot.com/dashboard/personal-settings/upgrade" target="_blank" rel="noopener noreferrer"><b>Upgrade to Pro</b></a>.

## What the page shows

The BoundBot upgrade page displays **BoundBot plans** side by side. The screenshot shows **Starter**, **Pro**, and **Business** tiers. Each card clearly displays:

* **Price** — monthly or displayed pricing for the tier
* **Included credits** — monthly credit allocation for AI replies and crawling
* **Key feature limits** — such as number of bots, monthly messages, channels, file uploads, or team size

You also see your current plan badge, active subscription status, and renewal date for paid plans. A link back to billing management is available for paid subscriptions.

Clicking **Get Started** or **Upgrade** on a plan card initiates the secure checkout flow so you can complete payment and activate the new tier.

## Upgrade behavior

The current plan card is marked as **Current** and cannot be selected again.

If you choose a higher tier, BoundBot starts a checkout flow through Lemon Squeezy and redirects you to the hosted checkout page.

If you look at a lower tier than your current one, the current UI shows it as a downgrade path but does not let you change from this page.

## Workspace confirmation

Before a paid checkout or plan change continues, BoundBot shows a workspace confirmation step. This makes it clear which team will own the subscription and the shared credit pool.

The confirmation step shows:

* workspace name
* current plan
* target plan
* monthly credits on the target plan

If you belong to multiple teams, choose the correct workspace before you continue. Only workspace owners can confirm billing changes.

## Compare tiers before checkout

Use the upgrade page for fast decisions, then use <a href="/reference/plans-and-limits">Plans and limits</a> when you need the detailed feature breakdown for bots, channels, files, products, MCPs, and team capacity across all BoundBot plans.

## Related pages

<CardGroup cols={2}>
  <Card title="Billing and usage" icon="credit-card" href="/account/billing-and-usage">
    Manage invoices, payment methods, credits, and cancellation.
  </Card>

  <Card title="Plans and limits" icon="badge-dollar-sign" href="/reference/plans-and-limits">
    Compare included features across all tiers.
  </Card>

  <Card title="Account settings" icon="badge-check" href="/account/account-settings">
    Return to your personal account profile and credentials.
  </Card>

  <Card title="Quickstart" icon="rocket" href="/quickstart">
    See where upgrading matters during initial setup.
  </Card>
</CardGroup>
