OpenAI reshuffles its plans in April 2026
OpenAI pushed a fresh wave of ChatGPT updates on April 11: GPT-5.3 Instant Mini as a cheaper, faster fallback model, and a revamped plan lineup featuring a new $100/month Pro tier with extended Codex access. I have been paying for ChatGPT Plus for years, and this is the biggest shuffle since GPT-5 launched.
Details are in the official release notes and updated pricing at chat.openai.com.
GPT-5.3 Instant Mini: what changes
Mini does not replace the main model: it backs it up when you hit message limits on Plus or when latency matters. After testing it a full day, it is clearly more conversational than the old fallback.
- Writing: warmer tone, less stiff.
- Context: better in-session memory.
- Speed: ~30% faster than GPT-5 Instant.
Updated plans table (April 2026)
| Plan | Price | Models | Codex | Best for |
|---|---|---|---|---|
| Free | $0 | GPT-5.3 Mini | No | Casual use |
| Plus | $20/mo | GPT-5.3 + Mini | Limited | Professionals |
| Pro (new) | $100/mo | GPT-5.3 Pro + Codex | Extended | Developers, power users |
| Enterprise | From $60/user | All + admin | Full | Companies |
Is the $100 Pro plan worth it?
It depends on your workload. After a full week inside my daily coding workflow, Pro only makes sense if you check one of these boxes:
- You run Codex more than 2 hours a day.
- You hit Plus limits at least 3 times a week.
- You need snappy responses during peak hours.
If ChatGPT is just a tool you dip into, stay on Plus. Most users will not feel the difference.
Sample code using the Codex API
from openai import OpenAI
client = OpenAI()
response = client.chat.completions.create(
model="gpt-5.3-codex",
messages=[{"role": "user", "content": "Write a Python script that lists files modified in the last 24h"}]
)
print(response.choices[0].message.content)
Troubleshooting plan changes
"I upgraded to Pro but still see Plus limits." Sign out and back in. If it persists, go to Settings > Subscription and hit "Refresh plan".
"I do not see Codex in the model selector." Codex only appears on Pro 5-10 minutes after upgrade. If 30 minutes pass, contact support.
"My bill is in USD but I use ChatGPT from the EU." OpenAI charges in USD and your bank applies the day's FX rate plus a 1-3% fee.
My verdict after testing the new plans
GPT-5.3 Mini is a big fallback upgrade and justifies staying on Plus. The $100 Pro is a niche tier for serious developers, not the average user. After testing Claude Pro ($20) and Gemini Advanced ($19), my recommendation is Plus for 80% of cases.