Update
# support
a
How can I see the statistics of my agent in the new dashboard of vapi. It was display on the overview dashboard but it’s no longer available (Number of minutes, number of calls,cost…) @Vapi Support Bot @Vapi
v
Currently, statistics like number of minutes, calls, and costs are best accessed via the Vapi API or analytics features, as the overview dashboard no longer displays them. To get your agent's usage stats, you can use the Analytics API endpoint. For example, to fetch minutes used:
Copy code
bash
curl -X POST "https://api.vapi.ai/analytics/get" \
  -H "Authorization: Bearer <YOUR_TOKEN>" \
  -d '{"columns": ["minutesUsed", "callCount", "costs"]}'
Replace
<YOUR_TOKEN>
with your API token. For more details, see the [AnalyticsOperation schema](https://api.vapi.ai/api#:~:text=AnalyticsOperation).
If you need further help, consider reaching out to [Vapi Support](support@vapi.ai). Sources: - [Changelog February 27, 2025](https://docs.vapi.ai/changelog/2025/2/27) - [API Reference: AnalyticsOperation](https://api.vapi.ai/api#:~:text=AnalyticsOperation) - [Vapi Support](https://docs.vapi.ai/support)
a
There is no way to see it directly from the dashboard ? It will be easier
c
Metrics have been moved to a new page -->
2 Views