Claude Fable 5 API Changes and Pricing for Developers

Claude Fable 5 has been released by Anthropic on June 9, 2026, marking its first generally available Mythos-class model. This new release comes with a higher cost structure compared to its predecessor, Claude Opus 4.8: priced at $10 per million input tokens and $50 per million output tokens. While the price increase is noteworthy, it's not the only change developers need to be aware of.
Breaking Changes in API Behavior
The most significant changes revolve around how the API handles requests and responses. Here are three critical updates that could affect existing integrations:
Adaptive Thinking
Previously on Opus 4.8, you had the option to disable thinking for trade-offs between latency and quality. However, this feature has been removed entirely in Fable 5. To mimic adaptive thinking behavior, developers should use the effort parameter in their requests. Here’s an example of how to set it up:
{
"model": "claude-fable-5",
"max_tokens": 16000,
"effort": "high",
"messages": [
// Your messages here
]
}
Refusals as HTTP 200 Responses
In Fable 5, declined requests are now presented as successful API responses with the stop_reason field indicating why the request was refused. This is a crucial change for developers to be aware of:
{
"stop_reason": "refusal",
"stop_details": {
"category": "cyber"
}
}
The category can be one of several predefined values: cyber, bio, or reasoning_extraction. Developers need to check the stop_reason on every response from Fable 5. The behavior for billing is also different:
- If a request is refused before any output, it will not incur any charges.
- If the refusal happens mid-stream, only the input tokens are billed, and any partial output is discarded.
Opus 4.8 Fallback
Fable 5 leverages the same underlying model as Claude Mythos 5 but introduces safety classifiers that were absent in previous versions. This means that flagged requests will now be routed to the older Opus 4.8 version of the model, even if they would have been handled by Fable 5.
Pricing Structure
As for pricing, every rate on Fable 5 is exactly double what it was on Claude Opus 4.8:
- Cache reads cost $1 per request.
- 5-minute cache writes cost $12.50 per request.
- Hourly writes now cost $20 per write.
- Batch processing remains at $5 for up to 3,000 tokens and $25 for more than that.
Conclusion
Developers should update their integration strategies to accommodate these changes in Fable 5. The migration guide provided by Anthropic is a valuable resource, as it offers detailed instructions on how to transition from Opus-era semantics to the new behavior of Fable 5. By understanding and implementing these updates, developers can ensure smooth transitions for their applications and maintain optimal performance with this latest Claude model release.
Source: DEV Community. AI-assisted editorial synthesis — TechnoExpress.

