VapiLLM
02/20/2025, 1:56 PMVapi
02/21/2025, 12:23 AM// When the call ends, you'll receive a call object that includes the analysis
const call = await vapiClient.calls.get(callId);
if (call.status === 'ended') {
// Access the summary from the analysis object
const summary = call.analysis?.summary;
console.log('Call Summary:', summary);
}
TLDR: Transcript/Summary is accessible through the standard call object interface.