Skip to content

Commit 3e22ebe

Browse files
hongyi-chenoz-agent
andcommitted
docs(pricing-may-2026): add platform-credits caveats, expand service-account FAQ, new platform-credits FAQ
Adds platform-credits caveats to the BYOK, custom inference endpoint, and "What if I need more AI usage" FAQs so Business/Enterprise readers know local agent runs that use customer-supplied inference still consume platform credits. Expands the service-account / team-scoped API key FAQ to introduce the task billing principal concept, spell out the owner-pool waterfall, describe auto-reload off vs on behavior, and clarify that attribution stays on the service account while billing rolls up to the team owner. Expands the Enterprise note in that FAQ to cover team-scoped credit pool depletion and the PAYG fallback. Adds a new "How do platform credits factor in?" FAQ after the multi-seat credits FAQ, summarizing the three credit buckets (AI, compute, platform) and when platform credits apply. Pre-existing build error (CIE page missing from sidebar topic) is unrelated to this change and is fixed by PR #71's src/sidebar.ts update once it merges into the umbrella. Co-Authored-By: Oz <oz-agent@warp.dev>
1 parent eb9240f commit 3e22ebe

1 file changed

Lines changed: 26 additions & 8 deletions

File tree

src/content/docs/support-and-community/plans-and-billing/pricing-faqs.mdx

Lines changed: 26 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -157,15 +157,26 @@ On the new multi-seat paid plans, credits attribute differently than they did on
157157

158158
Enterprise plans support team-scoped credit pools and per-user spend limits separately — see [enterprise billing](/enterprise/support-and-resources/billing/).
159159

160+
### How do platform credits factor in?
161+
162+
Warp meters credits across three buckets: **AI credits** (the model call), **compute credits** (the sandbox a cloud agent runs in), and **platform credits** (run lifecycle, integrations, dashboard, APIs, and observability). All three draw from the same pool — your monthly Warp credits first, then [Reload credits](/support-and-community/plans-and-billing/add-on-credits/) once those are exhausted.
163+
164+
Platform credits apply in two situations:
165+
166+
* **Every cloud agent run, on every plan.** Warp's platform infrastructure coordinates every cloud run regardless of which agent or inference source it uses.
167+
* **Local agent runs on Business and Enterprise that use customer-supplied inference** — BYOK, BYOLLM via Amazon Bedrock or Google Vertex, or a custom inference endpoint. Warp isn't paying for the model call, but Warp's platform infrastructure is still running the agent.
168+
169+
Local agent runs on Free, Build, or Max — and local runs on Business or Enterprise that use Warp-managed inference — do not consume platform credits. See [platform credits](/support-and-community/plans-and-billing/platform-credits/) for the full breakdown.
170+
160171
### What if I need more AI usage than my plan includes?
161172

162173
If you regularly run through your plan's monthly credit allowance, you have a few options:
163174

164175
* **Upgrade to Max** — Designed for developers with heavier AI usage. Max includes a higher monthly credit allowance than Build, plus a better effective rate for credits than buying [Reload credits](/support-and-community/plans-and-billing/add-on-credits/) on Build. See [warp.dev/pricing](https://www.warp.dev/pricing) for current allowances.
165176
* **Purchase Reload credits** — Top up your account on demand at $10 / 400 credits, $20 / 1,000 credits, $50 / 3,000 credits, or $100 / 6,500 credits. Larger denominations have a better effective rate. Reload credits roll over month-to-month and remain valid for 12 months.
166177
* **Enable auto-reload** — Pick a denomination and a monthly spend cap, and Warp will automatically purchase Reload credits when your balance drops below 100 credits, up to your cap.
167-
* **Bring your own API key (BYOK)** — Point Warp at your own OpenAI, Anthropic, or Google API key. Requests routed through BYOK don't consume Warp credits — you're billed directly by the model provider. See [Bring Your Own API Key](/support-and-community/plans-and-billing/bring-your-own-api-key/).
168-
* **Use a custom inference endpoint** — Route requests through any OpenAI-compatible endpoint (OpenRouter, LiteLLM, z.ai, an internal gateway, etc.) without spending Warp credits. See [Custom Inference Endpoint](/support-and-community/plans-and-billing/custom-inference-endpoint/).
178+
* **Bring your own API key (BYOK)** — Point Warp at your own OpenAI, Anthropic, or Google API key. Requests routed through BYOK don't consume Warp credits — you're billed directly by the model provider. See [Bring Your Own API Key](/support-and-community/plans-and-billing/bring-your-own-api-key/). On Business and Enterprise, platform credits may apply for local agent runs — see [platform credits](/support-and-community/plans-and-billing/platform-credits/).
179+
* **Use a custom inference endpoint** — Route requests through any OpenAI-compatible endpoint (OpenRouter, LiteLLM, z.ai, an internal gateway, etc.) without spending Warp credits. See [Custom Inference Endpoint](/support-and-community/plans-and-billing/custom-inference-endpoint/). On Business and Enterprise, platform credits may apply for local agent runs — see [platform credits](/support-and-community/plans-and-billing/platform-credits/).
169180

170181
*BYOK and custom inference endpoint availability is subject to organization size — see [Can I bring my own API key?](#can-i-bring-my-own-api-key) for details.*
171182

@@ -187,16 +198,19 @@ Auto-reload can be enabled, paused, or reconfigured at any time in **Settings**
187198

188199
### How are service account / team-scoped API key requests billed on self-serve plans?
189200

190-
Programmatic usage that runs against a Warp team-level API key, scheduled agent, or service account (rather than a specific human user) is billed against the **admin who created the key** on self-serve plans (Build, Max, Business):
201+
Some AI requests on Warp can't be linked to an individual user — for example, requests made with a team-scoped API key, a scheduled agent, or an agent identity. These requests have no individual *task billing principal*. On self-serve plans (Build, Max, Business), Warp bills these requests against the **team owner**, while attribution stays on the service account.
191202

192-
1. First, the admin's plan-included monthly credits are consumed.
193-
2. Once those are exhausted, the admin's own Reload credits are consumed (and auto-reload triggers if the admin has it on).
194-
3. If both are empty and auto-reload can't keep up with the team-wide spend cap, the request is blocked.
203+
The waterfall on the owner's account is:
195204

196-
This waterfall keeps team-level usage transparent and attributable on self-serve plans, even though credits are user-scoped.
205+
1. First, the owner's plan-included monthly credits are consumed.
206+
2. Once those are exhausted, the owner's Reload credits are consumed.
207+
208+
When auto-reload is **off**, the service account is blocked once both buckets are depleted. When auto-reload is **on**, service-account usage can trigger auto-reload on the owner's pool subject to the team-wide spend cap; further service-account requests then deplete that reloaded balance until the cap is reached.
209+
210+
This waterfall keeps usage attributable to the service account in audit logs and usage breakdowns, while making billing predictable for the team owner.
197211

198212
:::note
199-
Enterprise plans support team-scoped credit pools, so service-account and scheduled-agent traffic can be billed against a dedicated team pool instead of an individual admin. See [enterprise billing](/enterprise/support-and-resources/billing/) for details.
213+
Enterprise plans support team-scoped credit pools, so service-account and scheduled-agent traffic draws from the team pool rather than an individual admin. When the team pool is depleted, traffic falls to pay-as-you-go (PAYG) if enabled in the contract; otherwise it's blocked. See [enterprise billing](/enterprise/support-and-resources/billing/).
200214
:::
201215

202216
### Can I use a Free plan if I'm a developer at a large company or organization?
@@ -236,6 +250,8 @@ See [Bring Your Own API Key](/support-and-community/plans-and-billing/bring-your
236250

237251
BYOK and custom inference endpoint support are available for individual users and organizations with 10 or fewer employees, subject to Warp's Terms of Service. Companies or organizations with more than 10 employees require a Warp Business or Enterprise plan to use these features.
238252

253+
On Business and Enterprise, local agent runs that use BYOK still consume platform credits for Warp's platform infrastructure. See [platform credits](/support-and-community/plans-and-billing/platform-credits/).
254+
239255
### Does Warp support custom inference endpoints?
240256

241257
Yes. In addition to BYOK, Warp can route requests to any OpenAI-compatible inference endpoint — including OpenRouter, LiteLLM, z.ai, and internal gateways your team already runs. Custom inference endpoint requests also don't consume Warp credits.
@@ -244,6 +260,8 @@ Custom inference endpoints are available on Free, Build, Max, Business, and Ente
244260

245261
BYOK and custom inference endpoint support are available for individual users and organizations with 10 or fewer employees, subject to Warp's Terms of Service. Companies or organizations with more than 10 employees require a Warp Business or Enterprise plan to use these features.
246262

263+
On Business and Enterprise, local agent runs that use a custom inference endpoint still consume platform credits for Warp's platform infrastructure. See [platform credits](/support-and-community/plans-and-billing/platform-credits/).
264+
247265
### What payment options are available for Warp's self-service plans?
248266

249267
Warp uses Stripe as our payments processor and currently accepts the following payment methods: credit card, debit card, Link, Apple Pay, Google Pay.

0 commit comments

Comments
 (0)