AI News

How Cars24 scales conversations and builds faster with OpenAI

Quick answer

Cars24 uses OpenAI-powered voice and chat agents to handle 1M+ monthly conversation minutes, recover 12% of lost leads, and bring agentic workflows to teams across the company.

Cars24’s OpenAI‑Powered Voice and Chat Agents: A Blueprint for Agentic Workflows in Enterprise

Cars24, a leading Indian used‑car marketplace, has deployed OpenAI‑powered voice and chat agents that now handle over one million minutes of conversation each month. The company reports that these agents recover 12 percent of leads that would otherwise have been lost and have sparked the adoption of agentic workflows across multiple teams. For developers building customer‑facing AI systems, this case study offers concrete metrics and architectural lessons that go far beyond the usual proof‑of‑concept demo.

The numbers alone demand attention. One million monthly conversation minutes represents a substantial fraction of Cars24’s total customer interactions. That scale implies the agents handle everything from initial inquiries about vehicle listings to scheduling test drives and negotiating trade‑in offers. More striking is the 12 percent lead recovery rate. In a transaction‑driven industry like automotive retail, a double‑digit recovery on lost leads directly impacts revenue. It suggests the AI is not merely answering common questions but re‑engaging users who might have abandoned the funnel due to slow response times, unclear information, or inconvenient callback windows.

Why the Metrics Matter to Developers

For developers who have experimented with generative AI chatbots, the gap between a functional prototype and a production system that moves business metrics is enormous. Cars24’s results show that the gap can be closed by combining voice and chat in a unified agentic layer. Voice handles the immediacy of phone calls (still the preferred channel for high‑value transactions like car purchases), while chat provides an auditable, asynchronous alternative. The 12 percent recovery rate implies that the AI is proactive—perhaps reaching out to leads who dropped off mid‑session or following up on incomplete forms.

Under the hood, this likely requires a mix of OpenAI’s real‑time audio APIs for low‑latency voice synthesis and recognition, plus chat completion endpoints for the conversational logic. The agentic workflows mentioned in the announcement suggest that the AI is not just a question‑answering bot but an autonomous actor that can trigger backend actions: updating CRM records, reserving inventory, sending SMS confirmations, or handing off to a human agent when confidence drops. Each of these capabilities demands careful orchestration—a pattern that many teams are now calling “agentic” but few have shipped at Cars24’s scale.

What Agentic Workflows Look Like in Practice

The phrase “bring agentic workflows to teams across the company” is broad, but in context it likely means that Cars24 has generalized the OpenAI‑powered agent pattern from customer support to other departments. Sales teams may use it to qualify leads, logistics teams to update shipment statuses, and finance teams to handle EMI calculations and payment reminders. This expansion across the enterprise is exactly what many platform teams aim for: one reusable AI layer that different business units can customize without building their own models.

For a developer architecting such a system, the key takeaway is the importance of function calling and structured output. To recover a lead, the agent must be able to read a CRM entry, determine why the lead stalled (e.g., price objection, missed call), craft a response, and log the outcome back to the CRM. Each step requires the model to emit structured JSON that can be validated and executed. Cars24’s success suggests that GPT‑class models are reliable enough at this task to operate on a million‑minute monthly basis, but developers should still invest in guardrails—timeouts, fallback responses, human escalation thresholds—to handle edge cases.

Comparing this to other AI‑powered tools, the pattern is analogous to what coding agents do for software development: they reason about a task, interact with multiple tools (compilers, linters, version control), and produce a result autonomously. If you are evaluating these kinds of systems for your own workflows, our comparison of the best AI coding agents in 2026 provides a framework for assessing reliability, cost, and integration depth—attributes that apply equally to customer‑facing agentic systems.

Trade‑Offs and Implementation Challenges

No enterprise AI story is without trade‑offs. Handling one million minutes of conversation per month implies significant API costs. While OpenAI’s pricing has dropped dramatically, high‑volume voice applications still incur expenses for audio processing and model inference. Developers must weigh the 12 percent lead recovery against the operational cost of running the agents. Cars24 likely optimized by tuning model size (using smaller, faster models for routine questions and reserving the most capable model for complex negotiations) and by caching frequent intents.

Another challenge is latency. Voice interactions demand responses in under half a second to feel natural. OpenAI’s real‑time APIs are designed for this, but integrating them with backend database lookups and third‑party inventory systems can introduce delays. Cars24’s solution probably involves pre‑fetching data for ongoing conversations or using streaming responses that let the agent begin speaking before the full answer is ready. Developers building similar systems should prioritize round‑trip monitoring and consider edge inference if geographic distance becomes a factor.

Finally, there is the question of human oversight. A 12 percent lead recovery implies that the other 88 percent of lost leads remain beyond the agent’s capacity—or that humans handle only the highest‑value opportunities. Determining when to escalate is a design decision that affects both cost and customer satisfaction. Too much human handoff negates the scale advantage; too little risks damaging the brand. Cars24’s data suggests a balanced approach, but the actual thresholds are likely tuned per lead segment.

These trade‑offs are reminiscent of the decisions developers face when choosing between tools like Cursor and Claude for code generation. Each platform optimizes for different workflows: one excels at inline completions, the other at whole‑file reasoning. For a deeper look at how those choices affect developer productivity, our Cursor vs. Claude Code comparison breaks down the strengths and limitations in real‑world projects.

Wider Implications for AI‑Powered Customer Engagement

Cars24’s announcement is part of a broader trend. E‑commerce, insurance, travel, and healthcare companies are all experimenting with voice‑first agents that can handle full transactions. But what sets Cars24 apart is the explicit mention of recovering lost leads—a metric that ties AI performance directly to revenue. For developers, this shifts the conversation from “can the AI understand the user” to “can the AI complete a business process.” That requires deep integration with CRMs, ERPs, and internal APIs, not just a nice chat interface.

It also raises the bar for observability. A one‑minute conversational flow might involve a dozen API calls: transcription, intent classification, data retrieval, response generation, action execution, and logging. Each step must be traceable for debugging and compliance. Teams that invest in event‑driven telemetry (OpenTelemetry, custom dashboards, prompt versioning) will be better positioned to iterate on agent performance and demonstrate ROI to stakeholders.

For open‑source alternatives, the Cars24 example shows that proprietary models can deliver enterprise‑grade reliability at scale, but at the cost of vendor lock‑in. Some teams may prefer to use a fine‑tuned open model for the reasoning layer while keeping voice synthesis separate. The choice depends on latency requirements, data sovereignty, and budget. Regardless, the architectural patterns—function calling, state management, human‑in‑the‑loop—apply universally.

What Developers Should Do Next

If you are building a similar system, start by auditing your existing lead‑recovery processes. Determine which stage (initial contact, follow‑up, paperwork) loses the most prospects. Then prototype a voice‑first agent that handles only that stage, using OpenAI’s chat completions with function calling to simulate the necessary backend actions. Measure not just conversation completion but conversion rate changes. Carry that metric into cost analysis.

Also consider the team skill set. Implementing agentic workflows requires expertise in prompt engineering, async programming, and API design. Cars24 likely has a centralized AI platform team that other business units consume as a service. If your organization lacks that structure, start with a single high‑impact use case and build a reusable skeleton that others can adopt—exactly the pattern that makes the best AI coding agents effective in internal development.

Finally, understand that agentic AI is still maturing. The 12 percent lead recovery figure is impressive, but it also implies that 88 percent of lost leads remain unrecovered. There is room for improvement as models get cheaper, faster, and more reliable. Developers who invest now in solid architecture—separation of concerns, retry logic, human oversight hooks—will be able to upgrade the underlying model without rebuilding the entire system.

Source: OpenAI. Details as reported; verify specifics at the source.