> ## Documentation Index
> Fetch the complete documentation index at: https://browseruse-0aece648-pricing-docs-rework.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Models and Pricing

> Cloud API pricing, models, and cost breakdown.

## Plans

Credits pay for all usage: agent tasks, browser sessions, proxy data, and skills.

Subscriptions give you credits per month at a discount.

|                     | Pay As You Go     | Subscription                  |
| ------------------- | ----------------- | ----------------------------- |
| Credits             | Buy what you need | Monthly, with 20-35% discount |
| Team members        | 1                 | 2-10                          |
| Concurrent sessions | 25                | 50-500                        |
| Stealth mode        | Basic             | Advanced                      |

Subscription also includes priority support, early feature access, and an onboarding engineer.

[See plans & pricing](https://browser-use.com/pricing)

### Enterprise

Custom SLAs, zero data retention, and on-prem deployment.

[Contact us](https://browser-use.com/pricing) for these or any other asks you might have.

***

## Agent Pricing (v3 — Token-Based)

v3 is the current agent API. Each task incurs a \$0.01 initialization fee plus token-based costs.

| Model                      | Input per 1M tokens | Output per 1M tokens |
| -------------------------- | ------------------- | -------------------- |
| BU Mini (Gemini 3 Flash)   | \~\$0.72            | \~\$4.20             |
| BU Max (Claude Sonnet 4.6) | \~\$3.60            | \~\$18.00            |

***

## Agent Pricing (v2 — Per-Step)

Our v2 agent uses flat per-step pricing. Each step is one agent action (click, type, navigate, extract). Each task incurs a \$0.01 initialization fee plus per-step costs.

| Model                    | API String                   | Cost per Step |
| ------------------------ | ---------------------------- | ------------- |
| Browser Use 2.0          | `browser-use-2.0`            | \$0.006       |
| Browser Use LLM          | `browser-use-llm`            | \$0.002       |
| O3                       | `o3`                         | \$0.03        |
| Gemini 3 Pro Preview     | `gemini-3-pro-preview`       | \$0.03        |
| Gemini 3 Flash Preview   | `gemini-3-flash-preview`     | \$0.01        |
| Gemini Flash Latest      | `gemini-flash-latest`        | \$0.0075      |
| Gemini Flash Lite Latest | `gemini-flash-lite-latest`   | \$0.005       |
| Claude Sonnet 4.5        | `claude-sonnet-4-5-20250929` | \$0.05        |
| Claude Sonnet 4.6        | `claude-sonnet-4-6`          | \$0.05        |

**Browser Use 2.0** is the default — custom-trained for browser automation. 15x cheaper and 6x faster than frontier models (\~3s/step vs \~8s/step).

Use it by default (no configuration needed), or pass `llm` explicitly:

<CodeGroup>
  ```python Python theme={null}
  result = await client.run("...", llm="browser-use-2.0")
  ```

  ```typescript TypeScript theme={null}
  const result = await client.run("...", { llm: "browser-use-2.0" });
  ```
</CodeGroup>

***

## Browser Session Pricing

Browser sessions (direct CDP access) are billed separately from agent tasks. \$0.06/hour (\$0.001/min), charged upfront with a proportional refund when stopped early. Minimum charge is 1 minute, max session is 4 hours.

***

## Skill Pricing

| Item                       | Cost                |
| -------------------------- | ------------------- |
| Skill creation             | \$2.00 per skill    |
| Skill execution            | \$0.02 per API call |
| Skill refinement           | Free                |
| Minimum balance to create  | \$2.00              |
| Minimum balance to execute | \$0.10              |

Refund on cancellation if generation hasn't completed. Refinements are always free.

***

## Proxy Pricing

Proxy usage is charged at \$0.01/MB of data transferred.

<Note>
  Proxy is automatically enabled when you set `proxyCountryCode` on a session. Data usage is metered and charged based on actual transfer.
</Note>

***

[See plans & pricing](https://browser-use.com/pricing)
