saketh_1201
03/11/2025, 4:46 PMVapi Support Bot
03/11/2025, 4:47 PMcall.analysis.summary
- It's customizable via assistant.analysisPlan.summaryPrompt
- It's different from the full transcript (which contains the entire conversation)
You can access it like this:
javascript
const call = await vapiClient.calls.get(callId);
if (call.status === 'ended') {
const summary = call.analysis?.summary;
console.log('Call Summary:', summary);
}
The quality of the summary depends on the accuracy of the transcript and proper configuration of the summary plan.
Sources:
- [Discord Discussion](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1342132668699119778)
- [Call Analysis Documentation](https://docs.vapi.ai/assistants/call-analysis)
- [Discord Discussion on Transcript Accuracy](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1333710576609787986)Vapi Support Bot
03/11/2025, 4:49 PMsaketh_1201
03/11/2025, 4:57 PMKings Big
03/12/2025, 8:26 PM