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

# Usage-based Add-on

> Buy credits to continue PR reviews and CLI-triggered reviews beyond your plan limit on a pay-as-you-go basis.

export const ProPlanBadge = ({tip = "This feature is available as part of the Pro, Pro+ and Enterprise plans. Please refer to our pricing page for more information about our plans and features.", title = "Pro Plan", cta = "Read more", href = "https://coderabbit.ai/pricing", disabled = false}) => {
  return <Tooltip tip={tip} cta={cta} href={href}>
        <Badge icon="shield-check" disabled={disabled || undefined}>
            {title}
        </Badge>
    </Tooltip>;
};

export const AdminRoleBadge = ({tip = "This feature requires an organization owner, an admin role or the corresponding permission. Regular Members do not have access.", title = "Admin Only", cta = "View roles", href = "/management/roles", disabled = false}) => {
  return <Tooltip tip={tip} cta={cta} href={href}>
        <Badge icon="lock" color="orange" disabled={disabled || undefined}>
            {title}
        </Badge>
    </Tooltip>;
};

<ProPlanBadge />

<AdminRoleBadge tip="This page requires an admin role or subscription management permission. Members do not have access to Usage-based add-on settings." />

The **Usage-based add-on** lets Pro, Pro+, and Enterprise organizations continue processing PR reviews and CLI reviews after reaching their plan's hourly limit. Credits are consumed only for over-limit reviews — reviews within the plan limit are never charged against your credit balance. Manage credits and the add-on toggle from the **Usage-based add-on** tab in [Subscription and Billing](https://app.coderabbit.ai/settings/subscription).

<Info>
  The add-on is available on the Pro plan and above and is not visible during a trial. Your organization shares one credit balance across all PR and CLI reviews.
</Info>

## Credit pricing

|                           |        |
| ------------------------- | ------ |
| Price per credit          | \$1.00 |
| Cost per reviewed file    | \$0.25 |
| Files reviewed per credit | 4      |

## PR review behavior

When your organization reaches its plan limit, the add-on behavior depends on whether it is enabled and whether credits are available:

| Situation                                        | Behavior                                                                                                             |
| ------------------------------------------------ | -------------------------------------------------------------------------------------------------------------------- |
| Within plan limit                                | Reviews work as normal. No credits are used.                                                                         |
| Over limit, add-on enabled, credits available    | CodeRabbit continues reviewing and charges pay-as-you-go for each over-limit review. No interruption for developers. |
| Over limit, add-on disabled                      | Developers see a message that the review limit has been reached. An admin can enable the add-on to continue.         |
| Over limit, add-on enabled, credits insufficient | Developers see a message to contact an admin to purchase more credits.                                               |

CLI-triggered reviews follow the same billing path and opt-in logic as reviews from GitHub, GitLab, and Bitbucket PR pages.

### Enable the add-on

Admins enable and disable the add-on using the pay-as-you-go toggle in **Organization Settings** in the [CodeRabbit dashboard](https://app.coderabbit.ai/settings/subscription?tab=usage). There is one toggle, one credit balance, and one billing path covering all PR and CLI reviews.

### Manage credits

<Steps>
  <Step title="Open the Usage-based add-on tab">
    Go to **[Subscription and Billing](https://app.coderabbit.ai/settings/subscription)** in your organization settings, then open the **Usage-based add-on** tab.
  </Step>

  <Step title="Buy credits">
    Choose one of the available purchase options:

    * **One-time purchase** — buy a fixed credit amount as needed.
    * **Monthly subscription** — set a recurring monthly credit amount billed automatically.
    * **Auto-refill** — automatically top up your balance when it falls below a threshold.

    Preset amounts of $20, $40, $80, and $100 are available, with a custom entry for larger one-time purchases.
  </Step>

  <Step title="Review usage and transaction history">
    Track total credits purchased, remaining balance, and recent usage events in
    the same tab.
  </Step>
</Steps>

## What's next

<CardGroup cols={1}>
  <Card title="Plans and pricing" href="/management/plans" icon="credit-card" horizontal>
    Compare CodeRabbit plans and understand per-developer rate limits
  </Card>

  <Card title="Billing and plans" href="/management/billing" icon="receipt" horizontal>
    View invoices, change your subscription plan, and adjust seat counts
  </Card>
</CardGroup>
