claude

Claude Doubles Off-Peak Limits March 13-27

Anthropic temporarily doubles Claude's usage limits during off-peak hours from March 13-27, 2026, automatically applying to all Free, Pro, Max, and Team plan

Claude Doubles Off-Peak Usage Limits March 13-27

What It Is

Anthropic is running a time-limited promotion that doubles Claude’s standard usage limits during off-peak hours from March 13-27, 2026. The promotion applies automatically to Free, Pro, Max, and Team plan subscribers without requiring any opt-in or configuration changes.

Off-peak hours are defined as any time before 8 AM Eastern Time or after 2 PM Eastern Time. During these windows, users receive twice the normal five-hour usage allocation. Peak hours between 8 AM and 2 PM ET maintain standard limits. The doubled capacity applies across all Claude interfaces - the web application at https://claude.ai, desktop clients, mobile apps, Cowork collaboration features, Claude Code development tools, and Microsoft Office integrations for Excel and PowerPoint.

Enterprise plan customers are excluded from this promotion, likely because they already operate under different usage agreements with custom limits negotiated directly with Anthropic.

Why It Matters

This promotion addresses a common pain point for developers and teams who regularly hit Claude’s usage limits during intensive work sessions. Rate limiting has been a persistent challenge for users running extended coding sessions, processing large document sets, or conducting research that requires sustained interaction with the model.

The timing window creates interesting opportunities for distributed teams. West Coast developers working before 8 AM ET (5 AM Pacific) or after 2 PM ET (11 AM Pacific) can maximize the doubled limits during their normal working hours. International teams in European or Asian time zones naturally fall into off-peak windows for most of their workday, giving them a significant advantage during the promotional period.

For individual developers, this promotion effectively provides a testing ground for higher-tier usage patterns without upgrading plans. Someone considering whether a Pro or Max plan provides sufficient capacity can evaluate their actual needs during these two weeks by pushing harder during off-peak hours and monitoring whether the doubled limits meet their requirements.

The automatic application across all Claude interfaces means the benefits extend beyond simple chat interactions. Teams using Claude Code for development work can run longer refactoring sessions, while researchers processing documents through the API integrations gain additional throughput for batch operations.

Getting Started

No configuration is required - the doubled limits activate automatically for eligible accounts during off-peak hours. To maximize the promotion:

Check the current Eastern Time at https://time.is/ET to confirm whether work sessions fall within off-peak windows. For users in other time zones, this simple calculation helps schedule intensive tasks appropriately.

For developers running batch processing or code generation tasks, structure work to align with off-peak hours:

# Schedule intensive Claude API calls for off-peak hours import datetime import pytz

et_tz = pytz.timezone('America/New_York')
current_et = datetime.datetime.now(et_tz)
hour = current_et.hour

if hour < 8 or hour >= 14:
 # Off-peak: run doubled-limit tasks
 process_large_codebase()
else:
 # Peak: handle lighter queries
 handle_quick_requests()

Teams can coordinate to shift collaborative sessions, code reviews using Claude Code, or document analysis work into morning or afternoon slots during the promotional period.

Context

This promotion differs from typical SaaS pricing strategies that encourage upgrades through feature gating. Instead, Anthropic is testing demand-based capacity management - a model more common in cloud infrastructure than AI services. AWS and Google Cloud have used similar off-peak pricing for years to balance datacenter loads.

The two-week duration suggests Anthropic is gathering data on usage patterns and infrastructure capacity. If successful, this could evolve into permanent tiered pricing with off-peak discounts or become a recurring promotional strategy during periods of lower overall demand.

Compared to competitors, Claude’s approach is more transparent than OpenAI’s dynamic rate limiting, which adjusts based on undisclosed factors. Google’s Gemini offers different rate limits across API tiers but doesn’t currently provide time-based variations.

The Enterprise exclusion indicates this promotion primarily targets individual developers and small teams - segments where usage patterns are more flexible and price sensitivity is higher. Larger organizations with committed contracts likely have negotiated limits that already exceed what this promotion offers.

Full promotion details are available at https://support.claude.com/en/articles/14063676-claude-march-2026-usage-promotion.