Transcript
# support
c
Hey guys, there is no transcript or summary after the conversation. How can I get it?
v
To get the transcript after a conversation, you can use the GET /call/:id endpoint:
Copy code
bash
curl -X GET 'https://api.vapi.ai/call/{callId}' \
-H 'Authorization: Bearer YOUR_API_KEY'
This will return the full transcript, recording URLs, and message history in the response. Alternatively, ensure your assistant's
artifactPlan
has
transcriptPlan.enabled: true
to enable transcript generation. Sources: - [Source](https://discord.com/channels/1211482211119796234/1341440757189578782) - [Source](https://discord.com/channels/1211482211119796234/1342498699615539222)
c
@Vapi Support Bot how can I enable the transcriptPlan.enabled
v
Based on the information I found, to enable transcripts you need to set
transcriptPlan.enabled: true
within your assistant's
artifactPlan
configuration. The
artifactPlan
structure looks like this:
Copy code
json
"artifactPlan": {
  "recordingEnabled": true,
  "transcriptPlan": {
    "enabled": true
  }
}
Are you currently managing your Vapi assistant through the API or a dashboard interface? This would help me provide more specific instructions on how to update this configuration. Sources: - [Vapi Documentation](https://docs.vapi.ai/api-reference/assistants/list) - [Discord Channel](https://discord.com/channels/1211482211119796234/1342498699615539222)
k
Enable the Call Analysis feature in your assistant’s settings, and access the transcript through the API or UI. You can customize the analysis prompts for summaries, structured data, and success evaluation.
3 Views