The Per-Task Cost Trap: Why Your 'Cheaper' Model Just Doubled Your AI COGS
The Core Finding
Claude Sonnet 5 launched as the new mid-tier default with promotional pricing of $2/M input and $10/M output tokens — seemingly a cost reduction. But real-world data reveals the opposite: Sonnet 5 costs $2.29 per completed task versus $1.15 for Sonnet 4.6 and ~$2.00 for Opus 4.8. The 'cheaper' model is the most expensive to actually use.
Per-token pricing is now a misleading metric. The cost-quality relationship is a dial, not a switch — and the dial is turned to 'expensive' by default.
Why This Happens
Sonnet 5 generates 69K output tokens per task (40% more than Sonnet 4.6) and takes 3-6x the agentic turns on complex work. Anthropic calls it 'our most agentic Sonnet yet' — meaning it decomposes problems into multi-step loops by design. Add Simon Willison's finding that the new tokenizer inflates English costs by 1.4x, and the per-token price advantage evaporates entirely.
The Five Effort Levels Complicate Everything
Sonnet 5 ships with five effort levels (max, xhigh, high, medium, low) that trade compute for quality. Max effort spends 6x the turns of low effort. Most integrations default to high or max. Your cost depends entirely on which level your workload triggers — and most PMs haven't profiled this yet.
The August 31 Cliff
Anthropic's promotional pricing ($2/$10) jumps to $3/$15 on September 1 — a 50% increase. Teams validating at promo rates will discover their features are margin-negative at real pricing. The promotional window is not a gift; it's an adoption ratchet designed to create switching costs before the real price kicks in.
The Counter-Signal: Cache Pricing Reveals Intent
Sonnet 5's cache pricing offers a 90% discount on hits ($0.30/M, 5-minute TTL). This reveals Anthropic's architectural assumption: the winning use case is repeated-context agent loops, not one-shot queries. If you architect for cache hits — stable system prompts, consistent conversation prefixes — you can dramatically reduce effective costs. But this requires deliberate design, not just API calls.
Sources Disagree on Net Impact
One source frames Sonnet 5 as delivering 'near-Opus quality at 60% lower cost' for knowledge work. Another shows it costs 2x for agentic tasks. Both are correct — the divergence depends entirely on whether your workload is one-shot knowledge retrieval or multi-step autonomous execution. The model is cheap for what it reads, expensive for what it does.
Your 60-Day Action Window
The promotional period gives you a natural boundary to validate real economics before September's cliff.
What to do
Run per-task cost benchmarks on your top 5 AI features using Sonnet 5 at each effort level (max through low) against your current model baseline
Implement context caching for your highest-volume API calls; design system prompts and conversation prefixes to maximize cache hits within the 5-minute TTL
Model your AI feature P&L at post-promo rates ($3/$15) and present break-even scenarios to leadership before August
Build model routing that dispatches to Sonnet 5 for agentic tasks only when justified by quality requirements; default simpler queries to Sonnet 4.6 or open-weight alternatives (GLM-5.2)