Akash Malhotra
05/21/2025, 12:07 PMVapi Support Bot
05/21/2025, 12:11 PMstructuredData
field from the call analysis object. For example, if you are using JavaScript/React:
js
// Example: Accessing structured data from call analysis
const structuredData = call?.analysis?.structuredData;
console.log(structuredData); // Should log the extracted data if present
If structuredData
is undefined or empty, ensure your API response includes it and that your frontend state updates after the call ends.
Source:
- [Vapi Call Analysis Documentation](https://docs.vapi.ai/assistants/call-analysis)Akash Malhotra
05/21/2025, 12:21 PMAkash Malhotra
05/21/2025, 12:21 PMVapi Support Bot
05/21/2025, 12:24 PMjs
const structuredData = call?.analysis?.structuredData;
console.log(structuredData); // Should show the extracted data if present
If structuredData
is still blank, double-check that your frontend is updating its state with the latest API response after the call completes.
[See Vapi Call Analysis Docs](https://docs.vapi.ai/assistants/call-analysis)
Source:
- [Vapi Call Analysis Documentation](https://docs.vapi.ai/assistants/call-analysis)Praveen
05/21/2025, 11:16 PMlendell_thenerd
05/22/2025, 4:28 AMAkash Malhotra
05/22/2025, 8:11 AMAkash Malhotra
05/22/2025, 8:11 AMlendell_thenerd
05/22/2025, 11:03 AMlendell_thenerd
05/22/2025, 11:14 AMPraveen
05/22/2025, 2:51 PMlendell_thenerd
05/22/2025, 8:45 PMVapi Support Bot
05/22/2025, 8:46 PMVapi Support Bot
05/22/2025, 8:47 PMjs
const structuredData = call?.analysis?.structuredData;
console.log(structuredData); // Should show the extracted data if present
If structuredData
is still blank, double-check that your frontend is updating its state with the latest API response after the call completes.
[See Vapi Call Analysis Docs](https://docs.vapi.ai/assistants/call-analysis)
Source:
- [Vapi Call Analysis Documentation](https://docs.vapi.ai/assistants/call-analysis)Praveen
05/23/2025, 4:18 AM