GitHub Copilot Enterprise pricing: $39 a seat, and what the extra $20 buys

GitHub Copilot Enterprise is $39 per granted seat per month and Copilot Business is $19. Both now include a monthly pool of AI credits worth exactly the seat price, which means the organization plans carry no included-usage subsidy at all: you are paying for the management plane and buying inference at list.

By the Continuum team. We build a workbench that runs Claude Code, Codex, and their peers, so the model rates quoted here are the ones our own cost analytics ship with.

The short version

Copilot Business is $19 per granted seat per month and Copilot Enterprise is $39, both billed per assigned seat. Under the AI credits model each Business seat includes 1,900 credits a month and each Enterprise seat 3,900, pooled at the billing-entity level, with additional usage at $0.01 per credit and code completions unlimited on every paid plan. Enterprise adds codebase indexing on GitHub.com, custom fine-tuned models for completions, priority access to new models, and a larger credit pool.

What you need to know
  • Business $19, Enterprise $39, per granted seat per month. Enterprise is not sold self-serve at the same door.
  • Credits equal the seat price: 1,900 credits at $19, 3,900 at $39, and a credit is $0.01.
  • Credits are pooled across the billing entity, so heavy users draw on light users’ unspent allowance.
  • Promotional credit levels ran June to August 2026. Budgets built during that window understate the steady state.
  • Removed seats bill to the end of the cycle. Reclaim on last_activity_at before the boundary, not after.

The two organization plans

Every Copilot plan with its included AI credits, from GitHub docs and the plans page.checked aug 2026
PlanPriceIncluded AI creditsCredit value
Free$0Limited chat and agent usagen/a
Pro$10/user/mo1,500 credits$15
Pro+$39/user/mo7,000 credits$70
Max$100/user/mo20,000 credits$200
Business$19/seat/mo1,900 credits$19
Enterprise$39/seat/mo3,900 credits$39

The corollary matters for a small team: two engineers on personal Copilot Pro+ at $39 each receive $140 of credits between them, while two Enterprise seats at $39 each receive $78. If you do not need the organization controls, the individual plans are strictly better value per dollar of inference, and by a wide margin.

What Enterprise adds for the extra $20

GitHub describes Enterprise as everything in Business plus priority access to new models and features, a larger monthly pool of AI credits, and enterprise-grade capabilities. Unpacked, the list is shorter than the price gap suggests.

Copilot Business against Copilot Enterprise, August 2026.
CapabilityBusinessEnterprise
Copilot in the IDE, CLI, and GitHub MobileYesYes
Organization-wide policy managementYesYes
Included AI credits per seat1,9003,900
Copilot on GitHub.com with codebase indexingNoYes
Fine-tuned custom private models for inline suggestionsNoYes
Priority access to new models and featuresNoYes

Of those, codebase indexing on GitHub.com is the one that changes daily work, because it is what makes Copilot able to answer questions about a repository rather than about the file in front of it. If your engineers live in an IDE and never ask Copilot a repo-wide question, you are paying $20 a head for a capability nobody opens.

AI credits: the meter under both plans

GitHub replaced the old premium-request counter with AI credits. The mechanics are simple enough to model in a spreadsheet, and they are more forgiving than what they replaced.

  • A credit is $0.01. Additional usage beyond the included allowance bills at $0.01 per AI credit.
  • Credits pool at the billing entity. An enterprise with 100 Business licenses gets one shared pool of 190,000 credits, not 100 separate buckets, so a power user can draw far past their nominal share while light users offset it.
  • Code completions stay unlimited on every paid plan and deduct no credits. Only chat, agents, code review, and similar features draw down.
  • Budgets are the control, set at the user, cost center, and enterprise level.
  • Each model carries a multiplier, so the credit cost of a message depends on which model answered it.

A worked check on a 200-engineer Enterprise deployment. Seats cost 200 times $39, or $7,800 a month. The pooled credit allowance is 780,000 credits, worth $7,800. If your measured agent usage is $60 per engineer per month, that is $12,000 of inference against $7,800 included, so you buy 420,000 credits at $0.01 and the real bill is $12,000, not $7,800. The seat line stopped being the budget the moment agents entered the workflow.

Seat management is where the money actually leaks

Copilot bills per assigned seat, not per active user, and the gap between those two numbers is the most reliable saving available in the whole product. The reclaim loop is fully automatable through the REST API.

Copilot seat management endpoints. Scopes from the GitHub REST documentation, August 2026.
ActionEndpointScopes
List seats with last_activity_atGET /orgs/{org}/copilot/billing/seatsmanage_billing:copilot or read:org
Assign to usersPOST /orgs/{org}/copilot/billing/selected_usersmanage_billing:copilot or admin:org
Remove from usersDELETE /orgs/{org}/copilot/billing/selected_usersmanage_billing:copilot or admin:org
Assign to teamsPOST /orgs/{org}/copilot/billing/selected_teamsmanage_billing:copilot or admin:org
Remove from teamsDELETE /orgs/{org}/copilot/billing/selected_teamsmanage_billing:copilot or admin:org
Find seats with no activity in 30 days, then reclaim them.
gh api --paginate "/orgs/$ORG/copilot/billing/seats" \
  --jq '.seats[]
        | select(.last_activity_at == null
                 or (.last_activity_at | fromdateiso8601) < (now - 2592000))
        | .assignee.login' > dormant.txt

# review dormant.txt, then reclaim in one call
jq -Rn '{selected_usernames: [inputs]}' < dormant.txt \
  | gh api -X DELETE "/orgs/$ORG/copilot/billing/selected_users" --input -

Thirty dormant Enterprise seats is $1,170 a month, or $14,040 a year, for software nobody opened. Run the reclaim in the last week of every cycle, notify the affected people first so a returning engineer is not silently locked out, and keep assignment on teams rather than individuals so joiners and leavers follow the identity provider instead of a spreadsheet.

Copilot seats against an agent-first stack

The comparison people actually want is not Business against Enterprise. It is whether a Copilot seat is the right shape at all next to a terminal agent, because the two price completely differently.

What a seat buys, per developer per month, at August 2026 list prices.
StackFixedInferenceShape
Copilot Business$19$19 of credits, then $0.01/creditSeat plus pass-through metering
Copilot Enterprise$39$39 of credits, then $0.01/creditSeat plus pass-through metering
Claude Team Premium, annual$100Allowance, 6.25x ProPrepaid capacity
ChatGPT Business premium, annual$100Allowance, 5x standardPrepaid capacity
Bring your own key on any agent CLI$0Provider list pricePure metering

Copilot’s honest advantage is that inline completions are unlimited and free of credits on every paid plan, which is a genuinely large amount of free value for the way most people still write code. Its honest disadvantage is that the agentic half, the part everyone is buying for in 2026, is metered at list price on top of a seat fee, so it converges on the cost of buying tokens directly while keeping a seat fee you cannot avoid.

Questions people ask

How much is GitHub Copilot Enterprise per user?

$39 USD per granted seat per month, against $19 for Copilot Business. Both bill per assigned seat rather than per active user, and both include a monthly AI credits allowance equal in value to the seat price: 3,900 credits on Enterprise and 1,900 on Business, at $0.01 per credit.

What does Copilot Enterprise add over Copilot Business?

Copilot on GitHub.com with codebase indexing, access to fine-tuned custom private models for inline suggestions, priority access to new models and features, and a larger monthly pool of AI credits. Everything else, including organization policy management and IDE and CLI access, is already in Business.

How many premium requests or AI credits does Copilot Business include?

Under the AI credits model, Copilot Business includes 1,900 AI credits per user per month and Copilot Enterprise includes 3,900, pooled at the billing-entity level rather than held per user. Extra usage is $0.01 per credit. Code completions remain unlimited on every paid plan and consume no credits.

How do I remove unused GitHub Copilot seats?

List seats with GET /orgs/{org}/copilot/billing/seats, which returns last_activity_at per seat, then remove the dormant ones with DELETE /orgs/{org}/copilot/billing/selected_users. Removed seats keep billing until the end of the current billing cycle, so run the reclaim near the cycle boundary rather than just after it.

Are Copilot AI credits shared across the organization?

Yes. Included credits accumulate into a shared pool at the billing entity, so an enterprise with 100 Business licenses has one pool of 190,000 credits. Heavy users can draw well past their nominal share while lighter users offset the consumption, and budgets can be set at the user, cost center, and enterprise level.

Did GitHub Copilot pricing change in 2026?

The seat prices did not change: Business is still $19 and Enterprise $39. The usage model did, moving from premium requests to AI credits at $0.01 each, with a promotional window of higher included credits from June to August 2026 for existing customers. Budgets built during that window will under-forecast the steady state.

Sources

Every figure above was read from these pages on August 2026. Vendors reprice without notice; if you find a stale number, tell us.

  1. GitHub Docs: plans for GitHub Copilot
  2. GitHub Docs: billing for Copilot in organizations and enterprises Included AI credits, pooling, and the $0.01 overage rate.
  3. GitHub Docs: billing for individual Copilot plans
  4. GitHub Copilot plans and pricing
  5. GitHub REST: Copilot user management
  6. GitHub Blog: Copilot is moving to usage-based billing
Try it

Seats assigned,
or seats used?

Continuum measures what your engineers actually run, by repo and by model, across every agent and every account, so a seat renewal is an argument about evidence.

free app · your subscriptions · local-first