Nikita
09/10/2025, 7:46 AMVapi Support Bot
09/10/2025, 7:47 AMstatusCallback in Twilio to receive call progress events and update your billing logic:
js
app.post("/participant-status", (req, res) => {
const callStatus = req.body.CallStatus;
// Update your billing system with the latest call duration here
res.sendStatus(200);
});
Estimate cost based on duration and your rate card to reserve funds as the call progresses.
[See more in the Vapi call handling docs.](https://docs.vapi.ai/calls/call-handling-with-vapi-and-twilio)
Source:
- [Call Handling with Vapi and Twilio](https://docs.vapi.ai/calls/call-handling-with-vapi-and-twilio)Chiranjeet Mishra
09/11/2025, 9:54 PM