Kai - SG
12/12/2025, 4:49 AMVapi Support Bot
12/12/2025, 4:50 AMoverage charges by inspecting the call.costs[type=vapi].subType field. Recent updates allow you to distinguish between normal and overage Vapi costs, which may explain the additional $0.0518 shown in your webhook but not in the dashboard.
json
// Example: Check for overage in your webhook payload
{
"call": {
"costs": [
{
"type": "vapi",
"subType": "overage", // Look for this field
"amount": 0.0518
}
]
}
}
Review your webhook payload for this field to identify any extra charges. For more details, see the [October 9, 2024 changelog](https://docs.vapi.ai/changelog/2024/10/9).
Source:
- [October 9, 2024 Changelog](https://docs.vapi.ai/changelog/2024/10/9)Kai - SG
12/12/2025, 7:44 AMChiranjeet Mishra
12/15/2025, 11:53 PM