Published 2026-04-10 · Not yet reviewed · Figures compiled 2026-04-10, not re-checked since · 1 OpenAI pricing change tracked
0 days
until Realtime API beta shutdown
May 7, 2026 · OpenAI stability: VOLATILE
0
Days Remaining
6
Alternatives Compared
4
With Free Tiers
4
Breaking Changes
What's happening: OpenAI is deprecating the Realtime API beta on May 7, 2026. The beta endpoints (which required the OpenAI-Beta: realtime=v1 header) will stop working. The GA (stable) Realtime API is the replacement.
Easiest migration:Remove the beta header, update session creation to use client_secrets, and add session_type. If you are already using the OpenAI SDK, the changes are minimal. The GA API uses the same WebSocket protocol with updated event names.
Alternatives exist: If you are reconsidering OpenAI for real-time audio, Deepgram ($200 free credit, $0.0043/min), AssemblyAI (free tier), and Google Cloud Speech-to-Text (60 min/month free) offer real-time transcription at lower per-minute costs.
Four key changes required when migrating from the Realtime API beta to the stable GA release.
1. Remove the Beta Header
The OpenAI-Beta: realtime=v1 header is no longer needed. The GA Realtime API is the default. Remove this header from all requests.
2. New Ephemeral Key Endpoint
Use POST /v1/realtime/client_secrets to generate ephemeral keys for client-side WebSocket connections. This replaces the beta session creation flow.
3. Required session_type Parameter
You must now specify session_type when creating sessions: "speech-to-speech" for bidirectional voice conversations or "transcription" for audio-to-text. The beta used a single session type for both.
4. Updated Event Names and Payloads
Some WebSocket event names and payload structures have been updated in the GA release. Review the official documentation for the updated event reference.
Real-Time Audio API Alternatives
All 6 alternatives compared. Migration effort rated from the perspective of an OpenAI Realtime API integration.
OpenAI vs alternatives: OpenAI Realtime API is unique in offering speech-to-speech (bidirectional voice conversations with an AI model). Most alternatives focus on either speech-to-text (Deepgram, AssemblyAI, Google) or text-to-speech (ElevenLabs). If you need full voice conversation capability, OpenAI GA or Azure OpenAI are your primary options.
Pricing Comparison
Per-minute costs across all providers. OpenAI Realtime beta pricing shown for reference.
Provider
Free Tier
Per-Minute Cost
Features
OpenAI Realtime (beta)
None (shutting down)
$0.06/min in, $0.24/min out
Speech-to-speech + transcription
OpenAI Realtime (GA)
None
$0.06/min in, $0.24/min out
Speech-to-speech + transcription
Deepgram
$200 credit
$0.0043/min (Nova-2)
Speech-to-text, 30+ languages
AssemblyAI
Free tier
~$0.026/min
Transcription + LeMUR AI
Azure OpenAI Realtime
$200 credit
Enterprise pricing
Same as OpenAI + Azure compliance
ElevenLabs
10K chars/mo
$0.30/1K characters
Text-to-speech, voice cloning
Google Cloud STT
60 min/mo
~$0.024/min
125+ languages, streaming
Cost comparison: OpenAI Realtime API is significantly more expensive per minute than speech-to-text alternatives because it includes AI model inference (GPT-4o) in the pipeline. If you only need transcription, Deepgram at $0.0043/min is roughly 14x cheaper than OpenAI's audio input rate. However, for full speech-to-speech with AI reasoning, OpenAI remains the most integrated option.
Migration Paths
Three paths depending on your use case. The right choice depends on whether you need speech-to-speech, transcription only, or voice synthesis.
Path 1: Stay with OpenAI (Beta to GA)
The easiest migration. Remove the beta header, update session creation to use /v1/realtime/client_secrets, add session_type, and update any changed event names. Same SDK, same pricing, same capabilities.
Best for: Existing OpenAI Realtime users who need speech-to-speech and want minimal code changes
If you only need speech-to-text, dedicated transcription services offer better per-minute pricing and often lower latency. Deepgram Nova-2 leads on accuracy and speed. AssemblyAI adds AI-powered analysis via LeMUR. Google offers the widest language support (125+).
Best for: Applications that process audio input but generate text responses, transcription services, meeting recorders
Path 3: Voice Synthesis (ElevenLabs)
If your use case is generating spoken audio from text, ElevenLabs offers the lowest latency (~75ms) and highest quality voice synthesis with voice cloning capabilities. 10K characters/month free to start.
Best for: Voice assistants, audiobook generation, voice cloning, accessibility features
session_type options: The GA Realtime API requires specifying "speech-to-speech" for bidirectional voice conversations (the model speaks back) or "transcription" for audio-to-text only. The beta handled both in a single session type, so you need to choose which mode your application uses.
Frequently Asked Questions
When does the OpenAI Realtime API beta shut down?▼
OpenAI is deprecating the Realtime API beta on May 7, 2026. After this date, requests using the OpenAI-Beta: realtime=v1 header will stop working. The stable (GA) Realtime API continues to function and is the direct replacement.
What are the key breaking changes from beta to GA?▼
There are four main changes: (1) Remove the OpenAI-Beta: realtime=v1 header, (2) Use the new POST /v1/realtime/client_secrets endpoint for ephemeral keys instead of the beta session creation flow, (3) Specify session_type as either 'speech-to-speech' or 'transcription' when creating sessions, and (4) Some event names and payload structures have been updated.
Do I need to change my OpenAI SDK version?▼
If you are using the latest OpenAI Python SDK (1.x+) or Node.js SDK, the GA Realtime API is supported. The main code changes are removing the beta header, updating the session creation flow to use client_secrets, and adding session_type to your configuration. No major SDK upgrade is required.
What are the best alternatives to OpenAI Realtime API?▼
For speech-to-text: Deepgram (Nova-2 model, $200 free credit, very low latency) and AssemblyAI (free tier, includes AI analysis via LeMUR). For text-to-speech: ElevenLabs (10K characters/month free, ultra-low latency voice synthesis). For enterprise: Azure OpenAI Realtime (same API, Azure compliance). For multi-language: Google Cloud Speech-to-Text (125+ languages, 60 min/month free).
Is the OpenAI Realtime API GA more expensive than the beta?▼
The GA pricing model is the same as the beta: audio input costs approximately $0.06/minute and audio output costs approximately $0.24/minute (based on token pricing). There is no price increase with the GA release. However, if cost is a concern, alternatives like Deepgram ($0.0043/min) offer significantly lower per-minute pricing for speech-to-text use cases.
Realtime API beta endpoints deprecated. Developers must remove OpenAI-Beta header, use new client_secrets endpoint, specify session_type, and update event names. GA Realtime API is the direct replacement.
HIGH
Recommendations
Best Alternative for Each Use Case
Fastest migration (recommended for most):
OpenAI Realtime API GA — same SDK, same pricing. Remove the beta header, update session creation, add session_type. If it worked in beta, it will work in GA with minimal changes.
Best for transcription:
Deepgram Nova-2 — $200 free credit, $0.0043/min (14x cheaper than OpenAI audio input). Industry-leading accuracy and very low latency (~100ms). Supports 30+ languages.
Best for transcription + AI analysis:
AssemblyAI — real-time transcription plus LeMUR for summarization, sentiment analysis, and Q&A on transcribed content. Free tier available.
Best for enterprise:
Azure OpenAI Realtime — same API as OpenAI with Azure compliance, data residency, and enterprise support. $200 credit for new accounts.
Best for voice synthesis:
ElevenLabs — ultra-low latency (~75ms) text-to-speech with voice cloning. 10K characters/month free. Best quality synthetic voices on the market.
Best for multi-language:
Google Cloud Speech-to-Text — 125+ languages and variants, 60 min/month free. Best choice if you need broad language coverage.
Methodology
How we track this data: AgentDeals monitors free tier changes across 1,580 developer tools in 66 categories. The Realtime API beta deprecation is tracked in our shutdown tracker and stability dashboard.
Migration recommendations: Based on API documentation review, SDK compatibility analysis, and community reports. Pricing data verified against official provider pricing pages as of 2026-04-10. Free tier availability confirmed via official documentation.
Best Free LLM APIs in 2026— 25+ free LLM API providers compared — proprietary model APIs, open-model inference platforms, and AI gateways with exact rate limits
Best Free API Development Tools in 2026— 39+ free API development tools compared — REST/GraphQL clients, mocking, documentation, marketplaces, and integration platforms
The Complete Free Startup Stack for 2026— Complete free SaaS infrastructure stack — 10 categories with recommended picks, scaling guidance, and stability ratings
The Complete Free AI/ML Stack for 2026— Complete free AI/ML development stack — 10 categories with recommended picks, scaling guidance, and stability ratings
The Complete Free DevOps Stack for 2026— Complete free DevOps infrastructure stack — 10 categories with recommended picks, scaling guidance, and stability ratings
The Complete Free Frontend Stack for 2026— Complete free frontend/Jamstack development stack — 10 categories with recommended picks, scaling guidance, and stability ratings
The Complete Free Next.js Stack for 2026— Complete free Next.js full-stack infrastructure — 10 layers with recommended picks, growth cost analysis, and stability ratings
Vercel vs Netlify Free Tier Comparison— Deep comparison of Vercel and Netlify free tiers — bandwidth, functions, builds, commercial use, and scaling costs
Neon vs Supabase Free Tier Comparison— Deep comparison of Neon and Supabase free tiers — database-only vs full platform, branching, auth, storage, and scaling costs
Railway vs Render Free Tier Comparison— Deep comparison of Railway and Render free tiers — usage-based vs fixed pricing, databases, sleep behavior, and scaling costs
Datadog vs New Relic Free Tier Comparison— Deep comparison of Datadog and New Relic free tiers — per-host vs per-GB pricing, APM, logs, synthetics, and scaling costs
Gemini API Pricing 2026— Gemini API billing guide — spend caps ($250-$100K+/mo), prepaid billing, 3.1 Pro paid-only, free tier changes, 8-provider comparison
Google Gemini API Pricing Overhaul Guide— Gemini API pricing overhaul guide — before/after limits, cost analysis by usage tier, 11 LLM alternatives, migration recommendations by use case
Free Tier Tracker— Q1 2026 free tier erosion report — which developer free tiers were removed, reduced, or expanded
Startup Credits Comparison 2026— The definitive startup credits comparison — 15+ programs across cloud infrastructure, fintech, and developer tools with eligibility requirements, vesting schedules, and stacking strategies
AI Coding Tools Pricing Guide— AI coding tools pricing comparison — free tiers, pro plans, power tiers, and recent March 2026 pricing changes
AI Coding Tools Pricing Comparison 2026— The definitive AI coding tools comparison — 17 tools across IDE, CLI, cloud agent, and app builder categories with free tier analysis and cost breakdowns
CI/CD Tools Pricing Comparison 2026— The definitive CI/CD pricing comparison — 17+ tools across general, cloud-native, mobile, and self-hosted categories with free tier analysis and cost breakdowns
Database Pricing Comparison 2026— The definitive database pricing comparison — 25+ services across managed Postgres, serverless/edge, document/NoSQL, cloud provider, and specialized categories with free tier analysis and cost breakdowns
Vector Database Pricing Comparison 2026— The definitive vector database pricing comparison — 11 services across dedicated cloud, open-source, pgvector, embedded, and serverless categories with free tier analysis for RAG/AI
Cloud Hosting & PaaS Pricing Comparison 2026— The definitive cloud hosting pricing comparison — 15 platforms across PaaS, edge/serverless, full-featured, and static categories with free tier analysis, pricing gotchas, and Railway referral
LLM API Pricing Comparison 2026— The definitive LLM API pricing comparison — 20+ providers across frontier labs, inference providers, open-source hosts, and specialized services with free tier analysis and token cost breakdowns
AWS Free Tier Complete Guide 2026— Complete AWS free tier guide — every free service, real limits, hidden costs, and Aurora PostgreSQL Serverless (new March 2026)
GCP Free Tier Complete Guide 2026— Complete GCP free tier guide — 30+ always-free products, $300 trial, hidden costs, and comparison with AWS and Azure
Azure Free Tier Complete Guide 2026— Complete Azure free tier guide — 65+ always-free services, $200 trial, Cosmos DB lifetime free tier, and comparison with AWS and GCP
DigitalOcean Free Tier Complete Guide 2026— Complete DigitalOcean guide — $200 free credits, 20% Droplet price cuts, App Platform free tier, per-second billing, and Big Three comparison
Cloud Free Tier Comparison 2026— Side-by-side comparison of AWS, GCP, Azure, and DigitalOcean free tiers — compute, databases, serverless, storage, startup credits, and hidden costs
Serverless Free Tier Comparison 2026— Side-by-side comparison of 10+ serverless free tiers — invocations, compute time, cold starts, billing models, and hidden costs compared
Auth & Identity Comparison 2026— Side-by-side comparison of 20+ auth free tiers — MAU/MRU limits, SSO, M2M tokens, agentic AI auth, self-hosted options, and growth cost traps
Monitoring & Observability Comparison 2026— Side-by-side comparison of 25+ monitoring free tiers — data ingest, retention, APM, error tracking, uptime, and the observability cost trap at 10 to 500 hosts
Email & Transactional Messaging Comparison 2026— Side-by-side comparison of 20+ email free tiers — SendGrid exodus migration guide, transactional vs marketing breakdown, growth cost at 10K-1M emails/month, deliverability traps
Storage & CDN Comparison 2026— Side-by-side comparison of 15+ storage and CDN free tiers — S3 egress tax breakdown, zero-egress providers, media CDN, self-hosted options, and scaling costs at 100GB/1TB/10TB/100TB
Testing & QA Tools Free Tier Comparison 2026— Side-by-side comparison of 15+ testing tool free tiers — E2E, visual regression, load testing, API testing, local dev, and the testing cost trap at scale
API Development Tools Free Tier Comparison 2026— Side-by-side comparison of 12+ API development tool free tiers — users, collections, requests, mock servers, local-first vs cloud, and the API tool migration trap
Hosting & PaaS Free Tier Comparison 2026— Side-by-side comparison of 12+ hosting free tiers — bandwidth, compute, build minutes, cold starts, commercial use restrictions, and the hosting cost trap at scale
Developer Security Tools Free Tier Comparison 2026— Side-by-side comparison of 20+ developer security tool free tiers — SAST, SCA, DAST, secrets detection, container security, and the DevSecOps cost trap at scale
State of Developer Free Tiers 2026— Data-driven analysis of 1,580 developer tool free tiers across 66 categories — trends, risks, and recommendations
OpenAI Assistants API Sunset— OpenAI Assistants API sunset August 2026 — migration paths, free AI API alternatives, and cost comparison
Firebase Studio Shutdown Guide— Firebase Studio shutdown guide — free cloud IDE alternatives with compute hours, storage, and collaboration limits compared
Developer Tool Shutdown Tracker 2026— Living tracker of developer tool shutdowns, API sunsets, and deprecation deadlines in 2026 — with migration paths and alternatives
Track real-time API shutdowns and compare developer tool free tiers from your AI assistant. Get stability ratings, migration alerts, and pricing comparisons — directly in your editor.
claude mcp add agentdeals -- npx -y agentdeals
Works with Claude Desktop, Cursor, Cline, Windsurf → Full setup guide