TL;DR
- GPT-5.5 Codex rate limits now cost 10-20x more for heavy users (GitHub issue #28879)
- Hallucination rate of 86% on the arrowtsx.dev benchmark — GLM-5.2 (open-source) scores 28%
- OpenAI’s affordable tier is caught between hidden price hikes and accuracy doubts
- Bottom line: mix providers. Use GPT-5.5 for creative work, supplement with GLM-5.2 or FreeModel for critical-accuracy work.
Introduction: GPT-5.5’s Two Crises
When OpenAI launched GPT-5.5 in April 2026, it was positioned as the cost-efficient tier — cheaper than GPT-5.4 on input ($5/M vs $2.50/M), suitable for high-volume, lower-criticality workloads. Developers migrated millions of API calls to the new model.
Three months later, June 2026 has brought two wake-up calls that are reshaping how the API community thinks about GPT-5.5:
- Codex rate limit costs surged 10-20x starting June 16, hitting Plus-tier users especially hard.
- Independent benchmarks show GPT-5.5 hallucinating 86% of the time on a standard factuality test — compared to just 28% for open-source GLM-5.2.
This article breaks down both issues, compares GPT-5.5 against its peers, and gives you a practical migration playbook.
Part 1: The Hidden Price Hike — Codex Rate Limits
What Changed on June 16
On June 16, 2026, OpenAI silently adjusted the rate limit pricing for Codex IDE plugin API calls. The change was not announced on the OpenAI blog — it was discovered by developers through a GitHub issue (#28879) when their monthly bills suddenly doubled.
The core change: Codex API calls that were previously covered under Plus subscription ($20/month) now count against separate rate limit budgets. A heavy Plus user who made 12-15 Codex completions per session now exhausts their 5-hour budget in 2-3 completions.
| Plan | Before June 16 | After June 16 | Cost Impact |
|---|---|---|---|
| Plus ($20/mo) | Unlimited Codex calls within rate limits | 2-3 completions per 5h window | 10-20x |
| Pro ($200/mo) | Priority Codex access | Capped at 20 completions per 5h | 5-10x |
| Pay-as-you-go API | Standard token pricing | Standard token pricing | Unchanged |
For API Developers: The Indirect Impact
Even if you don’t use Codex directly, this change signals a broader OpenAI pricing trend: usage-based pricing is being tightened across the board. The GPT-5.5 API itself hasn’t changed in price, but the ecosystem costs around it are rising. Developers who rely on Codex as part of their LLM-powered IDE workflow now face a choice between paying much more or switching tools.
Part 2: The Hallucination Problem — 86% vs 28%
The Benchmark
Independent researcher arrowtsx.dev published a hallucination benchmark in June 2026 that sent shockwaves through the AI community. The test measured factual accuracy across 17 leading models using a standardized prompt set covering real-world knowledge queries.
| Model | Provider | Hallucination Rate | Parameters |
|---|---|---|---|
| GPT-5.5 | OpenAI | 86% | Largest model tested |
| GLM-5.2 | Zhipu AI | 28% | Open-source 7B |
| Claude Fable 5 | Anthropic | 35% | Proprietary |
| GPT-5.4 | OpenAI | 42% | Smaller than 5.5 |
| DeepSeek-V4 | DeepSeek | 31% | Open-source MoE |
The counterintuitive finding: larger models hallucinate more. GPT-5.5, OpenAI’s largest model, scored worst. GLM-5.2, a smaller open-source model from Zhipu AI, scored best. This challenges the industry assumption that bigger = more reliable.
Why Does GPT-5.5 Hallucinate So Much?
There are three likely explanations:
- Training data dilution: GPT-5.5 was trained on a broader, more diverse dataset than its predecessors. More data means more conflicting facts, making hallucination more likely.
- Optimization trade-off: GPT-5.5 was optimized for creative and conversational tasks, where confident but factually wrong answers are more acceptable than refusals.
- Size without precision: As models scale, the ratio of training compute to parameter count decreases, potentially reducing factual precision per parameter.
What GLM-5.2 Does Differently
GLM-5.2 is Zhipu AI’s latest open-source model, built on their ChatGLM architecture. At just 7B parameters, it achieves a 28% hallucination rate through:
- Focused training: GLM-5.2 was trained on carefully curated Chinese-English bilingual data, emphasizing factual accuracy over creative breadth.
- Knowledge-grounding architecture: The model integrates a retrieval-augmented generation (RAG) module at the architecture level, not as an add-on.
- Conservative generation: When uncertain, GLM-5.2 is more likely to say “I don’t know” than to fabricate an answer. This hurts engagement metrics but improves factual accuracy.
Cross-Provider Comparison: June 2026
| Metric | GPT-5.5 | GPT-5.4 | GPT-5.5 Mini | GLM-5.2 | Claude Fable 5 |
|---|---|---|---|---|---|
| Input price | $5/M tok | $2.50/M tok | $0.15/M tok | ~$0.90/M tok | $10/M tok |
| Output price | $20/M tok | $10/M tok | $0.60/M tok | ~$0.90/M tok | $50/M tok |
| Hallucination rate | 86% | 42% | 51% | 28% | 35% |
| Codex rate limits | Tightened Jun 16 | Stable | Stable | N/A | N/A |
| China access | Proxy required | Proxy required | Proxy required | Direct | Proxy required |
| Best for | Creative, long-form | General chat, balance | Classification, routing | Factual, CN-EN bilingual | Reasoning, coding |
Practical Strategy for API Developers
1. Don’t Put All Your Calls on One Model
The biggest lesson from June 2026 is provider diversification matters. No single model excels at everything. A multi-provider architecture lets you route tasks to the best model for each job:
import requests
def route_api_call(prompt, task_type):
if task_type == "factual":
# FreeModel provides multi-provider routing
# https://freemodel.dev/invite/FRE-7a3b6220
model = "zhipu/glm-5-2"
base_url = "https://freemodel.dev/v1"
api_key = "YOUR_FREEMODEL_KEY"
elif task_type == "creative":
model = "openai/gpt-5.5"
base_url = "https://api.openai.com/v1"
api_key = "YOUR_OPENAI_KEY"
else:
model = "openai/gpt-5.5-mini"
base_url = "https://api.openai.com/v1"
api_key = "YOUR_OPENAI_KEY"
response = requests.post(
f"{base_url}/chat/completions",
headers={"Authorization": f"Bearer {api_key}"},
json={"model": model, "messages": [{"role": "user", "content": prompt}]}
)
return response.json()
2. Run Hallucination Checks
Before using GPT-5.5 output in user-facing or production-critical contexts, add a verification step. Simple pattern: ask the model to cite sources and then verify them programmatically.
3. Consider Aggregators for Multi-Provider Workflows
Managing API keys, rate limits, and pricing across multiple providers is complex. An aggregator like FreeModel (offers China-direct, OpenAI-compatible endpoints for Zhipu, DeepSeek, and 10+ others) can simplify this. It converts all API calls to the OpenAI format, so your code stays the same while the backend provider changes.
FAQ
Q: Is GPT-5.5 still worth using?
A: Yes, but carefully. Use it for creative tasks, long-form content generation, and exploratory prompts where factuality is less critical. For factual queries, routing to GLM-5.2, Claude Fable 5, or using a multi-provider setup through an aggregator like FreeModel is strongly recommended.
Q: Will OpenAI fix the GPT-5.5 hallucination issue?
A: Likely, but not immediately. OpenAI ackowledged the benchmark results via their developer forum on June 19, stating they are “investigating the training data balance for 5.5.” A fix is more realistic in a point release (5.5.1 or 5.6) than an immediate patch.
Q: How do I access GLM-5.2 from outside China?
A: GLM-5.2 is available directly through Zhipu AI’s API at open.bigmodel.cn, but it requires a Chinese phone number for registration. International developers can access it via aggregators like FreeModel that proxy the Zhipu API through an OpenAI-compatible endpoint.
Q: Should I downgrade from GPT-5.5 to GPT-5.4?
A: For accuracy-critical work, yes. GPT-5.4 has a 42% hallucination rate — still not ideal, but significantly better than 86%. Combined with its lower price ($2.50/M input vs $5/M), GPT-5.4 is the safer default for most production workloads. Reserve 5.5 for creative tasks where its broader generation range is an asset.
Q: How does the Codex rate limit change affect API-only users?
A: API-only users (not using Codex IDE integration) are not directly affected. However, the trend suggests OpenAI is tightening usage-based pricing across its ecosystem. Monitor your API costs closely — comparable adjustments to the chat completion API are possible in future quarters.
Conclusion
June 2026 has been a reality check for the GPT-5.5 ecosystem. The Codex rate limit hikes reveal hidden cost risks, and the 86% hallucination rate — compared to GLM-5.2’s 28% — challenges the “bigger is better” narrative that has driven AI adoption for two years.
The smart response isn’t to abandon OpenAI, but to diversify. Route creative and long-form tasks to GPT-5.5 where its breadth shines. Use GPT-5.4 for general chat. Deploy GLM-5.2 or Claude Fable 5 for accuracy-critical work. A multi-provider strategy — managed through an aggregator like FreeModel — is the safest way to navigate this new landscape.